diff --git a/.gitignore b/.gitignore
index bbfe8b9..e379f5a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -73,3 +73,6 @@ docker-compose.override.yml
# Regenerated probe artifacts
evidence/_api_surface_probe.json
+
+# Pulumi suite HTML/JSON reports (regenerated by make pulumi-tests)
+pulumi-tests/reports/
diff --git a/Makefile b/Makefile
index 4be24c9..1803d03 100644
--- a/Makefile
+++ b/Makefile
@@ -221,25 +221,31 @@ clean-test-resources: ## Cleanup lab-created resources
$(MAKE) -C $(LAB) clean-test-resources
# --- Git: stage, commit (prompt), push to both remotes ---
-push: ## git add . → ask for commit message → push to origin and antropoff
+# Multi-line commit: paste message, then Ctrl-D (same UX as proxmox-api-simulator).
+# Optional: make push MSG='one-line message'
+push: ## git add . → multi-line commit (Ctrl-D) → push origin + antropoff
@set -e; \
git add .; \
+ echo "=== staged ==="; \
+ git status --short; \
+ echo; \
if git diff --cached --quiet; then \
- echo "Nothing staged to commit."; \
+ echo "Nothing to commit — pushing current branch."; \
else \
if [ -n "$(MSG)" ]; then \
msg="$(MSG)"; \
else \
- printf "Commit message: "; \
- IFS= read -r msg &2; \
+ echo "Empty commit message, aborting." >&2; \
exit 1; \
fi; \
git commit -m "$$msg"; \
fi; \
+ echo "Pushing to remotes: $(GIT_REMOTES)"; \
for remote in $(GIT_REMOTES); do \
- echo "→ pushing HEAD to $$remote"; \
+ echo "→ $$remote ($$(git remote get-url --push "$$remote"))"; \
git push -u "$$remote" HEAD; \
done
diff --git a/README.md b/README.md
index 36e207d..3709f28 100644
--- a/README.md
+++ b/README.md
@@ -92,8 +92,8 @@ make test-pulumi-smoke # Pulumi smoke
make test-pulumi # all series × all contract ops + HTML report
make pulumi-tests # alias for test-pulumi
make test-all # alias for test-pulumi
-make push # git add . → prompt commit → push origin + antropoff
-# make push MSG="your message" # non-interactive commit message
+make push # git add . → multi-line commit (Ctrl-D) → origin + antropoff
+# make push MSG="one line" # skip the interactive editor
```
Docker Hub release (requires `docker login` as the Hub owner; see
diff --git a/README.ru.md b/README.ru.md
index 36301d3..df66513 100644
--- a/README.ru.md
+++ b/README.ru.md
@@ -95,8 +95,8 @@ make test-pulumi-smoke # Pulumi smoke
make test-pulumi # все series × все contract ops + HTML-отчёт
make pulumi-tests # alias для test-pulumi
make test-all # alias для test-pulumi
-make push # git add . → запрос commit → push origin + antropoff
-# make push MSG="сообщение" # сообщение без интерактива
+make push # git add . → многострочный commit (Ctrl-D) → origin + antropoff
+# make push MSG="одна строка" # без интерактивного ввода
```
Публикация в Docker Hub (нужен `docker login` владельца Hub; см.
diff --git a/pulumi-tests/reports/pulumi-contract-coverage.html b/pulumi-tests/reports/pulumi-contract-coverage.html
deleted file mode 100644
index d222cb7..0000000
--- a/pulumi-tests/reports/pulumi-contract-coverage.html
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
- oVirt Pulumi contract coverage
-
-
-
- oVirt Pulumi contract coverage
-
- Generated 2026-07-18T03:44:48Z
- · Engine https://api-gateway
-
-
-
- By HTTP method
-
- | Method | Count |
-
- | DELETE | 1146 |
| GET | 2314 |
| HEAD | 2314 |
| POST | 2230 |
| PUT | 1146 |
-
-
-
- By series
-
- | Series | API | Total | Passed | Failed | Skipped | Duration |
-
- | 3.0 | 3 | 622 | 622 | 0 | 0 | 8035 ms |
| 3.1 | 3 | 664 | 664 | 0 | 0 | 6773 ms |
| 3.2 | 3 | 672 | 672 | 0 | 0 | 8861 ms |
| 3.3 | 3 | 770 | 770 | 0 | 0 | 3246 ms |
| 3.4 | 3 | 800 | 800 | 0 | 0 | 6870 ms |
| 3.5 | 3 | 858 | 858 | 0 | 0 | 7908 ms |
| 3.6 | 3 | 918 | 918 | 0 | 0 | 5844 ms |
| 4.3 | 4 | 948 | 948 | 0 | 0 | 4215 ms |
| 4.4 | 4 | 966 | 966 | 0 | 0 | 7970 ms |
| 4.5 | 4 | 966 | 966 | 0 | 0 | 8528 ms |
| master | 4 | 966 | 966 | 0 | 0 | 10957 ms |
-
-
-
- Failures (up to 500)
-
- | Series | Operation | Method | Path | HTTP | Detail |
-
- | No failures. |
-
-
-
- Passed sample (first 100)
-
- | Series | Operation | Method | HTTP | ms |
-
- | 3.0 | api.get | GET | 200 | 12.45 |
| 3.0 | bookmarks.list | GET | 200 | 6.41 |
| 3.0 | bookmarks.add | POST | 201 | 24.47 |
| 3.0 | bookmarks.get | GET | 200 | 6.88 |
| 3.0 | bookmarks.update | PUT | 200 | 6.52 |
| 3.0 | bookmarks.remove | DELETE | 200 | 5.98 |
| 3.0 | clusters.list | GET | 200 | 4.74 |
| 3.0 | clusters.add | POST | 201 | 7.89 |
| 3.0 | clusters.get | GET | 200 | 4.64 |
| 3.0 | clusters.update | PUT | 200 | 5.47 |
| 3.0 | clusters.remove | DELETE | 200 | 4.79 |
| 3.0 | clusters.resetemulatedmachine | POST | 200 | 14.12 |
| 3.0 | clusters.syncallnetworks | POST | 200 | 10.67 |
| 3.0 | clusters.refreshglusterhealstatus | POST | 200 | 6.88 |
| 3.0 | datacenters.list | GET | 200 | 3.76 |
| 3.0 | datacenters.add | POST | 201 | 4.97 |
| 3.0 | datacenters.get | GET | 200 | 6.75 |
| 3.0 | datacenters.update | PUT | 200 | 6.86 |
| 3.0 | datacenters.remove | DELETE | 200 | 6.78 |
| 3.0 | datacenters.cleanfinishedtasks | POST | 200 | 10.69 |
| 3.0 | disks.list | GET | 200 | 4.6 |
| 3.0 | disks.add | POST | 201 | 13.34 |
| 3.0 | disks.get | GET | 200 | 4.72 |
| 3.0 | disks.update | PUT | 200 | 12.02 |
| 3.0 | disks.remove | DELETE | 200 | 10.3 |
| 3.0 | disks.copy | POST | 200 | 9.06 |
| 3.0 | disks.move | POST | 200 | 13.13 |
| 3.0 | disks.sparsify | POST | 200 | 8.98 |
| 3.0 | domains.list | GET | 200 | 5.59 |
| 3.0 | domains.add | POST | 404 | 7.48 |
| 3.0 | domains.get | GET | 200 | 8.95 |
| 3.0 | domains.update | PUT | 404 | 4.65 |
| 3.0 | domains.remove | DELETE | 404 | 4.24 |
| 3.0 | events.list | GET | 200 | 4.74 |
| 3.0 | events.add | POST | 404 | 7.43 |
| 3.0 | events.get | GET | 200 | 5.28 |
| 3.0 | events.update | PUT | 404 | 4.28 |
| 3.0 | events.remove | DELETE | 404 | 4.45 |
| 3.0 | groups.list | GET | 200 | 5.45 |
| 3.0 | groups.add | POST | 201 | 10.29 |
| 3.0 | groups.get | GET | 200 | 6.58 |
| 3.0 | groups.update | PUT | 200 | 7.69 |
| 3.0 | groups.remove | DELETE | 200 | 6.95 |
| 3.0 | hosts.list | GET | 200 | 6.53 |
| 3.0 | hosts.add | POST | 201 | 8.37 |
| 3.0 | hosts.get | GET | 200 | 5.46 |
| 3.0 | hosts.update | PUT | 200 | 6.37 |
| 3.0 | hosts.remove | DELETE | 200 | 5.59 |
| 3.0 | hosts.activate | POST | 200 | 6.68 |
| 3.0 | hosts.deactivate | POST | 200 | 6.25 |
| 3.0 | hosts.approve | POST | 200 | 6.34 |
| 3.0 | hosts.install | POST | 200 | 7.55 |
| 3.0 | hosts.fence | POST | 200 | 6.5 |
| 3.0 | hosts.iscsidiscover | POST | 200 | 8.74 |
| 3.0 | hosts.iscsilogin | POST | 200 | 9.08 |
| 3.0 | hosts.commitnetconfig | POST | 200 | 11.43 |
| 3.0 | hosts.refresh | POST | 200 | 6.12 |
| 3.0 | hosts.upgradeCheck | POST | 200 | 6.29 |
| 3.0 | networks.list | GET | 200 | 3.53 |
| 3.0 | networks.add | POST | 201 | 4.77 |
| 3.0 | networks.get | GET | 200 | 3.32 |
| 3.0 | networks.update | PUT | 200 | 3.36 |
| 3.0 | networks.remove | DELETE | 200 | 3.65 |
| 3.0 | permissions.list | GET | 200 | 3.8 |
| 3.0 | permissions.add | POST | 404 | 3.43 |
| 3.0 | permissions.get | GET | 200 | 3.12 |
| 3.0 | permissions.update | PUT | 404 | 2.44 |
| 3.0 | permissions.remove | DELETE | 404 | 2.11 |
| 3.0 | roles.list | GET | 200 | 2.95 |
| 3.0 | roles.add | POST | 201 | 5.14 |
| 3.0 | roles.get | GET | 200 | 5.29 |
| 3.0 | roles.update | PUT | 200 | 4.36 |
| 3.0 | roles.remove | DELETE | 200 | 4.57 |
| 3.0 | storageconnections.list | GET | 200 | 3.89 |
| 3.0 | storageconnections.add | POST | 201 | 6.8 |
| 3.0 | storageconnections.get | GET | 200 | 3.98 |
| 3.0 | storageconnections.update | PUT | 404 | 3.68 |
| 3.0 | storageconnections.remove | DELETE | 200 | 4.31 |
| 3.0 | storagedomains.list | GET | 200 | 4.19 |
| 3.0 | storagedomains.add | POST | 201 | 7.07 |
| 3.0 | storagedomains.get | GET | 200 | 5.58 |
| 3.0 | storagedomains.update | PUT | 200 | 7.31 |
| 3.0 | storagedomains.remove | DELETE | 200 | 6.37 |
| 3.0 | storagedomains.refreshluns | POST | 200 | 7.2 |
| 3.0 | storagedomains.updateovfstore | POST | 200 | 6.33 |
| 3.0 | tags.list | GET | 200 | 6.2 |
| 3.0 | tags.add | POST | 201 | 7.6 |
| 3.0 | tags.get | GET | 200 | 4.89 |
| 3.0 | tags.update | PUT | 200 | 5.46 |
| 3.0 | tags.remove | DELETE | 200 | 5.65 |
| 3.0 | templates.list | GET | 200 | 5.81 |
| 3.0 | templates.add | POST | 201 | 6.39 |
| 3.0 | templates.get | GET | 200 | 4.82 |
| 3.0 | templates.update | PUT | 404 | 2.55 |
| 3.0 | templates.remove | DELETE | 200 | 3.26 |
| 3.0 | users.list | GET | 200 | 3.26 |
| 3.0 | users.add | POST | 404 | 2.61 |
| 3.0 | users.get | GET | 200 | 2.99 |
| 3.0 | users.update | PUT | 404 | 4.96 |
| 3.0 | users.remove | DELETE | 404 | 3.31 |
-
-
-
-
diff --git a/pulumi-tests/reports/pulumi-contract-coverage.json b/pulumi-tests/reports/pulumi-contract-coverage.json
deleted file mode 100644
index f37c910..0000000
--- a/pulumi-tests/reports/pulumi-contract-coverage.json
+++ /dev/null
@@ -1,119144 +0,0 @@
-{
- "generated_at": "2026-07-18T03:44:48Z",
- "engine_url": "https://api-gateway",
- "totals": {
- "total": 9150,
- "passed": 9150,
- "failed": 0,
- "skipped": 0
- },
- "methods": {
- "DELETE": 1146,
- "GET": 2314,
- "HEAD": 2314,
- "POST": 2230,
- "PUT": 1146
- },
- "coverage": {
- "declared": 9150,
- "probed": 9150,
- "critical": 0,
- "line": "9150/9150",
- "series": [
- {
- "series": "3.0",
- "declared": 622,
- "probed": 622,
- "critical": 0
- },
- {
- "series": "3.1",
- "declared": 664,
- "probed": 664,
- "critical": 0
- },
- {
- "series": "3.2",
- "declared": 672,
- "probed": 672,
- "critical": 0
- },
- {
- "series": "3.3",
- "declared": 770,
- "probed": 770,
- "critical": 0
- },
- {
- "series": "3.4",
- "declared": 800,
- "probed": 800,
- "critical": 0
- },
- {
- "series": "3.5",
- "declared": 858,
- "probed": 858,
- "critical": 0
- },
- {
- "series": "3.6",
- "declared": 918,
- "probed": 918,
- "critical": 0
- },
- {
- "series": "4.3",
- "declared": 948,
- "probed": 948,
- "critical": 0
- },
- {
- "series": "4.4",
- "declared": 966,
- "probed": 966,
- "critical": 0
- },
- {
- "series": "4.5",
- "declared": 966,
- "probed": 966,
- "critical": 0
- },
- {
- "series": "master",
- "declared": 966,
- "probed": 966,
- "critical": 0
- }
- ]
- },
- "series": [
- {
- "series": "3.0",
- "api_version": "3",
- "total": 622,
- "passed": 622,
- "failed": 0,
- "skipped": 0,
- "duration_ms": 8034.59
- },
- {
- "series": "3.1",
- "api_version": "3",
- "total": 664,
- "passed": 664,
- "failed": 0,
- "skipped": 0,
- "duration_ms": 6773.11
- },
- {
- "series": "3.2",
- "api_version": "3",
- "total": 672,
- "passed": 672,
- "failed": 0,
- "skipped": 0,
- "duration_ms": 8861.32
- },
- {
- "series": "3.3",
- "api_version": "3",
- "total": 770,
- "passed": 770,
- "failed": 0,
- "skipped": 0,
- "duration_ms": 3246.5
- },
- {
- "series": "3.4",
- "api_version": "3",
- "total": 800,
- "passed": 800,
- "failed": 0,
- "skipped": 0,
- "duration_ms": 6869.9
- },
- {
- "series": "3.5",
- "api_version": "3",
- "total": 858,
- "passed": 858,
- "failed": 0,
- "skipped": 0,
- "duration_ms": 7907.98
- },
- {
- "series": "3.6",
- "api_version": "3",
- "total": 918,
- "passed": 918,
- "failed": 0,
- "skipped": 0,
- "duration_ms": 5843.7
- },
- {
- "series": "4.3",
- "api_version": "4",
- "total": 948,
- "passed": 948,
- "failed": 0,
- "skipped": 0,
- "duration_ms": 4215.12
- },
- {
- "series": "4.4",
- "api_version": "4",
- "total": 966,
- "passed": 966,
- "failed": 0,
- "skipped": 0,
- "duration_ms": 7970.02
- },
- {
- "series": "4.5",
- "api_version": "4",
- "total": 966,
- "passed": 966,
- "failed": 0,
- "skipped": 0,
- "duration_ms": 8528.25
- },
- {
- "series": "master",
- "api_version": "4",
- "total": 966,
- "passed": 966,
- "failed": 0,
- "skipped": 0,
- "duration_ms": 10956.57
- }
- ],
- "results": [
- {
- "series": "3.0",
- "operation_id": "api.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.45,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.41,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 24.47,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.88,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/968673bc-18e3-4b3a-8fd1-be802d416a07",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.52,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/65bc92a7-021f-452b-bf35-db84bb8e9241",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.98,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.74,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.89,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.64,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/1a64aa99-a5c1-42af-8cbe-bd8077514095",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.47,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/aa43ef20-be0d-4457-9f2a-1eba57abaa57",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.79,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.12,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.67,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.88,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.97,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/2257b27c-2d18-45d4-9a9f-9e1d93fd628a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.86,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/56f43e70-d017-4e02-9a2b-dcad1575f794",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.78,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.69,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.6,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 13.34,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.72,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/bf3c61b6-9030-4d31-b210-241a361747b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.02,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/8e1f2903-0cbe-44bf-b721-05b16dcdce2e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.3,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.06,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.13,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.98,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.59,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.48,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.95,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/8ba6ebbc-9670-48f8-b3d8-d533d6742c52",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.74,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.43,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/48",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/48",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/cafb93b5-20f8-471c-95ef-09887f518e81",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.45,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.45,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.29,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.58,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/d2e932a6-797d-4d8c-93ed-c1610aad8235",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.69,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/4e9c4db2-a3e0-44b9-80d3-d0f6d646a053",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.95,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/5f835f47-bfc6-4410-95d0-5da69e5c3bc8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/014d7791-22a7-45ae-9814-0f711259d56b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.59,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.34,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.55,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.5,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.74,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.08,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.43,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.12,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.29,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.77,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/5bb90b0e-2366-4151-8089-ae986471fae0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/8180fba5-ec3f-432a-a522-fbc14cd44d92",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/3d05f72f-ed5d-40cb-b8a8-cde6df350d11",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.95,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.14,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.29,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/c42bcbe8-af91-4470-b453-e2f9a71c24cd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/b6e4e4b9-6cbe-4e1e-84c4-f092964bee41",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.57,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.89,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.8,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/9f3bce26-1442-447b-941e-bc70e0c58a4a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.98,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/d73fde48-0d28-4201-9d93-ba53140a3177",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.68,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/c6114e6b-4069-46d9-8936-e66d9423d9cb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.31,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.07,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.58,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/f0dd4e68-642c-4869-b175-7d088602c70a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.31,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/93d6e3a6-f7f5-438a-93ee-c26428748e15",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.33,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.2,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.6,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.89,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/212394f9-c556-46f0-b8a1-c6d344fe7568",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/a5fcd414-2547-4f33-aef9-5db3e963ad7e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.81,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/79fd397e-ceff-47a1-a8c4-bdbc57f4be43",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/dc3145e2-be3a-4fa7-89ab-0e541293bf17",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/b38f70d5-0c5f-44c6-ba82-eea93a193ee8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.31,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.29,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.74,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.68,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/527c1eac-db6b-4109-85a8-b857747ab302",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.23,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/418c37f3-3f58-473e-8355-ead1447b0e9e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.89,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.63,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.16,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/c5107257-73a9-49cf-addf-92b5fc953a9b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/5c264c9a-101e-4cfc-b311-bc5c3e66d186",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.18,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.59,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.74,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 16.05,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.54,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.58,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.8,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.41,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.35,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 25.9,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.5,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.05,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.79,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/d6661e14-a87f-418f-9bc9-25808d3dcdd2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8773470a-57f9-4e03-b35a-2b10ae7c03f0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.84,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.8,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.4,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/88f4bcb8-4624-41f3-9d72-9c122606206f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/b9e80f3a-e122-4750-acbd-a18af485f1f8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.83,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.56,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.86,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.08,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/a09fc99d-368d-4e3b-bb5b-37845fa4ee1c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/f69f045a-f6d2-4a46-8ba8-60773dbe3681",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/b5ee7d34-7994-4252-a1f0-534b59edc332",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.24,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/805a0a8f-4ea0-411a-98ef-08d0b2895b9e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/7e36d796-409e-464a-92d9-97d668ca62be",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/e7a2de0b-c5e4-4b67-9b8b-a040f22f9484/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/b3409722-01dd-43f7-88ed-df7c08d28810",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/1d206cfa-729a-4cec-a8d1-ffaad25ca125",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 81.09,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.15,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.5,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.31,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 26.0,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/73adba11-1e59-4263-9f9c-1706ed28ae74",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.91,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.71,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.6,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.45,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/e0090fdb-167d-47b4-939a-8d64077a558e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.52,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/9425169e-bba7-4c08-8583-fc2ba0374344",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.59,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.77,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.38,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 25.99,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.33,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.36,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.75,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/747c45e2-7eb4-47f3-a0f6-67214bfdd8d3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.38,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/945c95b2-800a-4055-92b5-c631bfd1ad61",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.8,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.17,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.35,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.2,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/5da53a51-c3e0-431b-a98a-c3228d1acd7b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.64,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/81b5f8d8-6d53-40c5-9ca2-3eea3190e355",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.7,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/a8176da6-3abf-4a27-b2cc-c26e51e7e0a3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.02,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.75,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 16.49,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.0,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/3ca9418c-797e-4a97-83a9-0b5e33e9cbe6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.13,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/47376533-10bb-4b8f-b784-9deef160b335",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.84,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.5,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.78,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.5,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.98,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/6dfd7017-7ff9-419c-8cee-efb64bddf8eb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.77,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.08,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 9.19,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.99,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/95959edf-5ce7-4a4f-a9d6-1451c77fc700",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.03,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/6d7d2cce-25ae-41e4-8070-874a0c09d863",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 39.38,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 53.44,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 198.85,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 26.03,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 33.09,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 55.34,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/9116a215-1244-44d6-aa91-c1209a9debb3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.3,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/648f3086-d6bf-47f3-95d9-fb862ca237c8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 41.08,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 37.14,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 18.0,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 35.51,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/cac46232-51a3-41f2-9b1a-d7023d972692",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.48,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/1ca51f2b-e70a-4727-8900-aab0a1b5fda4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.72,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.18,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.1,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.61,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/3b61e58c-e9ef-4bb5-ad02-006ea78ee41b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.54,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.21,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.54,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.84,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 43.5,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/27f2bfee-10ce-4be6-b2bb-9bd49fe76885",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.05,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.89,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.05,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 16.1,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 185.27,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/da5561d1-d5fe-4fe7-8b6f-3c8376aaeb95",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 28.32,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 32.07,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 68.66,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.93,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/bc604a0c-c7fe-4773-abfe-d60310cd26e1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 20.39,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/6ce533e5-27da-4fc8-a9d9-04571d88e2be",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.06,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.35,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.88,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.38,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.85,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/1e169c7f-0aba-4733-832b-4aa5094afbad",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.76,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "api.v3.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 47.98,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.38,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 24.93,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.41,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/95da2efa-fff0-486c-be2c-de7e144ee985",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.03,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/523f0063-9763-4006-94e7-4dd185859cff",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.58,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.02,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.07,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 69.64,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/41f86869-f61e-4ca1-9ddd-3e2982b19a5d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.49,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/cc9efd1c-2b94-4ce5-8d50-a817b731dd25",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.56,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.32,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.87,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 24.89,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.33,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.48,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.01,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/d669c4e4-0e29-4c3e-8f5c-0d39576d1e11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/7878f99b-8d57-4546-90d1-1b0311d7caae",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.34,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.04,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.61,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.46,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/0c5a6794-b38a-4179-a499-7c78bfa83605",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.02,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/d975915a-6e62-41f4-b3f6-840d540a2a85",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.84,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.67,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.14,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.31,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.01,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 10.38,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.14,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/8bae4815-7934-4c0b-84d5-2cb30b6dca8f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.63,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.81,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.74,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/48",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.45,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/48",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/8889b93e-de17-4192-958b-6238696049ef",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.56,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.4,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.96,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.55,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/6b6551a3-12b3-4e5d-854f-5d597dcaf641",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.49,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/11fb939f-1da8-41ba-a958-a39c2278a828",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.15,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.08,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.21,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/aef4f223-d15f-4f38-96dc-c37aecab5332",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.96,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/cbbbe42b-da11-40f7-a4b4-d53ec4f08ddd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.82,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.15,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.13,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.54,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.04,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.97,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.35,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.14,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.33,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.01,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 39.5,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.22,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.21,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/5498f602-c9f2-4201-a5f7-56bb65ad3a16",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.58,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/05e7de30-20b3-4937-bc66-619133609239",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.27,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.54,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.12,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.36,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/34792b0e-c55c-4e10-9a18-ecb067246cab",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.57,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.21,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.67,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.33,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/5999fb53-2aa0-4773-a419-783a51bdc14b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.93,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/2028bce0-c1b3-4a1a-bb40-b9e5376ec556",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.59,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.8,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.8,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/9f3bce26-1442-447b-941e-bc70e0c58a4a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.87,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/ba072699-0172-4d21-8d25-68a2f64784f5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.86,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/c479fc18-e78f-468e-aa1c-54b276da5e62",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.64,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.31,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.79,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.98,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/9eade37e-3a37-4b7e-8f4b-2a7d3c06eb02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.4,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/08ca3316-1fcc-4701-b68e-5547cff8965e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.27,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.69,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.14,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.44,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.51,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.26,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/4527f621-2840-4bea-b232-aeb1f58da8c2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.11,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/18aabc89-33d5-40b4-9629-ecc31a8aec0a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.63,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.26,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.04,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.04,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/8385c8bb-5868-40ec-87e0-29b9fb4dc077",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.99,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/94db987b-c6bb-4b41-9320-14cfd74cb941",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.0,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.57,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.08,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.59,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.33,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/ff3dd95d-d501-475e-9d1d-50733a3fe497",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.91,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.99,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.89,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.88,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/f29e6eb5-0a4b-4e6c-8c1c-48b3b2e5ce2b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.5,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/124d26fa-8a7d-4433-ad83-faeb84588650",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.25,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.21,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.96,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/4843c63b-ee01-4a9b-a303-6abb5750f659",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.1,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/7e6cea70-d6f9-4585-a5a4-ff0988a9127c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.6,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.45,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.53,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.93,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.88,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.72,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.78,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.94,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 409,
- "expected_hint": 201,
- "duration_ms": 7.56,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.76,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.15,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.52,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.94,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.22,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.43,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.4,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.22,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.36,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.03,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/d31a6c27-f23a-4364-88ff-2aa21a763e0c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.22,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/d7dfa212-59fa-4869-9e89-c62c663c7b2c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.15,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.72,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.88,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/54980513-db4a-4c03-970e-88002e7c4384",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.71,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/4a2e958f-a81e-4565-bfd3-e652bad3500c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.36,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.62,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.59,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.67,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 18.13,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 29.51,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/69afebba-2faa-491c-a469-3c883d9e3608",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.97,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/ab0799f8-43e9-4bcc-b6b1-9c3091890878",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 30.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 29.52,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/c935a965-edfd-4506-a5a4-cae14baec0c8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 20.49,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/de360561-9c13-4f38-90fb-e69d20fdf6b0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.3,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/ba852b70-1c5e-4026-9898-e37fafbf1a8c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 66.07,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/2077ff5f-a129-4ceb-b525-36192fd4c26f/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 21.89,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.43,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.32,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/1d01b74c-7d7d-4ad6-a442-4d141281b68c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.81,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/641d7c35-bd93-4f06-8c20-59c80bac22e2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.87,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.78,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.03,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.84,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/3a881528-fa82-4188-81f0-955fc258ea9b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.31,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.64,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/47994702-30c4-4fb9-94d4-7f23c2e035c7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.86,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/4bd31502-7f62-4a6c-8070-a3d878b654bc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.93,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.57,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.28,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.46,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.67,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.55,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.15,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/ea28a3a6-7563-4b9c-86e4-f21f5835ae29",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/2383ef37-f8c4-4eb2-ab7f-f9d40bc32a66",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.56,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.98,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.78,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.34,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.22,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/93904f6c-f76f-45cd-9779-3e3461fb7db2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.16,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.95,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.36,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.97,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/c112fa4f-1d5e-46a8-bca4-536f40550980",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.29,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/ba5ec2f7-0995-4e36-aa3f-94d7546c961f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.41,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.07,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.83,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.9,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/d0a1ebdf-a347-4932-886d-247d097a04e2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.15,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/6f33c0da-2e21-47ae-81de-4191cdb15ec5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.13,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.69,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 13.32,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.15,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/e39b032c-dbb2-45b0-a44b-6c1d23bb4026",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.6,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.75,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 7.63,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.22,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/707e5ee0-97ac-4987-9ebf-32468868e333",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.28,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/f7c1492a-30c1-4a58-b3a6-c5c285dfb9bb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.48,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.43,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.95,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.87,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.78,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.47,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/759b992d-8008-4966-ad4f-7be2aca50def",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.19,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/c4b6b491-cbc4-4b45-b533-1b8c25e04179",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.95,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.99,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.58,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.94,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/548666ec-25f0-4219-beb7-883be530f17e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/f8a729d9-f7ca-4097-92ad-b4f9f5d0dbda",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.82,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.02,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.66,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.33,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/07049e53-100d-45d6-8055-84c9b34a3ddc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.63,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.96,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.04,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/9aaa727f-ee2d-45c6-8c07-035c3ccef777",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.99,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.49,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/5f56280e-2d33-46b1-85cf-d2abf76c5bf2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.73,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.71,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.12,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/2accbeba-d962-4b40-8bd4-539ddd155e02",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.02,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/c9d7b080-f187-47d1-96f0-718f7c8144eb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.18,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.95,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.98,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.39,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/72fd5038-cb87-4ea8-9743-789cf723717b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.94,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.api.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.8,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.96,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.09,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.5,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.09,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.15,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.11,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.62,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/48",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.81,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.98,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.75,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.1,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.23,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.61,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.16,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/9f3bce26-1442-447b-941e-bc70e0c58a4a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.31,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.21,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.04,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.38,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.23,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.95,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.64,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.23,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.06,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.49,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.49,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/6ce5c49e-e478-45a9-8335-2c452ae00f38",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.7,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.8,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.66,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.41,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.04,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.48,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.55,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.18,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.46,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.02,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.88,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.98,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.87,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.79,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.27,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.13,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.54,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.82,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.56,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.91,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.5,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.88,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.28,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.73,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.38,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.37,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.65,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.49,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.api.v3.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.95,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.88,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.04,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.62,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.97,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.02,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.67,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.28,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.01,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.04,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.6,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/48",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.08,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.43,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.24,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.31,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.92,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.95,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.64,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.7,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.31,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/9f3bce26-1442-447b-941e-bc70e0c58a4a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.97,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.64,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.2,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.12,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.08,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.17,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.76,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.96,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.03,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.85,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.39,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.22,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.88,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/9be39023-36c7-4fa3-8d02-71be691122bc",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.67,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 40.44,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 33.11,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 48.42,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 72.75,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 52.73,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 21.69,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.2,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 13.57,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 44.6,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 27.43,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.77,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.51,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.42,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.98,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.31,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 35.76,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.06,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.09,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.04,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.66,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.87,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.95,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.89,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.47,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.22,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.04,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.11,
- "detail": ""
- },
- {
- "series": "3.0",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "api.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.83,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.11,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.65,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/5504f443-20f7-4f90-a4a2-9fec72beb376",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.97,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/f047bb82-a948-46d6-88ae-f21da2c583db",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.08,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.2,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.45,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/278df31d-f892-408a-b340-ad3383f4b8fa",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.33,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/8b1dfe94-90fa-416e-8347-0be510950ef4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.07,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.77,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.11,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.25,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.13,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.86,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/5516d260-69a3-4346-96e6-4ba1f96ddc5b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.0,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/9eb2f392-f2dd-4f39-a24d-b9ebf85bcc61",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.22,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 42.18,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.95,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 43.1,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.55,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/6701d3fa-5b8a-4a5b-8f95-303691f2b566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.84,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/28571ebd-08ba-4e21-bc60-aa1b4a1cc14c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.9,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.05,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.15,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 20.32,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.99,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.04,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/c1b7f912-08ca-49ab-aefd-c77e1f608574",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.41,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/49",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.95,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/49",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/3fb4a326-c669-4b59-baa1-93a3b64fa554",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.31,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.77,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.56,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/217a5b7b-5cca-45b9-acfb-57d433fbb441",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/fce66f20-4cd3-466a-9406-67694fdbe08c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.88,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.43,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/69566420-e76c-4174-ad36-4bc813941f6c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.15,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/560b687e-66f4-4ee0-9b34-3edd8c9ad1d6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.79,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.56,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.37,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.34,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.87,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.3,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.93,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.41,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.69,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.18,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.95,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.91,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/d2bb80eb-cb95-47f7-8c19-1632a84d4f2c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.83,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.85,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.16,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/3a3696fe-a744-4b22-827f-90907591ff99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.88,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/5ca86d2a-2083-4ba7-a809-3f1418f2cebf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.12,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.89,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.78,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/de663e4c-25ad-4542-bd70-51de8bca8d78",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.33,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.14,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.91,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/5a5d0666-9d56-4e8a-b122-be31fccf7a8f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.36,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/3646ee7b-07ea-496a-9501-5167248daf48",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.62,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/eec76818-dd29-446e-a77d-52596322b345",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.04,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/4ca40c15-648d-4823-ab8a-561b5c9c64d8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.89,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/593f4445-b307-4f74-8caf-f6db6afdc310",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.13,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.81,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 23.47,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/3c266fee-baa4-45d4-b294-40fd2be17a7a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.85,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/b43988e9-20d2-4897-9356-479b3887eef3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.46,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.2,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.63,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.63,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.59,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/4ccafa0f-c1ba-4545-bf56-65820cb81fc3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.28,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/526e00a8-2175-4465-85a6-02d299f1e3f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.42,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.11,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.72,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/8245ef30-86f1-472c-b11e-81a17024d0dd",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/8ef85dca-4e35-4d0a-a26a-9d7f10133365",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.78,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.94,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.45,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/ecb038ce-0284-4a02-bf1c-b6877387b060",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.55,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.5,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/b8f84619-e585-4143-8f14-88dec88b9b06",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.88,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/52d9b002-31c8-4789-a791-e07870ad749a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.02,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.7,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.64,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/44638fcb-5e24-4a19-9c91-60365bf2e7df",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.64,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/788b7668-e053-445b-b0e8-1d1967e75438",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.95,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.03,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.61,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.93,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.09,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.88,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.2,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.86,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.65,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.46,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.45,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.83,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.74,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.67,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8d898c3b-4b15-438c-92f0-946569bea4c4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.33,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/f4405227-b11d-43fe-ab80-913c254ca3ba",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.67,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.23,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/1eae64aa-5c2c-4d2b-ba77-f9e8c3c5e8ee",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.85,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/14765bfd-47a8-4cfe-97a0-af35af4f4496",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.2,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.69,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.96,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.87,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.31,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.27,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/751be5dc-f509-4314-9616-2e56da8e92a0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/2fa604cd-2fc2-40e6-b52d-45eb0f3d6202",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.04,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.44,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.99,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/e751b878-3c63-4440-aa53-3a72835a0505",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.31,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/98b83eca-d5cb-4224-b0e0-aac45975cc90",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.78,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/1a4f182e-7521-4a25-9a0b-d1ac0a85c458",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.2,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/dea65c02-15d5-47e1-a262-217838c46d92/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.53,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.9,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.22,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/457076b3-c5d9-4aac-9ce7-7e42a8ef9274",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.45,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/1780d17f-ce1d-47da-a679-1b2ee01258cc",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.4,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.34,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.53,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.83,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.88,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/6984aba1-6ea4-442c-ad45-c98acf7171c4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.14,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.83,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.29,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/e0430522-f433-4d9e-991e-e2f2fd4842b9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.7,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/9f41c79d-35f4-4382-b4d8-f3326d5f21aa",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.25,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.15,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.84,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.55,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.55,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.09,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/995e71d4-bf0b-4b1e-9213-0a926f6e9366",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.26,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/88bc2cfd-e052-4963-af01-37107843d2eb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.22,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.8,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.63,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.26,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/4304965d-8266-4c7a-87bb-f1b24b4f0f89",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.95,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.25,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/06acc22a-bbaa-44b7-9f28-18b8f4697e9f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/1ff4837b-adff-4143-97ee-8e08b419f478",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.2,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.48,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/8277dd13-99ef-45e3-96c8-9880f59a7b40",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/997bf694-ebfa-4b0d-9c5e-2491acdb2312",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.15,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.56,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.46,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.19,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/d064e551-6998-44fd-ad48-b5e07c92eaf8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 5.64,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.47,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/e45b3f9b-51e0-438b-9527-38395953c9ba",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/1d3f91e0-6775-4628-aec6-7c4d95a18a48",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.04,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.25,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.43,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.95,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/b4e0b53b-94a3-40fa-ad19-b7f32d70877e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.74,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/234c3d99-c9e8-4998-8790-944f60aa6941",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.96,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.53,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.99,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.77,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/333c99ad-fc11-4907-87fb-7f7decf453ee",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/b5f156da-30fc-43bd-aacb-dba3b5cda411",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.38,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.23,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/b891de9a-1846-4e0d-8bb5-859fb63051c1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.04,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/e7a2cf73-c942-47a2-8bf3-4024c0e0fca7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.48,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.21,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.65,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/56c61eb9-c8b2-42d1-98d1-594c2457239a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.77,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.96,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.34,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.49,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/61438384-bdf8-4ca2-8eba-40cee7eae14a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.26,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.6,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/4544b3e4-5c44-4acb-872f-7c7509700575",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.35,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.7,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/1f9204dc-2feb-4186-b509-9271dae3ad26",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/daf0c196-3655-4009-b91e-f2c4b3b8091e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.91,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.15,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.19,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.32,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/b1db3d60-b55d-4a84-bc6b-15a02631c389",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.63,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.08,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.35,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps/3e249283-1854-4340-9065-f15d4917f2ac",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps/3715bf8e-0af2-4704-8fe9-cfb0cf7b97a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps/fde14424-2992-4c6a-a928-705538ce98a5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "api.v3.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.87,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.49,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.76,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/f1403163-479a-4d4c-8ba1-2d212eb67109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/55de7b0f-4d61-481f-b617-d39e05cfa6b5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.93,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.73,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/a935c411-9475-42b1-868d-a2e28fff130c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/340ae38c-b4c8-459b-8224-f01989eb7be5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.04,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.8,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.14,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.02,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.13,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.18,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/5a0232a2-2667-4610-a6b2-79550b91f3d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.63,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/e1888216-9eca-48fd-9c31-12f14188234c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.03,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.77,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.29,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/7a13a9b3-f0d7-4c19-842e-35531ecdde94",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.35,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/44f659da-efcf-4f70-a2e2-cd5a7233b70e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.96,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.56,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.01,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.0,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.29,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.72,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.32,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/4177e006-daf0-4e7b-9614-f790e15c5da5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.38,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.1,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/49",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.43,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/49",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.34,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/0ad5364c-d72f-4310-b087-ba2c21800bb7",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.73,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.79,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 13.23,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.73,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/d65eea54-b451-46c7-a040-0d6710ee6a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.71,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/cd4fe892-eb2a-46e0-8e0f-b83fd6bed419",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.8,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.58,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/93c0b822-29ea-49c2-89a4-601cfe3c8465",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/add418f7-8bf4-49c6-94af-5b05317b21b7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.33,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.7,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.79,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.99,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.52,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.57,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.27,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.82,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.04,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 24.43,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.43,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.14,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.11,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.61,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.85,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/bbc91f77-cadd-4154-8e9f-ea1e2969c254",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.49,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.15,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.72,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/8c729237-9cf4-4ef4-9cdf-833232cdd546",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.5,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/19620d42-8bd1-4e9f-ba66-bbc9fa2c5853",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.86,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.79,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.45,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/35b96fd5-4932-40f9-951b-a4259e1bf7b1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.11,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/58b37c70-a08d-4d09-a0aa-9c30ff445299",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.18,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/a69b15d1-56be-4d46-b6b3-0813f5f13e88",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.71,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/eec76818-dd29-446e-a77d-52596322b345",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/ce91b6db-0d58-482b-89f4-0a272705834c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/43bb41d9-c9b1-4834-b2bd-1109d5f089ba",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.15,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/a18f12cc-09c5-4aaf-aad7-510f05b87693",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.34,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/5b15e6ae-1e2b-4399-84aa-865a1e40a17f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.32,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.44,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.36,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/4f318c67-20f0-4f66-9720-c11dd8e6e56d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.57,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/6880ff8e-e450-4721-b62c-ce13db8de8de",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 45.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 37.55,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 45.27,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.78,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/9847658d-c7fc-4685-bda2-5688f5613467",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/9fe7bbeb-a54e-4910-b140-fde9342c6db4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.74,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.81,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.5,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.95,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/1613f75c-91bb-4aa2-b20e-11fc5d2b4efe",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/bee8f8fa-2857-4b32-bc1a-eca99ab477d1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/f3512760-4c5c-4d86-88ca-2aaa17ab201d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.25,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.17,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.78,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/5e0cc79b-fb5c-48dd-b828-60289a4227f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/76353438-abbc-4def-a96b-b7d8685364ea",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.87,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.29,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.09,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.56,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.58,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.93,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.91,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 409,
- "expected_hint": 201,
- "duration_ms": 4.38,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.93,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.65,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.87,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.71,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.96,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.77,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 27.85,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.42,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.88,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.95,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/78ac8756-e11e-4846-8c7c-2b92c81a21eb",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.99,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/381c9f22-d797-40cb-99f9-a7b6edc1e89b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.96,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.59,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.47,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.57,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/9114b051-57ef-4984-9265-a625d5b85c40",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/9c5f1b8f-b985-4f78-a857-c64a6616d2bd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.07,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/84c5fdc3-e360-4e70-a9c2-4d03dca3bc78",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.48,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/94e805e6-30d4-4c7f-9ce9-c3dabf3f71d9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.81,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/7290f7bf-08b1-4a56-a406-fd1f35fa702e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/4634d972-a45e-4697-b7a6-d652db21cc9b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.75,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/15a7de5e-de78-4525-b902-dedbfc5fd924",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.13,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/ea20418e-da6c-4721-8298-3f57559961c4/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.73,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.64,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/98ea066a-a458-4c06-801c-9a577293071a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.63,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/4ddcba75-b1da-458d-be7d-00db226deb99",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.89,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.43,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/1e20ac1d-7168-4e14-9799-b42e27ffedda",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.72,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.84,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.73,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/9159872f-4fca-4fc9-b52f-43694939fd7a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.81,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/864fd9f3-3c74-49ee-96bf-87078ab94507",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.8,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.04,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.0,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.37,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.09,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/e3a0d4ad-7288-4fb1-b1c4-626fdcc6ff4c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.34,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/04697d74-df60-449b-8366-4ce0b2d75d9a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.6,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.35,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.94,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/532c83f5-8847-4d6a-8f97-ca34bb3d81c1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.63,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.56,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/5a34486d-c81a-4a8a-883c-01ab1832fad1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.11,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/5e225ae6-7c30-46e1-9e2f-2351c95baf8a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.81,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.93,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.34,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.67,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/b5506e5b-9392-4223-99df-faaf18f1d81b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.09,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/5e0ed44b-f50f-4d8b-ae92-015f0a3815db",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.33,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.64,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/bb9fd02c-665f-4d6c-9324-c4f44dd2ef5c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.3,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.94,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.85,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/e1987ac4-3e40-4d34-8330-833cf1224462",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/223d42b3-b791-42f0-acb0-c27694812424",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.95,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.02,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.18,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.16,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/9b07847a-c6fb-4955-8163-23edd3b5572f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.06,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/5951bfab-c87f-42c5-b67d-78ccf0651ec9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.96,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.8,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.88,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.05,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/58032566-6d6d-4d0e-b930-3b7c79e01047",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.44,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/76754551-837e-4bf5-9edc-a9fa705ced8a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.49,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.43,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.42,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/c51feae5-905d-40a1-9841-e3ace90697b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/eb2aecf9-7129-4aa2-9b40-d605f1ab6f38",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.29,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.36,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.7,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.45,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/764b8146-4a74-4198-b5d5-8601e5c41a62",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.55,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.35,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.04,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.38,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.71,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/07749474-cccf-4db5-a9b2-84bce3fed60d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.93,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.32,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.18,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.28,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/7c3a0e42-ce51-409d-82d1-707c8c49ca77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.8,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.18,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/201d655f-6e9a-4030-8968-e9ead01862ad",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.02,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/a895490a-954f-4ac7-85f2-ca8846cb3a77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.78,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.11,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.6,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/9957c8ab-c849-48be-b90f-8b3d8489658b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.43,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.68,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.71,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps/eccfe683-eb41-4022-84e0-52431f3d2d1e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.12,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps/f00cddad-2d91-4af8-bbfb-41a59806a748",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.7,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps/f4bd4266-f86f-40b1-8d30-bb846e46d80f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.77,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.api.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.25,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.27,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.15,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.88,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.65,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.49,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.62,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.06,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.52,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.09,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/49",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.09,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.47,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.18,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.77,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.82,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.83,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.41,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/eec76818-dd29-446e-a77d-52596322b345",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.69,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.79,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.1,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.58,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.37,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.34,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.09,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.3,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.79,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.44,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.85,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.33,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 27.87,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.09,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 18.26,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.67,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.87,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.37,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/37892610-d1d7-48bc-a85f-083e395f630c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.69,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.19,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.88,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.65,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.29,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.71,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.65,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.39,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.76,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.22,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.43,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.08,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.89,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.67,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.13,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.06,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 33.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 36.26,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 36.77,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 43.57,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 33.52,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.63,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.76,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.15,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 13.37,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.88,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.9,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.51,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.77,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 30.21,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.25,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.56,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.67,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps/eab1aebb-674f-44b9-a5ae-bebc29d895e4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.25,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.api.v3.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.99,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.52,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.79,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.74,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.81,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.9,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.84,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.89,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.13,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.45,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.63,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/49",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.25,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.47,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.26,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.67,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.41,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.13,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.41,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 21.24,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.66,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.62,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/eec76818-dd29-446e-a77d-52596322b345",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.54,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.53,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.19,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.15,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.05,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.52,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.29,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.49,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.67,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.54,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.95,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.99,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.92,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 19.88,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.3,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 19.49,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.94,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.26,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.34,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.83,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/aabde271-06b0-4acd-82fe-8cb648b1996c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.98,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.8,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.78,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.94,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.91,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.73,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.46,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.46,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.12,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.54,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.82,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.35,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.04,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.34,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.74,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.57,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.84,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.9,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.15,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.85,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.16,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.53,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.44,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.37,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.64,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.64,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.69,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.3,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.86,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.62,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.67,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 49.87,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.62,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.69,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.57,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.72,
- "detail": ""
- },
- {
- "series": "3.1",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af/steps/1e3d7b32-3732-47ce-8e17-f796d640911c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.34,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "api.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.62,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.51,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.61,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/bccc9838-ae21-475c-ba44-0ae6af403c1e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.26,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/86b28660-cacf-46d9-878b-63a1d65f8624",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 25.9,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 19.59,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 31.18,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.05,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/f92d4914-4eb8-4ba4-990d-e9317a0c88e0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.9,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/508daa28-00e0-4db7-982b-7236b04653d3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.46,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.06,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.3,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.14,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 13.73,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.06,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/d161d293-3f72-4df6-861f-4abb30cec959",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 30.06,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/e969fc2b-6713-4f57-81b1-b08763873462",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.92,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.3,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.58,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 16.94,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.95,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/507e2369-589a-4366-8175-cd0fe0768516",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/6685ff05-85b3-4d7c-b509-08af5d516a67",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 31.35,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 29.79,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.8,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.3,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 8.21,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.95,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.67,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/80ce52c6-ecb6-47da-a208-b1b61ced3470",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.56,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.29,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/50",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.77,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/50",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/f8394eaa-8eed-4786-a5f3-dc423468d9fb",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.35,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.04,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.88,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/d0249f1e-036d-4eb1-a7e3-74322ff9f1c6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.61,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/cb38392f-f8b3-4acb-a7cd-0f672f11192d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.59,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.48,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 17.97,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.82,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/727149dd-88a4-4d39-b369-ad7635a30a7a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/413092ac-7909-4749-9fa0-2b828126eeef",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 34.23,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 52.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 27.79,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 17.74,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.86,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.51,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.18,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.21,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.91,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.44,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.12,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.84,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.95,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.16,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.81,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/6d858c04-6394-43b0-9b50-c232b58a3723",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.33,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.3,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.31,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/2b7d0d83-12f2-492b-b581-dc162ed2c7b5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.36,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/ea61b6db-f5a0-4abd-8d65-67930a3f1f58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.77,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.77,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.87,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/39b21197-57ee-4f12-957e-da95cf388433",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.02,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.14,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/fae69870-89ea-4a7f-9818-e2b2e3e76997",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.64,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/57e25255-4fef-4edd-b3ef-24f540e25eb5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.47,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.44,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.61,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/fadb7985-9237-410d-b6a8-04b5fc69b8e0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.4,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/71f85e8a-b6ca-4ac7-84ee-4234d3828de4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.4,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/55268ef9-6d0f-4555-9655-dcf51271cf01",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.92,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.49,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.09,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.75,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fdbd3bb1-637a-4b2b-8d6b-b9a4ae09b7ac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.8,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/397793f8-eb82-4881-bde4-ca942d68374c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.59,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.36,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.9,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.61,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/7c38989d-0124-4d24-8f6b-48e15ae4d642",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.22,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/746e4da8-dac6-4862-8fe1-2175e968e595",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.05,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.45,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/1b4b6e16-2fc9-4959-b2de-60eb81d3d371",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.62,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/644cdcd7-5f6b-4a01-9093-2f4b2bc95aaf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.97,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.85,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.21,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/840d3f1e-2f15-4262-9c0b-cfe389ef1576",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.93,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.39,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.42,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.95,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/8a1350ef-fbe1-4255-83e6-73338e90998d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.21,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/c21bf4f0-5350-49c9-9a00-c59935832c14",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.54,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.9,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.16,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/ee755cb0-8559-49ee-a82f-ca56b43b8669",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/34b77cc6-01bb-490f-ac16-c55136deac40",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.0,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.66,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.7,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.97,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.18,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.43,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.55,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.21,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.91,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.39,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.45,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 46.66,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.78,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.84,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 20.97,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.01,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.15,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.05,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.77,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.37,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/e26a87d1-525d-4d8a-8862-db91a458c156",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.61,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/db247723-002f-41e5-b332-dcdb7de8dddb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.45,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.18,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.97,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/fce3d91d-e77b-4fcf-85c9-82065e5cb25e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.82,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/6d5235dd-dfec-4628-964e-37539f723a65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.38,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.73,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.91,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.84,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.58,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/f98447db-c6f4-4a5d-bab9-5718023bfeaa",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.69,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/a7c37793-a9d6-4e6a-a4f7-b83a2c7ce586",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.66,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/5e1d51e4-e3ab-4996-8217-3d29ff98fb90",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.43,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/37d05d4d-58d6-40fe-ade1-85d4eead614b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/f541bfba-0fce-4b8f-9dc6-7864032ad080",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.08,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/4c278912-5fb2-42f3-b448-2a7d585cb854/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.39,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.6,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.97,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/c8d21926-b165-4fa2-a852-52c6a8ee8405",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/378157c7-9e4c-4670-8e8d-939f03993a54",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.8,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.79,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.57,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.73,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/f3571390-5035-4ec3-9f34-53bcd7888e39",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.51,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.34,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.37,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/1331cfc3-c342-4598-a037-15d6bc63abfd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.5,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/bc6ee055-9770-42b0-a1a2-f5282f741b7d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.29,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.33,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.49,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.14,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.97,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.46,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.31,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/431ef958-8745-4b4a-b603-ce98f85cc4cb",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.37,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/ea148bb8-60cc-43e9-a72b-2945c4fc431b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.3,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.93,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.41,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.11,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.03,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/bb208913-b0e4-4182-aa5a-23646117ecc6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.47,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.13,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.13,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/c04a00c6-690e-4e6d-b9a2-6d807af53945",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/17061603-1f89-4d06-b9e7-0fea615e9eb0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.86,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.49,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.0,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/64502d9f-d74d-4fb6-a054-fa39a2cbd4b8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.44,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/592864ee-93f4-40c2-8fa5-60a13c7f7168",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.3,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.61,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.47,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.59,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.91,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/4a0775a6-6a04-4e50-8f7c-9ab7e54a1900",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.64,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.43,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 8.55,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.01,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/e72259da-1c6c-4fa7-b4eb-a5a47a179656",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/bf715c15-8ba9-49d9-971f-fc628055a6dd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.0,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 39.14,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.66,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.53,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.72,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.26,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/35188cbf-b9b2-491f-a524-ce2ccf9fe2bc",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.92,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/a99b8655-ec13-4280-b113-3daac108da03",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.47,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.8,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.23,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.99,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e103e88c-3a12-4fe5-a88b-957874ff0299",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.78,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/bb8ae3a5-4b1b-4483-a59e-4c9ada464ab9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.23,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 23.56,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.92,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.99,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/b6079c1c-2782-427c-8b3c-3d6b0c5a780b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.16,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/2514c2de-e59b-4a07-9d6f-e94b12f215bc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 30.69,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.23,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.77,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 19.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 18.56,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/c4da8ab7-4ab9-4e10-a69c-e367088e8966",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.91,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.97,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.47,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/e43440dd-c4c6-49f8-88ac-43f1f7e2947c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.69,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.05,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.71,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.99,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 44.07,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/3a3e740a-2905-41e9-a4c8-611e7dfa2f33",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.99,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.17,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.28,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.19,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/aed62135-915b-4c84-87a1-286c7fbe6238",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.81,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/a4f56fc0-a74b-4bc3-a5d8-b61914b0e57a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.5,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.72,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 69.9,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 19.28,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.3,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/a89e7e11-6ec5-4881-94be-bdcfb1863917",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.78,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.24,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.49,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps/184d1c2a-88e0-4247-9542-f0926a4a7e61",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.17,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps/4d02c98c-8d42-4440-a49e-6c8403082bdb",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.72,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps/e7468c55-7eb9-446f-bd6e-22063549fb61",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "api.v3.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 28.52,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.55,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 14.93,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.04,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/817a12f7-22cd-43e0-804d-5d6e5eb06fc9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.35,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/18a36210-7e1c-4558-8ae2-d8e11b00d03e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.11,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.71,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 22.96,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.15,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/c9ec1abd-27b2-4e69-8c9d-5d457fdb96e8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/0e20bbd0-416e-4110-bcc8-2d78ca89693d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.77,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 17.99,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.19,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 17.54,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.29,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 13.59,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.07,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/64f3fdc4-3350-4ac6-9948-2b2cc3917ceb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.84,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/a2621f47-884f-4c39-9752-364360a758e1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.74,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 57.02,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 63.28,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 55.83,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 50.28,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/659b7b2f-3c78-4620-9f9d-e1e73b4b1d63",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.65,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/05f6284d-57dc-472c-a59f-927781bebf1e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 23.43,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 31.07,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 24.76,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.72,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 51.94,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.0,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/791e0dac-364a-4d98-af58-95d3fa02397e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.45,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.0,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 11.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/50",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.26,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/50",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.71,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/a7e2cd1f-ba34-429a-a922-b0471d770628",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 16.34,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 32.48,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 64.48,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 58.26,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/0e926f9b-225b-45df-a3ff-9e09a25a8db4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 50.96,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/3d5fab32-0c74-49f2-a3f6-58d41b0ccdae",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 47.77,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 81.67,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 47.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.98,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/f062f615-bb2a-4cd4-b904-54921a505dbb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.35,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/0187b033-6171-4616-9499-e95b3e61e07b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.5,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 21.19,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 37.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 35.0,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.13,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 28.64,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 48.35,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 16.82,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.87,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.86,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 29.78,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.41,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.18,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.61,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.52,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/824e9f81-b497-4ce0-9a1b-50e4277c6d3f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.16,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.44,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.61,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.49,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/22acff31-0340-4769-b2fa-ce96751e1df5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.46,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e6cbab41-5fa3-44d6-ba02-79d1e5ef5b49",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.49,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.17,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.7,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.62,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/603e2766-2162-4aa7-94a3-0af9ca64ba93",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.06,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 65.04,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.49,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/18f84884-c386-4533-a64b-20a6d62d1cec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.13,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/966ccece-9e81-49fe-98db-ea373345a085",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.1,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.07,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.79,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/fadb7985-9237-410d-b6a8-04b5fc69b8e0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.09,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/a41cbffb-9b6b-4229-8625-599c198eeacb",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.45,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/174632be-7d36-499d-a6fe-152dc3ca791b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.51,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.75,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.01,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/6e75d54a-3525-4771-a207-ae7b4fd8e122",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.15,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/f9553ba8-adfb-497b-a0cc-a728a7a5701e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.42,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 17.53,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 21.4,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.52,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/634a9447-7c1e-430b-9ca7-8f2d3b7ff73c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.51,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/2bce4c97-bc2b-45b9-a75e-8382f29ba09e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.17,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.22,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.55,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.22,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/92959472-3373-45a1-9b57-954f39278942",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/07107b1c-8b09-4bf4-b41a-e105a0a430e1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.62,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.68,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.88,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.92,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.59,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/fcc331ad-0b71-4022-9e33-2a87b2c532a9",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.34,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.45,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.76,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/56aab309-dc92-4a30-b333-e1b00792f2d9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.11,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/6d2ff582-360e-4e47-a6b1-54f41eeef801",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.57,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.22,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.23,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/f5c445b6-739c-423d-989b-e25b8e0584b2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.52,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/5d23f248-5f95-4f51-9d8f-9437605ba280",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 33.28,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 33.07,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 16.1,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.1,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.9,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.83,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.81,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.17,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 409,
- "expected_hint": 201,
- "duration_ms": 16.32,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.98,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.79,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.58,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 16.03,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.73,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.54,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.17,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 24.65,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 39.74,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 52.88,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.11,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 19.68,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 15.1,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/74ad1cd4-9de0-4398-af9f-ea66e5409c97",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.63,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/30151137-eaaa-4344-a21f-a943aa04c06f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.8,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.26,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.06,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.45,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/43b17b38-454f-4be7-8d6b-f0fc80c5a3f1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.61,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/1353eb3b-14d9-4431-b8d9-0001f8756395",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.35,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.87,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.56,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.34,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.54,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.18,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/1054f4c5-f5dc-41ef-a462-3afb62e8f5a2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.22,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/d9663f6f-0d1f-4e84-8ee7-2a6462151604",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.37,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 35.4,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 17.03,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/3f2a3b3d-80c6-428e-8018-5a465b109fe0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.06,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/0f8bb642-b657-432a-8b7a-0733ce176587",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.0,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/4b200c95-d208-423a-8dc2-2ba1f340a47d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.78,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/6430c7f8-4ace-41b7-8359-7cab36f6ba72/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.29,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.45,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.38,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/5b2da443-c16b-451c-9545-f279ed9cbc18",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.45,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/3e9b5d1a-c8e4-4af6-b558-144ad5a5d93a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.33,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/0fab0900-ae5e-4d09-97b9-03d12b8f19e8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.35,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.47,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.4,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/0355e795-9660-4382-8f3f-061db044e8ad",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.36,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/b3a7d2f0-6d7d-43c3-8deb-641878b2475a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.11,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.02,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.75,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.95,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.71,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.79,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 17.22,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/39133e90-55ee-4308-9444-177dda11c560",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.4,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/a0fc1c14-c757-4e81-8713-2c704c5fef7d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.14,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.15,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.74,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.33,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/9234982b-cd90-4fa1-9923-ec4aa92a2d73",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.35,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.31,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.16,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/54c6b6d5-0e53-4d8b-8b0a-e2eb906a29f3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.46,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/3552365d-9861-48b1-a266-15d6cd1debbd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.07,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.94,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.03,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/b51c3f29-5ac2-40c9-8d47-85215329396b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/28bbeef0-6734-4370-b849-cd98ef8e5766",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.29,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.33,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.06,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.77,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/2007a2c1-6aa0-46bc-a25b-d2dd5ffda9c8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.14,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 4.34,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/a65228a2-189b-49aa-bec7-47ea443723b1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.95,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/f2a0ead7-65b6-4c35-9ea2-0984e5593449",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.63,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.69,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.88,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.66,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.24,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/48eed676-93d5-4141-a421-61c670175c9a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.18,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/33871242-154a-4d60-8a81-fa99ce3e8512",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.1,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.85,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e34f5910-41f2-4437-84d6-a2ac11c95226",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.6,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/6a95d8c5-495b-44dd-a591-4c7121df1018",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.45,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/34eae675-6bff-4a6b-a961-eb10022e2188",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.32,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/434e1e84-c869-404b-81ed-59604dd7bfae",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.59,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.27,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.92,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.11,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/be38ec2c-233d-4c41-bf3b-8f365f7cd448",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.52,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.83,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.21,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/fe135dee-5f0b-4925-9162-ef1734b14284",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.59,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.55,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/78347da1-3d31-4210-8c66-e2766f8f032b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.41,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.01,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.98,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/5cc0de92-bb5f-47a6-84da-ff5b4149dc5c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.61,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/8ef575ed-4eb4-4566-8ae9-188f4d81bedc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.9,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.26,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/2668fe2f-4253-4e22-97d8-a92851cbb34d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.8,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.57,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps/d1375d08-5507-4a07-bd7d-da324d749a75",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.73,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps/9fcc24cb-90e9-4eb9-b2eb-5f26c4ed40ed",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps/b0fac031-2b6e-4cc7-b816-22416a12f8e0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.52,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.api.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.0,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.52,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.76,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.15,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.98,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.47,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.47,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.63,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/50",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.9,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.19,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.26,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.34,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.79,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.91,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.06,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.06,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/fadb7985-9237-410d-b6a8-04b5fc69b8e0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.13,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.47,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.84,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.32,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.16,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.65,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.56,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.88,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.09,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.2,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.29,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.35,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.09,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.35,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.55,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.99,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/cdf571c0-d543-4890-9d19-2ffd6ba184f3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.73,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.29,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.68,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.15,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.58,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.84,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.72,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.16,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.27,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.9,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.11,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.5,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.24,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.89,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.59,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.52,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.31,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.57,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.31,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.37,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.05,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.83,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.84,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.01,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.93,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.38,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.26,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.86,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.45,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.52,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps/4a98a186-c1aa-4e51-b437-13f864c926ce",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.08,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.api.v3.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.81,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.94,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.69,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.78,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.37,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.22,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.84,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/50",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.03,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.58,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.79,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.41,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.8,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.18,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.25,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.59,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.27,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.79,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/fadb7985-9237-410d-b6a8-04b5fc69b8e0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.24,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.91,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.22,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.41,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.64,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.12,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.84,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.85,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.74,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.44,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.57,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.11,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.97,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.37,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.06,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.12,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.7,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/77f3479d-78c1-4b10-ae2a-a2c17bdcd869",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.59,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.4,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.48,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.31,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.92,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.51,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.49,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.67,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.99,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.38,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.61,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.78,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.42,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.13,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.27,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.34,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.04,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.47,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.16,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.03,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.32,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.83,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.03,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.78,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.1,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.35,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.6,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.72,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.97,
- "detail": ""
- },
- {
- "series": "3.2",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4/steps/22bc0099-4b09-4207-a1c3-617937a5f644",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "api.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.7,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.26,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.9,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/efb00394-75ef-4c7e-857d-633a0c512896",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.49,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/467b38ef-0f76-42be-9be6-b20fdf1899bc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.27,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.64,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/9b9abc2b-2320-451f-b4d4-4969cf007076",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.5,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/2cb75843-8181-47d3-b76b-7257992d4ce0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.16,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.1,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.38,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.81,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/d684062a-90e4-4ed2-a9b2-fb05cde1f696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/e92defbd-a153-4c86-b3b3-d4a595006d05",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.57,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.16,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.8,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/9a562a8f-264a-4ab2-8722-2fe774a5c735",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/6330a886-6648-4441-acc1-3542c6d84ccb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.52,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.51,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.48,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/aa3ad354-6ca3-4545-b0d5-1d221207d73d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.68,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/51",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/51",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/c0049667-3195-44da-9ed7-a327521e29f5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.14,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.21,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/c1f379b2-1f8b-4bda-b61e-3a29c91be458",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.26,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/8df8d2f8-d4d8-4733-8907-d8a32dd4fdc8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.49,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.01,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/6e5bce90-28a6-4395-95b2-2332e50716de",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/f39db442-de01-4b69-a8d7-ded45ae859a9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.17,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.13,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.18,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.04,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.67,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.6,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.78,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.56,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.57,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.67,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/531b3bcd-507b-4659-a9c6-930f96849150",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.17,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 17.47,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/865029d9-f75d-4496-ab39-b8f043178f5a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/313d6490-10fc-4381-a23c-75598469859c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.26,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.84,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.38,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.54,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/77b9674e-4758-401e-a459-ebba15da5950",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/2da70e76-bfc0-40ab-8284-a5236b0150a1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.72,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/2bb5e51d-9475-4d5d-be02-478512d5813e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/7b7f7b57-412c-4b03-8f74-9ca945ce045f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.44,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.32,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/32ed34d6-9e24-4637-bc7d-01a52b6422aa",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.31,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.06,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.81,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/b263b194-8559-4cc3-b7d4-71140b4aec59",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.1,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/591b9873-12be-4a76-b20d-8e9082b738fd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/0e2ed0b0-e4b9-4023-a7f8-22ff0be669b1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/bd65d746-e97d-4238-b4be-b5a644c61f21",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.3,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/b29401e0-7c67-4550-9354-95f4a01fc8aa",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.6,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/f3c08569-e14b-485b-9195-a488d4161fb3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.84,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 59.37,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/45bf64d6-cd05-4b2c-ae43-bb3ef37f38c0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.05,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/54601e1d-236a-450f-ae9a-6dda4ea74570",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.04,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/b1f74437-6f92-4237-bc95-481a17883fe5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.61,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.88,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/7f1ba811-e144-45d0-ade2-13f3031403e1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.11,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/bec7bb4d-7d38-460e-9314-939dc4ba7191",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.3,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/ef098d0d-095c-4347-9245-1a80ecefae9a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eea372bd-bceb-4b0e-9381-c489bdac253b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.99,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/d961d646-8895-4042-af22-badaf27b8786",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/840fa8a5-8bb5-4d10-b5ae-bab6bb320e32",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.69,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/6d6613ba-087f-4c94-9c09-056574462f41",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.21,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/3bb7bd94-8762-42b7-b279-546c245bfe5e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/10954197-b1a7-4ab8-8b25-950f4f253305",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/62830b40-d1de-4fbc-b0d3-0f54989e9884",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/7906d2ab-90c4-49a6-b1b7-183daad50b2d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.34,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.63,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.48,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.35,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.09,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.35,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/9e32519f-ecbd-484d-b565-085b5b4a8ccc",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/70b327eb-df89-4392-bfd8-b9328307a37d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.22,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/3dbbd858-f1ab-45b2-b103-0ceb859c802f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/662f7489-c565-41ce-86e8-e2ab41868298",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/92a56508-a92f-4340-9232-620be9281b26",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/3987bc68-7d40-458c-9aa8-21940568a36c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/3f52afbc-fca7-49f1-a99c-4566fa572703",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/0a971878-545f-4e88-b065-684368b061bc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.58,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/74582554-dea3-4230-aaed-d289db67b91b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/42ab213c-3d90-486b-bb30-4511416fc3b7",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.54,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/e60cd4cc-7b60-4c55-80a9-62a237d81cd3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/1bb3e503-8245-4839-84c1-3c3a7b645be6/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/a95c990b-6e83-4639-b222-7ee0c0f04af2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/e45a9e09-3554-4b79-b869-f1478e41d159",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.8,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.31,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.78,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.25,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/f83e521c-2c04-4eb7-bde6-ca572426f403",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.29,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/51734bca-ceb1-4e8a-b432-0353c38e36e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/cac1294c-d692-440f-bb15-c08d3ea74d89",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.2,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/fcde4c1e-f62c-4ba3-93fd-15540dd71ef9",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/13c0db53-3f5e-4b46-8d4e-42293e853f92",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.54,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/608f6030-bfce-4ffb-a729-5c472353f3ea",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/3d2bc19a-4708-430f-90e0-6ede2c783ebb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.95,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/39389d78-c84e-4b91-b30a-22a4b3d8929f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.19,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/8ff0be17-5e33-4a4f-a5be-4c45ead63de1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/41b1fce0-2e7f-496d-be05-d7d65771adff",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.47,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/3b2c2877-3600-4f5b-bb68-17eaf024e423",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.98,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/fb9d4631-956b-43e8-a70c-caa5ca04243e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/65dddb8d-bf36-491f-a185-ef5f6aaac997",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.73,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/9dc36f05-728c-4e88-b224-4110ddab1286",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.02,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/b36fdf1b-6fcf-4e52-8d35-26406167a752",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/7ab98b7e-4358-4c7d-b766-2374a8407d4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.96,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.52,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.52,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.87,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/27ba51da-90e2-4759-bf1c-85690b343112",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/55b5c938-c441-4bd0-8e80-00c4a29fcf10",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/2784daeb-5174-4a4c-ae58-7b56d6fcdcb3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/d2163305-e8d9-425f-9cdb-9e9dfe96aaed",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/208883e2-65cd-47b3-b121-0da526828970",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f66b27a2-757f-47f5-9aa6-b8f7848a5c7f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.97,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.69,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ada84576-ad4c-4d1a-870c-bcf1b4cee143",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.78,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/a37379c4-6132-4e1b-acfc-f38872f48587",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.77,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/499e011a-32ce-40fc-ba80-f259d0b09686",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.11,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.69,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/01f8dfb3-d1e5-448f-8f8a-dbf363f089bf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.7,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.22,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/ba7c2378-625f-4131-b66a-bc2c252d43f0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/a639365e-aaa9-4dd3-a27d-5f108d660bb4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/fbc95703-2c3c-4d83-8961-0faac05ec3e3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/ae6020ab-f8ba-4fe0-ad77-a3613d79f6fd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps/b90ef820-f6e9-4982-a8f8-6dabc07b6d67",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps/7a2b57e0-751c-43f1-9698-943328fe1c47",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps/d3f7f5ab-8395-445e-9c37-a30a2d4940cb",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "api.v3.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/d18af9db-29fe-420a-9bd0-12401844252f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/84c97777-af7b-44ed-962f-a2c8544f9557",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/1e5d4bff-08e6-4b11-abd6-c8bb9299ebca",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/13a28e21-f525-40af-bbd9-e2fefa6a118b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.7,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.39,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/e80e6e78-d642-4b79-bf9f-b2c4f6ad7aa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.97,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/b798e362-b736-489f-b7ba-c5f461af6cae",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.52,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.68,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.91,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/48402db3-e848-4bff-a59e-7fb5243f9dd0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.97,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/73942b16-8263-4471-862c-edbee55042ef",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.61,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.55,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.27,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/98b26603-e799-4ff5-bc7b-f6e7ae345673",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.67,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/51",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/51",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/cd4b07af-7704-40a5-be15-ece21a520fe3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.89,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.6,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/1dc2b564-c6a2-4129-a9ed-314f8a760cac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/88e54129-716d-4054-8b88-8d9909289dbc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.78,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/26529ad6-4eed-440a-82bc-f5b8c8e0d877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.63,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/2f09b82d-e6a1-42c0-abd8-c68d4bbafddb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.95,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.53,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/e509ca76-b4e2-45eb-b16a-8dbc3e32a617",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.78,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/308ba1ab-9189-46a4-a097-e54cdc401950",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/4696f1d5-3473-411b-a1be-6457512fa9f5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/85eefe12-ce5a-4d5f-bb4b-c0fef9e5313c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/31f621cf-9419-4ed5-b62d-82e93a882245",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/07714fa6-2449-42e0-87bd-5f38d9ca247c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/9513f79c-73d1-40ed-b756-d9265ba1961d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/6a6df509-9790-4978-b7f2-a787b48a7312",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.62,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.63,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f7bb2b70-8185-4683-9e5b-a7933616657a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/21d02f22-e72b-447d-94ef-f62f58790258",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.55,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/3ff00717-d8c2-45e1-8962-e7296f9edb0b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/42d2e309-0df5-4aae-a044-04a0fd95b279",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.98,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.8,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.64,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/984b27dd-65f5-4165-bbe8-8a4461c49eb2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/e8acf4b3-ed58-4490-bcdb-48344387b512",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.24,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/45bf64d6-cd05-4b2c-ae43-bb3ef37f38c0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/ad4b6645-8973-4d49-b6f0-389ac7745c4d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.55,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/c73bb2dd-65bc-46b9-9d09-e3947bb3234e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.98,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/015b024c-e87e-44d1-b2ad-e83c5fa6548e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.39,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/2d788e48-e52a-491d-8450-3d9e350a2796",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.02,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.21,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.8,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/67a5ea99-6c15-46f7-8f5a-c1474f41df02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/504b0f4d-b87c-40bb-b293-b567316052fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.16,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/556a26a7-433b-4072-8680-277f83e5cbd7",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.56,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/933282f3-f627-42b5-b5d3-d419fbd8bb76",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.48,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.8,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.59,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/f620137a-72a0-413d-98d0-4e54d3d0e59b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.45,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.49,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.66,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/452c324c-378a-4b0a-b638-c953d05e1eb9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/9f957af6-a8f0-41cc-9aa0-675c5368d714",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.43,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/6e8daca0-090f-4303-ae0c-02bf822d2564",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/84b425cf-4b27-424c-a6b1-8c8e4c09b525",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 409,
- "expected_hint": 201,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/a215840b-42fd-4e7c-8635-8ec5c0b6c7f1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.53,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/69bd060d-57d5-4eb7-bc9d-f0b045347fb1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.41,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/56505ed1-87d4-4c95-a830-091632c3b905",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/7f5788d4-46bf-40af-9024-dc770a7eee28",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.22,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/4b0d85eb-255e-4859-8be6-7fb9345c0381",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/7efd3d11-cea4-4127-8518-f6146fe76c14",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.24,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/714e7ce8-b530-426f-a545-4a75baa12b5c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/048d83a4-4561-4de7-bbb6-3a3903d658b8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/680a9ac8-241f-4bd9-bb3a-cbc46133f1b4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/70704d3a-634f-432c-af3f-be2bf4b9959e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.78,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/5540b462-3e0c-4192-877d-da6408cbf995",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/1826c2d5-8fd8-4f26-8013-c40201710b4c/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.88,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/89e00b7b-405a-4aa7-bbc5-4964ef1ace58",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.68,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/d1b65b68-a2f5-4773-9a69-50f2791c40ad",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.59,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.68,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/fd8b49e5-aa87-4602-b98f-631cd37619c4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.75,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.98,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/faed2d74-702c-45c0-9c0b-dda117e3a78f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/ba958bc3-d4ec-445b-bc2a-4940815dcdbc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.09,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.84,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/62171efd-e7c4-4516-b6d9-937d4ad1d614",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/169fb311-d77f-4840-9f00-934ff138ed01",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.98,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/2f2d03a3-33fd-4fb5-9f6b-ce28351cd9f4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.72,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/01edaf46-99c8-4a91-a51d-a3ddf5a541fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/3549f1de-22be-447e-8386-dc45619467d5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.69,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/8ff0be17-5e33-4a4f-a5be-4c45ead63de1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.69,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/4fd4ecf2-e75a-43e0-93da-48c553f41d5e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/dad8deb2-150b-4074-b56d-b57b7751f617",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.97,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/a99d90bc-e18b-4f26-a65b-28fa0265ef7a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/7e8f3313-68a4-4c94-b027-6410332c4948",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.64,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/07221a97-c1c4-4ad1-97c2-76b4a2971c35",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.59,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.02,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/e58a2bae-619f-47d1-b2c9-0fc85d7c5af7",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.63,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/4a347053-b377-4b45-997b-c2b9b8a0ce0a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.47,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.49,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 42.73,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/479267fd-2a24-4dc1-b0df-24a4eea0f779",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/9989b91d-3a2b-4607-824b-54264858a71a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/f1483a82-0cbd-45ae-8d43-21feb89ee733",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.8,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/c8b07099-af4f-4488-a9bc-0f612cc40047",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/614b5942-2d4c-4067-ab33-68a22688c6d1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/b548e184-6f65-4e19-8202-d8af0bf22878",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.96,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/8c4ef5dd-6110-4e59-8e7f-ec8b55f79d16",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.73,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/887395e2-7ffe-4e38-aa38-6778433cc0b4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/bf7e30f7-da98-4dfc-bd0e-256d9160ec1c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.24,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/cfed829a-1c71-47ee-a329-a62446a2e88f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.78,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/e350fb3b-9ab6-4123-b88f-1214a625166a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/ccaa2a9b-5f04-4887-a589-7bf27c2dc3c5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/447c402a-746f-4be9-9fe5-5f5c34b97d2e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/ae28a5e0-af17-46d2-a146-8ed1fc65eec1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps/30dd0ffe-9a06-495f-8944-ba34d6cec8a4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.97,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps/c97178ef-a650-402d-ad80-3308ce582fbc",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps/608ccb23-52eb-47b1-b619-8276fb06f50b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.api.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.8,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.5,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/51",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.84,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.06,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.87,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/45bf64d6-cd05-4b2c-ae43-bb3ef37f38c0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.69,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.33,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.87,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/8eb5ad94-2cbe-46f3-a181-2bdf8caee495",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.16,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.31,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/8ff0be17-5e33-4a4f-a5be-4c45ead63de1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.8,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.81,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.97,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.96,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.81,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps/2fffb7e7-ca9f-41b8-96b5-6d842ab7e09f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.api.v3.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.87,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.88,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/51",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.75,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.75,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.61,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.61,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.72,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/45bf64d6-cd05-4b2c-ae43-bb3ef37f38c0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.98,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.74,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.7,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/e9eef7ae-8884-4d14-acc9-8e7af1d09e64",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.98,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/8ff0be17-5e33-4a4f-a5be-4c45ead63de1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.74,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.3",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b/steps/29ac2e13-69b2-46c9-b4ff-ad0b3fff3e07",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "api.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.35,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.64,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.25,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/ed0eaca5-1c7d-42c0-9364-c1548774d559",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/8a6992d0-32a2-4b70-aae1-daa0b75176eb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.72,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.11,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/a51a972e-321b-44ef-b748-2a04255c3585",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/846aa41e-bd47-4074-86a5-2f7f27c453be",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.45,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.63,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.7,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/b14a345a-abd1-4640-9885-7383ba8ed719",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/48ba2622-f6de-43c0-a34a-9c22bc249010",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/6f2501ed-2078-476b-b5d4-c8c13ab3d5a0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/e4a5906f-8f98-41ca-9ebe-90f6760501e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.83,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/c9946025-c1ef-459c-b533-61e7db2a0c57",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/52",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.94,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/52",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.56,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/ef6a553d-065d-449f-98bc-99d46a703698",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.52,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.27,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/c91bbf34-ce34-4492-b35d-680d90d83a8f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.44,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/9d19caab-5edd-4d1e-9ae5-392986814b70",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.2,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/69657777-9427-4c58-8c5d-bbbf7e7971b8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.73,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/c06278f7-34e5-4d07-9c3f-53b4ad6954d9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.71,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/10744b23-72ec-42d3-82f3-b87508481133",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/373e19e0-4e01-4156-9d05-ee331ba1dd80",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.02,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.86,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.57,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.84,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.62,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/d5445451-f6b2-4818-9ad5-46898bd31a26",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.69,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.97,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/81f08b97-5567-4579-8730-610c44d9f59e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/483697e6-ca16-40c6-bbc5-400363ea6aaf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/b2597ac4-bdf1-476c-8c7a-5f0a8ab4cf5b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/4d36c686-a532-4c69-98e4-73aa7a34a10c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.55,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/27a265df-259a-4af6-9802-e25cc80ea2f4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/f81b481d-d9cd-48d5-a7e9-86fca87e4bfc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/4e7e9aa4-d0e0-4a9f-aed6-a89b603a0bd1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/a4ea971a-6a82-4619-9b28-3272fd45077a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.5,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/e7d1af59-993e-4d1b-be47-693e71f77b98",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.33,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.67,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/e9fc8a50-d71e-48cc-8de6-cf9472ddafea",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/545cb0e5-78f0-4054-b6c2-f16ccf28b826",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.81,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.59,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/db2146d6-747c-4d7b-9749-a238a93d6cf3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/71495077-9238-43a5-9b44-4f07b610eb80",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.66,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.53,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/c87a91e8-6ca3-4f34-8de8-cbab61cae736",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/cea5ab21-8318-43d2-8633-46bef63f0d4f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/40a8e689-a171-47d0-9ef6-02b99642071a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/a333d89d-7766-4368-b021-6c17cc8b7581",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.51,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/74c8dd37-5f13-4e56-892e-9bca6580a363",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.55,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.43,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/492f331b-feb5-4d8b-98b3-eeb8aae09f59",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/47f4f58d-ad5b-41fb-a2d3-9fd208716fba",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/60c2287f-a5ac-4098-a6d7-f8355b9465ee",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/59747478-87ac-46f2-9e27-f12f3354178b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.21,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.98,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/c3477499-9833-4436-864d-9b6ddabdda1f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.8,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/94fea5d8-c5e8-4e7c-a7e0-7426df19f42d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.44,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/1ee0f66e-aeb3-40b3-994e-ee7850807d2e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.78,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.22,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/76450537-3015-47fc-8089-47dcb69c781a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/37ea9571-2c0f-4686-95fc-481f86a7e493",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/ef0dda99-1445-44a4-82d1-53f46aa6ccc4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.11,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/1b745c77-8d31-4622-8ea0-b8581eb5b3f1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.84,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.17,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.92,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.93,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.96,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.02,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.88,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.84,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/46c2858b-ba51-4117-8ce4-5c24e3616334",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.57,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/a0ba6fb9-b706-4850-ac0d-a2437b6013d5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 35.67,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/7b3f6e99-1ed6-4be4-8c97-de63cac8cedb",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/776230d9-2752-42b8-9033-2f24f14409cb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/cf7e16fd-cb44-4324-82e9-6bbda39f79aa",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/64cf204b-9aca-4850-a3c4-c2d4e6099319",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.21,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/ac80f3a8-a9e0-4e98-ab9f-25fecab9aa9f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/a2dbe82b-34ab-4ca2-a26c-ebaf41e7791c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/08a0a97a-b9fb-4c05-9b62-65e954e43c6e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.97,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/b83bbf3e-d0f4-4779-a887-06a2ed6241d2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/80374c87-f8fc-4286-8b4e-40b8ec20cba4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/103e6187-b498-4ee4-8e6f-b1bffcd8c4e1/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/ae52efb6-3472-4d5f-990a-539b5ef83e3b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.63,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/936023b7-146a-449f-82f7-1ebf6f7e10ac",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.72,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/4a050c50-a51c-4700-987c-e28fc0e518ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/ca403420-b6a9-48ab-a99a-8b386829473f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/945813c6-9e4d-45ee-a1e9-aaf72af100ef",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.08,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.64,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/6607bce9-4de5-4720-af37-641ba52685f7",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/68aec84c-b717-4af0-a03c-d13ddbc6120b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/c983add6-10b7-4cf6-b0b0-5f5ed727c828",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/a30077f0-873c-447b-b3de-12ef62bda937",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/326a01c9-70a5-4ded-8003-fa7d1b8f2ec7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.21,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9e8a5837-508d-4b89-80de-79440f20c6a7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/d0d84557-adb6-45ee-b284-5815bdf191e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.22,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/e251262e-bfa5-4ef2-8e1b-1d288b1d0c88",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.62,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/581b1d0f-b1ed-4679-b2a9-41df061baedd",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.69,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/8e9bc4ea-bdae-4690-9eec-7995e82a6b06",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.69,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/c3c3e743-5e27-4947-8d17-c1d96e7361b6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 1.57,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.73,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/e7d0174d-461d-430c-ab67-cdafb8e40939",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.75,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/ea5ef00d-ad41-4939-9851-87785da01724",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.96,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/8d759d5f-be77-43e3-b1a2-0202dc213ee6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.75,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/2a966633-df90-4f5b-9c0e-5a64258cab0a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.58,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/24d394f7-4d4d-46ae-97ca-4449ae192c32",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.8,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/c49282d1-ac1f-438e-8924-6f8720b120ba",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.96,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.98,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/88840a9e-26a4-4922-b61b-80b7f6eecf55",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/27f9867f-1230-4801-821e-448d1ab138d1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.96,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.72,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/1e38d3a5-10b1-4db0-b375-28c5bd32a724",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.81,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/acc29237-ee14-4d2a-8fbe-c744ad8102d6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/60eb6434-79f7-4132-b024-7f6f76eac5fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.51,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/020b57be-024b-4bdf-96e2-8147679df443",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.59,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/a40b745a-3740-4a5f-bb11-305ae6d62470",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/986df036-dc6e-40ed-8cc4-10715fdb119d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/b4930ea9-2f2c-486a-92e7-745a56afc9cb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.41,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.07,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/595b5f81-a5e3-4c82-9ef3-d44495a12e10",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps/7f3a6a22-5332-44a4-afd5-49fee47fe29c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps/681821fb-ea0b-4767-9709-621c0150bc8a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps/37e78ee6-f881-4121-a034-080d27b6b8de",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "api.v3.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.46,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.22,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.63,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/3c8854b8-a1bd-4245-ba30-b698b3326cac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.92,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/4ef8bd54-a733-4066-88fa-3669128031ba",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.98,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 14.06,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.17,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/865dd0e7-0f3f-4a63-b42d-56f8786cde29",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.64,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/6ede4e73-d472-4bf8-937c-f3b4a35be408",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.0,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.9,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.84,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.64,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.99,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.45,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.33,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/2312b2f3-0720-48be-9c75-c7107411f9a0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.74,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/8f1c9d7b-f542-4c33-a6fb-aa140fffba0f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.33,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 17.5,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.56,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 52.1,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 33.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/c4792d8d-952c-4ad5-9966-99f34f275021",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.79,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/2bd29595-8204-4aaf-b185-9f19d0be9f77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.94,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.55,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.14,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.47,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 8.53,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.6,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/ec0fdf94-cc2d-42a7-a901-f34783d2becd",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.22,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.14,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/52",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.98,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/52",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.76,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/4d3f4344-a5ea-4980-93bb-decf581f35ff",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.32,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.6,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.41,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.51,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/227656ed-a11d-4695-a223-695e4a9b57a9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/5aff315b-8aba-4f0b-97cc-7a1bae5c6951",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.15,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.29,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.06,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/8de87940-28b3-465a-8cbf-04b3dfddec97",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/014a34a6-5dc4-4040-8df2-1cab85863b2d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.74,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.55,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/3344738b-551e-49b7-aba1-074097c861cd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/4780a23e-c925-48da-b35f-577ff0305932",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.89,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.47,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.99,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.86,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.38,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.59,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/1e6f6219-e450-4a95-83a6-71433e8c422f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.46,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.73,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 18.08,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.52,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/6fb46c40-d31d-4fef-8b84-847770a9f844",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.26,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/77287bf8-528b-4354-8529-4b1869585db3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.28,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.08,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 17.52,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.7,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/d451fbb2-89d6-41f8-a0d5-383448278b5f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.1,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/d4309410-145f-49bb-8ae0-5e0635fc5411",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.87,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/d80d91a0-bc1f-49ab-b800-0e37c21a6682",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.59,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/e3bc6aa3-ef02-4c38-8b47-59a702e2332d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.13,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.04,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.89,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/77572070-12eb-4abe-a241-3ed57c24febe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.18,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/d7aec537-13d6-481f-b8f3-ce75610e6bcf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.74,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.47,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 8.07,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.73,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.35,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/6a358923-7bb9-4ce7-af5b-15512984bb7f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.13,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.08,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.95,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1692419-f4a1-4322-b66e-81bd7933229a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/743aaca6-0069-4ecb-aeea-d4e3664d1d8f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.44,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.18,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.62,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/1de2159f-0447-4c3d-bdfb-84b081c5af06",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.93,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/c7c03749-a993-4e89-9b8a-f8885e8a8733",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.43,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/b57691e2-17b2-4dae-adda-97a5b0399ace",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.13,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/452b70dc-7841-45e4-8b74-d673dc6547ef",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.54,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.72,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.75,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/40a8e689-a171-47d0-9ef6-02b99642071a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/89ca7383-ae31-4e2e-a50b-bf54767e7924",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/4fed3dad-65df-4a6d-a59a-0019dc5170e8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.93,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.52,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/8a577014-e677-4633-92bf-98a455c0c91f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.23,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/8b9c8cd1-97ed-45d3-aeb2-f907228fdc80",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.11,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.7,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.74,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/bc23d3ea-da06-44f0-b955-2f93d9d6e9eb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.97,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/c4247bbf-a4ab-4528-bee0-bab45a75ec9d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.67,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.8,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/095fa6f9-cbf9-4788-a795-7ee387667f57",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/880dd4c8-eaaf-4805-8cba-dbe5d4e3fba9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.31,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/1c440d69-5476-440b-b3a8-989b8633e535",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/cf0b8d41-0401-4419-8b8b-c80d9d050236",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/7f240765-9688-4597-87f2-38a778537ec0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.36,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/ddfa2b60-665e-4fb8-9134-ee3de79bff9c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/c2194dc9-2025-4971-af60-0f7fb48a263c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.26,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.27,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.13,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.98,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 409,
- "expected_hint": 201,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.2,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.14,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.77,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.41,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.13,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/a088c756-c007-4775-9f4e-0a7875c2228c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/e4f5e6eb-d6c1-480e-a1d9-18829cbad3d3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.83,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.52,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.7,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/a5c45b47-5e05-4f2d-bbd1-74a00932ec47",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/a65dac69-3b78-4378-a93b-00b06d517c94",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.84,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.26,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.75,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.55,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/f1267c4e-0b8a-4fc6-899e-43713bcf70a9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.13,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/734e44c4-b939-467f-ae1a-1ba000ee7f3b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.08,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.84,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.23,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 19.9,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 15.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/d058258b-7322-4714-aff8-87c41baf1bcb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.78,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/5bc2fb91-364d-4eb0-9897-1665f95ac452",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.67,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/fbdf8baf-bcfc-4bc6-aff4-e43d98ad10e8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.44,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/100c31f4-4214-41f9-95f7-c10d7a342856",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.32,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/5cd56e97-6362-42c6-beef-03f70cf37b57",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.79,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/6dedb3fb-693e-4044-a50a-5a7ca30c0eba/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.18,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.17,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.29,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/4483c975-cc35-425d-8c02-afd13260332f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/f2383181-6a40-44b9-8600-c21071b1d23b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.88,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.84,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.46,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.07,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.97,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/eeebd800-ddc3-47a0-a36c-1b510bcabe57",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.6,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.8,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.83,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/93ecabda-f70b-4580-a720-0e6cd4e89c2f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.5,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/b883beea-236f-45f5-8bd2-cc213a8d3aaf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 16.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.23,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.58,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.35,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/79092324-6d67-42d2-b802-9891328a6023",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.95,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/dc9fe1a3-48e4-4011-8bfe-157fa1bd5528",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.97,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.41,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.66,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.11,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/688c6f10-88de-4305-8775-09a3b26fed1b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.93,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.36,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 19.97,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/15ed75dd-e88b-4044-9644-393c35ee14ec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.48,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/6ea1bf35-7598-408a-8a89-db85601b1f3c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.78,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.92,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.59,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9e8a5837-508d-4b89-80de-79440f20c6a7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.62,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a97be79e-8447-44dc-84fd-040db10d1833",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.8,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/6ead751e-1554-40cd-87ac-f1e4c78e2fbc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.96,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.62,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 8.97,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.15,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/3b67b0c2-0405-4842-975e-370f0cd11d58",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.3,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/96607c06-f9c9-4791-b391-0a614c2f7c14",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.38,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.16,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 18.35,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/e123ea46-c71f-43fc-9fd9-1a0585a70463",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.86,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.53,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/bfa1f330-f92d-4d13-8bea-87eb3ff4ac88",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.23,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/22584263-f161-421f-9911-68213db279c9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.99,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.78,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.72,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.11,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.13,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/52b5aa13-8dc1-4222-9e5d-13d690a01202",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.54,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/b83e890a-d9cc-4a5c-8e27-8915d7cb696b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.04,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.86,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.43,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/b8c71d8a-287f-4131-a2e2-2c4037171400",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/033e1490-3a32-495f-95a9-3e1a51e58d89",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.47,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.09,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.14,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f0b221de-2851-4ef3-928e-f35984e2761d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.94,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/7656e1b1-849b-464f-8972-2be8f0024b3b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.75,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.76,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.37,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/89b1f7f8-19d8-4663-bb0b-1ce1a9570523",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.48,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.56,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 14.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.3,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/d6251d99-6f7f-40fa-8f21-1e8af565929c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/e6866c85-d93c-4beb-b86b-e1187a009935",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.89,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.04,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.04,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.22,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/b71f3bf0-09c0-4b7c-8327-22e0050753d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.04,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.71,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.58,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 23.77,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/f1a9db03-4c98-4943-a4a6-d7e8b3a6e9e8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.21,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 21.45,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.6,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.95,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/4f32dbfa-8c0a-4924-8842-d31772569788",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 17.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/4a8fdff6-a7fc-4a40-846f-8d229aebd9bc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.87,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.54,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.7,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.59,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/2d44f939-525f-4645-bc44-21ec50934905",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.89,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps/dc703513-adfd-4321-a184-04033dfecf83",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps/c6eae2e1-ea56-48b9-82e7-93376ec4e2c5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps/26966191-a41a-4bb5-91b0-608fcbf1c6fc",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.15,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.api.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 23.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 21.16,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 37.38,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 26.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.08,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.92,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.28,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.38,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.44,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.26,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.86,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/52",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.74,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.67,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.47,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.37,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.3,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.61,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.41,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.89,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.35,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.92,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.35,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.73,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.77,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.98,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.21,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.83,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.35,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.26,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.21,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.77,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/40a8e689-a171-47d0-9ef6-02b99642071a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.14,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.57,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.84,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.41,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.19,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.21,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.73,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.77,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.6,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.57,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.94,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.15,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.56,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.1,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/d90a378d-f30f-4210-ba5e-4014a1a19e05",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.48,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.01,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.6,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.9,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.08,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.69,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.59,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.76,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.6,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.29,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.43,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9e8a5837-508d-4b89-80de-79440f20c6a7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.01,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.26,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.97,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.37,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.79,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.14,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.18,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.81,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.04,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.45,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.04,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.19,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.63,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.44,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.57,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.51,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.71,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.3,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.27,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 24.15,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.57,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps/0b6c4bf4-a41a-48cd-9901-8a7316f0a083",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.02,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.api.v3.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.29,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.81,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.51,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.2,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.66,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.94,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.44,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.29,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.66,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.4,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.31,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/52",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.5,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.72,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.76,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.18,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.47,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.32,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.31,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.99,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.72,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.61,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.51,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.09,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.83,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.9,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.28,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.89,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.92,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.35,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.36,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.85,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.97,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.81,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/40a8e689-a171-47d0-9ef6-02b99642071a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.3,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.74,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.95,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.57,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.07,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.64,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.71,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.14,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.52,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.41,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.38,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.35,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.24,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.12,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 42.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 23.44,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 57.36,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.51,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.77,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.41,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/87333349-8b12-4cdd-8000-f2fc5b99d501",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.82,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.39,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.08,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.37,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 16.49,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 34.45,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.19,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.52,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.99,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.57,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.87,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.28,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.45,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9e8a5837-508d-4b89-80de-79440f20c6a7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.6,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.47,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.43,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.91,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.05,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.83,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.95,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.87,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.21,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.4,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.65,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.26,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.33,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.18,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.79,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.81,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.9,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.99,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.02,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.16,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.68,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.15,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.34,
- "detail": ""
- },
- {
- "series": "3.4",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1/steps/1ac4c986-931e-4c9c-926b-37f7d6a104a5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.17,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "api.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.22,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.77,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.23,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/441d3e56-f507-465c-bdd4-e53f5814aae2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.01,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/5c3f61e4-bc8c-4b3c-a456-adb665472d87",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.93,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.6,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/90c92130-2243-47cc-bd7e-f98d45f6ccd4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/0b1bf824-2c85-4392-add5-2d6e671b6f34",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.48,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.51,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.32,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.5,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/5b6a3f2f-e778-4163-820a-cb0e3bf4d7ba",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.64,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/6a4c040a-37cf-4af3-9ec0-930eee601727",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.29,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 14.91,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.87,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/10838bd5-464b-4012-8a64-8bb6c8920fe1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/835422ce-cc9c-41bd-8abd-cf45b7af2286",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.19,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.63,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.19,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.75,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.56,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 11.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.57,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/e91ded88-1a49-4337-8c0c-c788fb7ead28",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.97,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/53",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.15,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/53",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/9b12c1ff-b302-48da-bafb-b5e1b48cf577",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.39,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.97,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.97,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.57,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/406134a9-8835-45db-b304-b1439ecea955",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/967dc83d-07b5-48b5-8b1e-c424c9a1d9de",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 26.57,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.45,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.93,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.86,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/a1552ee3-f76c-454e-b775-91dd817d1ddf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.08,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/f72164a0-e5bf-4533-96d7-84a295a663bf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.74,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.47,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.42,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.92,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/7bc9ace9-e404-4e19-85ca-9f8e82196073",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.04,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/327de848-f694-41c5-b991-3e8f40ec392c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.92,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 37.13,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.3,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.99,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.73,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.57,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.55,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.41,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.5,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.09,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.25,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/631f8780-12b2-4c04-82b8-c700bb331235",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/ec2971a7-b024-4935-9f0c-2e85f4b81dd6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.55,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.47,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/629ff5fc-d589-4c97-8475-1d6636710e1a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.89,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.27,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.2,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/09df8368-fdc0-466f-92e3-ce7027c41421",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.38,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/e9fda177-0c3c-4a87-b81d-46a7914f4162",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.41,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/e0f4b56e-c79d-4f33-96ae-b3a91afcfc27",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.3,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.43,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.05,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/3467b236-a009-455d-bac5-ac3c4f5f8a02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.87,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/7db944c2-a46e-42ea-bc30-557f4701488f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.34,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.86,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.45,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.67,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/aa945620-ff39-4cf6-ab4a-7816e57f9ff4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.01,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f7eca48d-75fa-477b-85bf-f7ae70a8adbe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.08,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.53,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/4455232f-7f2e-4e87-a403-eba84b9b97c4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/7e4ba926-b215-4802-b751-1b6b1987498d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.83,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.35,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/6a142b83-6e72-4fdc-9a5a-605a1de2cf99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/ca779721-ddea-4fed-80f7-47a543b6e0fc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.11,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.17,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/03e72aec-e20f-4b64-bf7d-97d8b1fb6b17",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.85,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/5b552384-03b6-4989-a9bb-4b816a9b3a69",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/9791007a-ff30-4f2a-a33b-a67e2987cd29",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.64,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.23,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/6fb75e50-a5a6-4924-bf3b-79c467740ea0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/7db64660-e545-402e-9575-f380a460d64d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.57,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f72c662e-3c28-4a12-bd60-b2c8db0e0a94",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.21,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.45,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/a7d35d34-7bbd-480b-a432-7c44ba3445fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/36c76be0-d7f7-4fec-9d92-e7aff847f1a5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.35,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.78,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/269eadf2-823d-4700-9295-d4f5c8393a74",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.5,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/b323ee12-ff83-48e7-ad57-ef3d9c5886c1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.84,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/a4e71ad9-3be4-4fc5-80b2-a3c81ba6650c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.15,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/d8748825-a10e-4420-85db-d28e4d53a4e2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.6,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/4ad06099-b437-4eca-883a-27c8b255fef5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.22,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.18,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/8ec2f59f-ab4c-4c02-9a38-1f4837dcf6ed",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/f2b3f81c-f74f-42fa-9b9c-2ab88e9391ad",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.93,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.77,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/f72a7f6b-fb98-42c9-974f-f616dbee794d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.06,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/b3c7a8e0-d181-40d2-ae5d-bde490f60a79",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.33,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.77,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/28ae02a6-db0e-4ede-a001-d3dbe3d77b3a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.89,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/378e4544-7dd7-42ca-a402-90027bd6aa6e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.39,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.81,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/e611e837-1920-42c9-af32-80e25a2f94a0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.72,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.15,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/144417e4-451a-4372-a0e7-2400c0a09ba0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.06,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/7d3c4acd-c08e-4f73-9bde-d99477290905",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.23,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/a873addb-53bd-4f61-841f-bd4052569040",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.11,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/f4a6dc49-7c5e-401a-8b01-1c87e02286e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.15,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.76,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.82,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.18,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.17,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.11,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.59,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.59,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.32,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.44,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.88,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.93,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.54,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.22,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/cf783517-6989-44ff-abbf-b5d43526c974",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/bb777c0b-0992-49aa-8607-5941339906e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/a9af9c56-291f-4f97-a49c-8fea2e8f1481",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.95,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/36707402-becd-48eb-ad19-19b4c78ca018",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.45,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/e69e8c79-e225-441c-8221-ecc88d060595",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/de04b72d-648b-4a3c-89d8-12dac0bd4e4e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.08,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.7,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/4bb1dc4f-cf7d-4df0-b2b8-5d4eadfe6e6e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/4b3c5501-a0f2-47db-a178-c7dde9c6c1ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.43,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.66,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 13.81,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/70e2d343-e87a-4fe3-88d9-3c5f40c7f014",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.93,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/55421f44-ab86-4ff6-a199-662ce6c8edff",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/ad17e863-7258-4efe-9e3f-43c5cf5a2d48",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.18,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/f39277e9-c1ec-4124-baa6-7113af5c8543/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.89,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.76,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.08,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.54,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/f3dcf468-019f-454b-bb5c-62d0c9c4252e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/4e643142-3d00-452b-b4bf-6026509ca44b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.29,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.86,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/4624c223-5cc8-4f26-9182-def0a08c3236",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.73,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.04,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/7d593e0b-6981-409e-a7da-15614938d1a0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/daa23df8-b5f7-4d97-8abc-74769b41e023",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.76,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/e34de762-1517-4da6-b4eb-5844fc92768a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.83,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.12,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.93,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/bc83da6c-f5a0-47e0-9691-1a4a12ebe9ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.47,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/54982592-7f6e-4ad0-9a1f-45911b512f05",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.7,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 16.17,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.16,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.86,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.57,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/2f76c23e-0312-4413-988a-21475cadb634",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.81,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/a8f3c8c5-d949-45e3-a680-d952c98de5f0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.86,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.9,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 16.43,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.13,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 27.76,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/8bab1b4d-db7f-4712-ab89-3337c674e56a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 25.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.66,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 19.9,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/a131a5e2-4e4c-43ee-b69b-68bdfc9e743a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.06,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/88bd49bc-4bfa-495a-b45a-cadca8d0e6c4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.78,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 19.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/4362e5f3-0a94-49ce-9d3d-c6c4fdcb2dec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.51,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/65b8ca17-7636-4c7c-8577-53b06cc5b6d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 43.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/29f5fe73-9847-4f3a-b806-94671ce51d79",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 43.08,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.73,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 8.72,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.21,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/2f7f4be9-105d-4888-bd9a-15c5cda89f32",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.79,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/fe9001da-1685-4bd2-b6e4-b79d796e9391",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.16,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.48,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.6,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 17.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/a1fa9701-2825-4d12-bfd7-119054b334f4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.91,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 22.75,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 20.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 39.74,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/b20f548e-5e21-40ec-a24e-98405d6e93c8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/23a1b416-24f7-4335-96d7-8e791deed6c4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.83,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.85,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.82,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 13.58,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.66,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/645c3ee0-2de1-4449-a251-7aefc5795626",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.21,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/d2141438-c1ac-41ac-b0aa-760814057a13",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.58,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.22,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.18,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.96,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/db6a62a5-09c4-48ea-b637-40b7210002bd",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/a9626a08-1d11-4fa7-bd53-c2766b7d61a9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.53,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.29,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.98,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.78,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/0fb03af5-804e-47f3-b625-3cbff61766d1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.11,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/bcb3e0a9-ee39-45ba-85d4-a4efa360867b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.87,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 19.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.6,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.15,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/798def54-8989-430d-bb6e-b79a94daf4c5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.22,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.84,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.62,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/cfacce9b-1d3c-4d63-a1b9-0d0dab4d695c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/33a9ec9c-eb34-445b-9ef0-a13831d5613a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.5,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.47,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 22.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/0ab92df6-273b-40d7-bce9-7ffc51f4564d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.97,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.67,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.76,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/73a134ae-1370-40f2-a788-5047e2a6dd1b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.15,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.57,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/8f2c8a50-c0ce-4571-be68-2dcefc38e83c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.6,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/977d67ed-f778-4ba7-943a-44f04ae5d90c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.29,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.87,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.94,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.46,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/192846e2-2963-4634-bb8d-f4a0241e0273",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.82,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps/85d1eaff-4e5c-439c-a65a-8606b5277d84",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.98,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps/bc9d1e23-2cc0-4fbb-a8ed-e3c493e70b26",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.69,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps/7d2d8986-766d-4237-9634-79e222e41a2b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "api.v3.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.64,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.91,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/219a5f54-c934-41db-a158-af79397e3b00",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.11,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/615a88e0-d943-4015-a1f3-9f693928c6f4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.35,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.83,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/1a1219bd-cc4d-457e-a03d-b0c967aafd68",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.66,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/d9ac5f26-f716-431d-a5ea-bc50f060780a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.51,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.71,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.26,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.76,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/47aefa1a-dc15-41f4-99dd-dbd8c8ed2abe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.35,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/8ada3f5f-6694-418b-873f-69a1fc4066c9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.44,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 17.04,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.85,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/acac9d1b-8150-4dde-b9d0-cb612ed09146",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.59,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/a191272d-375e-4e55-9dd8-2f58acf9e2c1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.9,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.16,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.05,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.85,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.09,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.63,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.42,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.79,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/4ce43fe0-57d3-42d4-aab8-989e38228308",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.9,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.05,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/53",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.63,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/53",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/a4687397-c951-4d30-9d91-8a178d3f6a85",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/e0e5d670-cf09-4a95-84f4-40bcf5fcf4de",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/0bceb255-9693-4a8b-bdc5-43b6ad580ea5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.47,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.46,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.51,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.55,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/4839c685-475e-40d9-a03d-5dc9117a071b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/c49b9049-927c-47a7-bf9d-910fd7393e07",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.9,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.12,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.85,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/c034644f-5722-4eab-804a-691162372f06",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.29,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/dd80a45d-457c-40df-a475-2881049afec1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.96,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.79,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.72,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.45,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.89,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.97,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.97,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.08,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/instancetypes",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.13,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/instancetypes",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.64,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.85,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes/deadf425-0c35-46bd-9fc4-fdda5f705810",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes/e0329360-bca5-4b1a-a278-40c5fd91434f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.96,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 23.46,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.92,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/0651f0f4-11ff-4344-ae06-51cf9b77d091",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.63,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 21.54,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata/09df8368-fdc0-466f-92e3-ce7027c41421",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.85,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata/6346cb8e-ab7a-47c9-b622-70aaabde068c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.54,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata/fca2873a-5b36-45d6-8b8a-9b58484621d4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.63,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.01,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.16,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.73,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/431462ef-db97-4ea8-9402-e38f02a07f17",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.95,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/182d3b7a-892b-4706-9f1d-52e98f7438ec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.88,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.78,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/07e8b955-9ccb-4730-9da0-68491588f899",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.11,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/1fdcadc9-b54a-4628-b157-2d26de28df3c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.93,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.64,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.67,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/9857f124-9a99-4897-b526-b4cea5cbf9b1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.58,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/c03765d4-366c-4b21-b5df-10545414c4f3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.81,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.73,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.99,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.47,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/0f79a3b5-9c0f-4bd0-8bae-976488b42c8e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.79,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/ae0066c9-f085-4eaf-9769-351efde11770",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.46,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems/03e72aec-e20f-4b64-bf7d-97d8b1fb6b17",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems/c0bc6a05-47ec-4e58-98a0-75b8b7073a15",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.9,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems/ee30b40e-4f89-4817-9a2a-0a83485175b5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.12,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/d160f1e9-21f8-48c8-9410-15ba0958c640",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.25,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.98,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.41,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.68,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/88d5719b-d0f2-46ac-8639-506ba8815410",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.89,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/128fac93-d3d9-4f0e-a329-0f0f1e037da8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.88,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.5,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.22,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/9670f63d-2c93-4403-8285-f690b4583dcf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.94,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/fa5fee33-dc9e-4e46-ba0a-e210ab8f7a05",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.22,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 25.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.62,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/945a78c1-808a-4c6b-b150-8d055926eaea",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.34,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/9b571f07-0f94-468a-aee3-9aadf0f1c2a3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.5,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/a4e71ad9-3be4-4fc5-80b2-a3c81ba6650c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/5a676df1-b5b6-4b3b-a650-582bcdfea850",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/3b5ac8ec-da59-46ee-9985-cf38ea1b5eeb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.79,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.77,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.33,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/68942a27-29dd-4fc5-8423-4c7eefccc8b4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.85,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/ae71cc62-68db-4fbc-96b8-90e061cf54cd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.45,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.84,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.78,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.73,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.29,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/d9b77d15-05a7-4159-8611-dc4c1403a555",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.84,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/274ee374-04a8-4d1d-acde-c8a9d9a258e7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.64,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.78,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.09,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/1683f824-c614-4254-bfb8-1ddf887bff0f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/e5df30bd-2cda-49db-b842-b2e846cdcdb8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.67,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.55,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.91,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.25,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/f8be3538-eaa6-463e-bdb5-cdf8d69faaca",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.84,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.68,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/c5b7e432-841d-4a5b-b0cc-c5a35043b725",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.47,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/604cf23b-3827-4d86-bd96-93bc898cc2c2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 14.15,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.01,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/7d62c2f0-88cb-41d9-8056-fcea92995cc1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.74,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/ffe40882-696a-4f41-bdb2-44a58212e2fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.53,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.93,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 16.34,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.7,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.23,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.97,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.35,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 409,
- "expected_hint": 201,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.46,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.17,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 25.93,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.68,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 17.41,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 16.33,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 38.55,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 42.46,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 50.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.08,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.33,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.34,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/d28056a5-da98-40be-b547-4e2f36a148a8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.59,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/a2e21ac0-d959-4674-bcfb-0e2fbe7ed2a4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.23,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 18.83,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.35,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/e468c0ae-78e2-4614-962f-e27893ef7aff",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.17,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/c8501c2c-4247-4bf9-80c4-520fbddc2075",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 19.63,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.84,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 14.75,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/7d079361-fbb4-4c2f-9781-e59c7c1e7678",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.11,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/1ccdecd4-bcef-40fe-8022-97e9b8b55c31",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.16,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 26.96,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.18,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.51,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/0644e5e5-0b5c-4a9b-af48-75c22c40e100",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.48,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/f2fa23b5-c6f7-42f0-b5a9-316c2ebe3f75",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.26,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.91,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.57,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/0941d878-c336-4650-a40f-e79d8a9f4f45",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/c20266b2-54cc-4cd9-b4bb-54255b7498bc",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/67574101-ec84-4334-9cce-d7043102fbef",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.91,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/12492551-3a38-4222-9e82-c4846e28ef8e/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.85,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.9,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.38,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/39b712ab-9afd-45de-86e4-ecd6bc6555f1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.12,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/92f70102-b0a8-4fa0-bf8b-d9b7ebff3b07",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.77,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.51,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/245d3173-089b-432b-ba0b-03fdf673e017",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.32,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.57,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/7d593e0b-6981-409e-a7da-15614938d1a0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.79,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/4aab5706-c2b2-4523-95d9-f2b76d0e2c12",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.2,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/95fcebb7-0497-4ecc-bdaa-5a933bfaed85",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.11,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.04,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.09,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.23,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/ece7e399-88c8-4fab-a23f-e9a16c421761",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.57,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/72be62b0-88ad-4b65-a349-329d6a66f4aa",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.75,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.22,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.41,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.64,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.7,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/69601861-0edc-42ec-97d8-dc3636a6c9a6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.18,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/f7d9418f-9962-4007-8722-00b73a5f26ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.89,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.72,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.78,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.29,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/49d95de9-9c38-4573-b1fd-30e0dc243286",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.99,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.92,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/f7a5d8a8-0708-455d-a133-ba096234f114",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/5b3d8675-10af-401d-9f0b-07e708ec112d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.68,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.51,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/4362e5f3-0a94-49ce-9d3d-c6c4fdcb2dec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/b71c6363-3626-43e7-8d1d-adcc86ce1f17",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/cf70104a-a211-498f-8bff-70d73d81d54a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.64,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.01,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/0f8e2628-628e-4256-8e48-3870a859196a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.99,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/22297a4a-4592-4192-8cc0-449500c73df9",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.5,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.32,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.55,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.43,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/aaf7b2d7-be63-4a25-8f67-f1708e53cc9e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.35,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.66,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 4.29,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.59,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/a6510b4c-0654-4642-a52f-c1f6c468a0ec",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/3dcd5a60-06d6-4cae-8b15-b3d319c70bb7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.53,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.54,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.96,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.94,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.27,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/7b00bee4-4a11-4984-b715-948f83cfda6a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.54,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/a3c67bff-a56a-493e-a01a-1ff6568bd7d1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.42,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.89,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.48,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/9e650dbb-461b-45c1-a8cc-a23c37d86331",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.99,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e9288494-c6bd-4f2b-953c-da66beb2aea4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.98,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.15,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/c81746de-5acb-405e-bb40-af92d75a3311",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/25921b1e-9af0-4939-844d-a81b30ead2af",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/effd1b1e-abb4-4781-a9ea-4481fedd722f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ef304a62-e0b5-403c-a0ca-fbf6110b8af3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.73,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/27880697-607d-4fcb-a7cf-a079e5044191",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.58,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/70ba0783-065e-4fad-84d5-b64d6caf8248",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.88,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/0953c419-230e-4797-ac53-769c7ac9c388",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.63,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/d11ac520-c90f-4ea1-8741-3d2ae33cdd54",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.2,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/92016b8b-cfc9-48d0-8669-4a3bc80bfb1d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.94,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.33,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/e56040d3-abad-4212-ab85-bb6c8d44364a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps/8024c266-1efb-4dd6-957c-783fde5e1457",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps/7a53a33f-6691-4614-8e90-5c504136b5eb",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps/298fec3e-f13c-4b35-8c31-b5a861112a3b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.api.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.56,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/53",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/09df8368-fdc0-466f-92e3-ce7027c41421",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.25,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.39,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/03e72aec-e20f-4b64-bf7d-97d8b1fb6b17",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/a4e71ad9-3be4-4fc5-80b2-a3c81ba6650c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.05,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.27,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.8,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.25,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.04,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.23,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.59,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.09,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.03,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.15,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/2eee5429-e73a-408e-b808-e72c5dfa3d7b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.63,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.13,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/7d593e0b-6981-409e-a7da-15614938d1a0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.54,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.24,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/4362e5f3-0a94-49ce-9d3d-c6c4fdcb2dec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.02,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps/4908ec04-f8bf-47c0-9c4d-1adfbdbd8c22",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.api.v3.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.08,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/53",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/instancetypes",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata/09df8368-fdc0-466f-92e3-ce7027c41421",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems/03e72aec-e20f-4b64-bf7d-97d8b1fb6b17",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/a4e71ad9-3be4-4fc5-80b2-a3c81ba6650c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.69,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/d2d124f3-6311-43fe-b0d8-b79a720437e2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.9,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.37,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.38,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/7d593e0b-6981-409e-a7da-15614938d1a0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.47,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.7,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.81,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.19,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/4362e5f3-0a94-49ce-9d3d-c6c4fdcb2dec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.25,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.09,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.86,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "3.5",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837/steps/a05da4df-3832-419c-a783-c8678498b8a0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.67,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "api.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.42,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.5,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.63,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/def7c47a-ddde-44e7-a157-077a297ee4fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/b1438670-f716-4683-a171-3957aa3bf727",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusterlevels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.54,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusterlevels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.17,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusterlevels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusterlevels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/73b12e84-5e0b-452e-8348-0fe916eddae6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.8,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusterlevels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/a227227d-b899-4a2e-8474-32807b4d85bc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.62,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.77,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.38,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/fc67ef8b-d23d-4894-a2bb-f35b31ea68ac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.55,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/0863467a-4470-4a27-bdae-2886f6207883",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 68.37,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 81.54,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 67.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 59.12,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 200.73,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.19,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 17.64,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/50b67053-4477-4e4f-8287-0f0289a26d5e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/dba0ac21-0ca3-4a7e-885c-ee2c4ac8a66a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.77,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 20.37,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.61,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/928cd86d-0f7b-438a-9024-bfc903e966ae",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.66,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/bc85890c-f62c-4409-ac23-732878678c0f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.99,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.87,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.42,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.88,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.92,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.44,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/c4bf3fda-01b3-4fb9-8b12-be0c19956866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/54",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.57,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/54",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/42b84e07-6a6e-4822-b547-9c678f9e2adb",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.73,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/94d9d3b2-23de-4e1a-ab2e-9783405873f6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/f94122de-e09d-4d5c-b784-c6a2e84bf7af",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.21,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.37,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/55d45986-957a-4ee4-aa9a-f2cf34450ade",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.93,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/c6a19669-31ec-48e5-93f7-40f3bc6616de",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.55,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.2,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/0d146037-ba60-452f-aa55-cac6e7ee6828",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.78,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/0e39a4b7-2ee0-48f7-b9e6-fdc8b709294b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 30.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 62.05,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 32.03,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.67,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.17,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.02,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.2,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.74,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.85,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "icons.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "icons.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "icons.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "icons.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/16750fcf-908e-4a6b-a714-4cc01ad0afc7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "icons.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/37d1d041-07df-4722-afb6-afd130479c55",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.02,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/1dd8bf16-d091-4d57-b272-2af9da3eaee6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/41ed3d74-33c6-42ed-98a6-c2fb8a5bfe71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.89,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.42,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/58139d34-f3aa-4be4-b4de-c8680b1184d0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.06,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.92,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/26df5a2c-3732-4d5c-a82f-e8d6c1c8aa21",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.09,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/5101bc73-8d3c-47b8-b144-b3706ee2a16c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.7,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/858bbadb-6e93-49d6-9393-2092ffcdceb2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.37,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "macpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "macpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.02,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "macpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "macpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/48f208d0-24ca-4f0d-bc1e-6d427cb38e6a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "macpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/7c8e7d29-e414-4fc9-b7d7-c34af862d0e8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networkfilters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networkfilters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networkfilters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/f2cb2f7b-b4ed-47ce-bcbc-b5015ff9a741",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.22,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networkfilters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/98bb1c7e-b216-48b3-b7d7-56cce593d443",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networkfilters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/fec60637-9a06-48c8-b88e-17c496813fc2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.57,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/6422ccd9-5ef2-46ab-be2b-4b17a1f7abeb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.78,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/6f10d3b2-b530-4029-94df-cc209925e01d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.97,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/cff892a0-761c-4805-acd8-a18acaa51d75",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/9dc326c0-4c90-4ca5-a3e3-0d412d1b0a7c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/9c368226-3c63-4492-b996-341be85b76ab",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/8fccd13d-1a3f-412f-9662-9a6af66aa232",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/2747d066-1682-4ee6-8c7e-d73df6797449",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/b0e3b0da-b019-4166-a9e5-e37782bef6e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.22,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/17415db0-2d19-4450-a6e0-ca1e12a7f2bf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/99902693-fe90-47e6-b0ed-616707ca59eb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/fd38cb51-7e60-40dc-b03b-ba8045a74905",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/2ba8c5af-ce9a-450a-aab5-de1dab3e1ac8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.94,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.02,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/400107ae-0cef-411a-b788-283ff4149105",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.4,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f96bd831-e4e9-4037-8629-d7b910b2d268",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.47,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.44,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.17,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/de6028c5-7776-4e7f-9405-6e8c64d68df5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.49,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/c508da27-f280-447f-b423-fe05a98fd3c0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.41,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/d7cd622a-1e9e-42f8-9438-41af941b284d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.37,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/364046b7-0b34-4e70-a09d-e954582ab86a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/64eb0822-b478-4829-896b-d7361a773079",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.67,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/cc50bdce-6414-4a5a-89c7-0c707f09a490",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/f33d75ff-8eb5-4f5b-8ccb-94d0202a9eda",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/03ef75ff-b1c1-4e04-8e4b-5136859c30d3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.2,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/f1bba1d4-300f-43f0-94b7-ff28a308f391",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.47,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.99,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/c09bd6e0-3759-4ebd-88b9-1c9e07a91782",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/0e73ea8b-20f8-49cf-8abe-a949862a82d3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.93,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/fd202803-b426-4a93-8ac6-85b38381c06b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/26ffe70b-d162-4320-81e3-d07da134d67f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.45,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/a5457239-78cc-4067-a459-dcff38f649b4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/5a9a6591-3e77-409a-af7a-9f92a3dcc230",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/39d03410-1bb8-495c-a258-80e4bb012fc9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.87,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/fcbbc03d-3550-47c4-bcdb-8697605506ff",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/1da51375-2c48-4736-a3b2-6c42bae168b6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.47,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.92,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.73,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.95,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.2,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.89,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.2,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.89,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.47,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.25,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.12,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.39,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/4f263be9-263b-4b5b-8f82-c07bc18e8c7d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/daff481c-3d94-4c64-9003-984780dec411",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.5,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.54,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/ad50859a-18df-44ba-9ea1-6eb0fa628322",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/85e217f0-e659-460d-b0a1-cbbe1b6caa0c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 60.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/0156163f-d475-4a22-b4fd-a2b67e1d2865",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/1fefda11-cc6d-4f0b-ade2-b879430fd685",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/e9c6206a-d225-42a0-894e-b6c4dc7c49ea",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/3bc3fff8-9a8a-4161-934a-3e7f5e765f83",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/ba00a961-ba2e-44fa-b3c0-aaaf80f37150",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/5e9de039-c769-4038-9256-90d926b230a9",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/ab38162c-8191-4d59-a07a-829029c9547c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.21,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/9d1bee6b-0a39-419f-b75b-8c3fb6f8ce68/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.97,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/fd814894-1811-44a2-9f33-74cd4db1c286",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/32e33e3d-7e38-4ab9-92ed-e2842d1ea1b5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.21,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/06b7bc9c-1008-403e-9c41-0fd9394ebf4a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.78,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/20ae3f8e-8ebe-4b3e-a86e-719e2e09af4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/eb6c986f-cb54-42ec-85ce-c47b1d23a05e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/25b75124-ba9a-4cb6-84f5-ac3a4b26bf30",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.72,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/3f0a2f83-9a9e-4032-8258-a919d37f0f66",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.77,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/df779724-f889-47b7-a8a7-831c09b4add6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.14,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.98,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.29,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/6c11fbc7-1be0-48f6-b87f-9e89373b8d7a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.22,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/df727758-a31f-4b69-9690-9bf7f9c66d0f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/24bfbc77-a9b0-42a0-9e8a-ef68648ca7ac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.41,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.03,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 85.4,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/d2949731-54d2-496d-9659-824f9df9377f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/108ae7b0-35f2-428f-a7d0-05301a09a687",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9dd9071f-db77-4dad-bd0f-99d6ae6592fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/4288da36-698d-4ca8-b622-233bae5361e0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.2,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/d2963cc2-1d35-4a3c-91cd-4aa757d878d3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/035baeba-1418-45dc-acbf-f92b8b64d624",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/843371d6-dc58-4447-b3e8-62cd38d3a2fc",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.61,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.73,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.16,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/8c1fd54a-483f-4579-8947-48f94ebe87fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.02,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.97,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/84c970ee-e6a4-495d-aadf-ab92bb5e2e92",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/1978e690-784a-4032-ac1b-44e0c8a381a9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.41,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.09,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/bbaba7e6-8b65-424f-8ca5-238a74b6fc62",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/ab34506d-e375-4911-bb6b-956df3560171",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.47,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.78,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.97,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/f5082fd8-6014-47c1-91db-f3c6d4bac47d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/f3786efc-5881-4232-a5d9-1fd691557785",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/8fb09711-c074-4f7b-a096-65f363948f7e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/762b9b4a-b7cc-4426-9f75-ddc7e8d7ee7b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.25,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.18,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.99,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/f6983c06-d816-41c4-ba93-4c6b7252d429",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.93,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.66,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/d497171d-fdd3-4bcd-8403-8f528326226a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/514e09dc-e1e6-4980-bd45-ad2fa9d8a2a4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.99,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/425e031a-4ea4-4257-8465-a2731ca3eea5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.63,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.64,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/db778273-4ad3-464c-929a-f8e371fcd8b9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.1,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.62,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/04323665-99db-4360-8f9f-ddde7ae6d582",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/f21c1f81-9400-4bda-a345-c8f8d46e8630",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.77,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.57,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/a1a3e043-808a-4870-b801-05642bf36920",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.25,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps/b5b42f35-4af1-48c2-a64f-5f7c7039ce51",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.7,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps/cf8c0536-885a-470e-b3dc-54618c425023",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps/7cf83474-fcfa-4dcd-ab37-eebe77e1630e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "api.v3.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.33,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.03,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/15b7ff97-a565-4160-ad0c-5710da8388f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/d7bbc03b-3f23-472a-bf12-71fd073c68ac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusterlevels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v3/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusterlevels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v3/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusterlevels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusterlevels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusterlevels/103abd11-b58d-4b74-a802-ece78e682a42",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusterlevels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusterlevels/06025c54-b3e6-4651-9ac4-24468a831551",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.85,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.65,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.65,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/046b4017-e4fb-443e-8a05-27596cdce9ca",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/a46f772e-93a5-46e5-9d68-69c64d2de235",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.33,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.09,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.12,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.54,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.45,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.47,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.1,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/d3277a1f-7f52-409b-8410-8084453ee59c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.72,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/8154c197-4edd-467c-9c17-a157d78e287e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.55,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.73,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 13.48,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/e23b4689-1bd3-4eb3-83bb-95c64d606b05",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.41,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/47781128-c4be-414c-9aad-accf0d4f085f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.09,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.51,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.15,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.88,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.88,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/389a41df-d508-454a-93d9-11aab7c4a8d0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.95,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/54",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.33,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/54",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/7f5932e8-0bc0-4b00-bf9f-1fde8f8133b0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.6,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.73,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/85e723e9-7da3-4188-9fae-e1589e4d6cbe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/3ef035b6-a57d-447d-9f2e-9b4cd3e42a8e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.97,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/212ba20e-76f7-4270-a16e-b9d1f8e27972",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.85,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/f37b2847-4ba5-4d5a-8890-790f8c1ea3c7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/4e937b23-75e7-4964-ac25-9c9def86e471",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/a398d63e-d536-49de-bbfd-1a07163f1b58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.37,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "icons.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/icons",
- "path_resolved": "/ovirt-engine/api/v3/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "icons.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/icons",
- "path_resolved": "/ovirt-engine/api/v3/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "icons.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v3/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "icons.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v3/icons/8ae0bb7e-0256-4462-8dfe-1cd7fb623254",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "icons.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v3/icons/8c91da90-37c2-40c5-a7d7-9394a60146a1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/instancetypes",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/instancetypes",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes/70a36642-9895-4fb0-ae6c-90c1b6e0758c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes/51d67aeb-ad9f-4cfb-94a0-541d60823ecd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.85,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/92741a45-6ba8-46cf-b6ac-be8b195dbe65",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata/26df5a2c-3732-4d5c-a82f-e8d6c1c8aa21",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata/f4d8096f-9f9e-41d2-977d-31889d9c8ad5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata/11c130aa-ce92-4f87-8f03-57c170f12355",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "macpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/macpools",
- "path_resolved": "/ovirt-engine/api/v3/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "macpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/macpools",
- "path_resolved": "/ovirt-engine/api/v3/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "macpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.21,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "macpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/macpools/b6fc88ab-6244-4d62-8843-dea79ad6fda0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "macpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/macpools/8f113ee9-6b4b-4b88-9c2d-e94c0b09fd64",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networkfilters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networkfilters",
- "path_resolved": "/ovirt-engine/api/v3/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networkfilters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networkfilters",
- "path_resolved": "/ovirt-engine/api/v3/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networkfilters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networkfilters/f2cb2f7b-b4ed-47ce-bcbc-b5015ff9a741",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networkfilters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networkfilters/42ef103a-4a84-4be7-9695-13a968d81b41",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networkfilters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networkfilters/368142e4-2396-4ba6-98ea-02a78ac4aa1b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/f9d86b68-55f6-4bd2-a85d-9e72aafd009a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/db05e4c8-18a9-4ca3-89cb-04934f90aca9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/e94784a4-0c2d-4a66-8102-47a21fb0b9b3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/d76bd055-fa8e-45bc-959b-205c8d86cfb9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/03f936d4-7d1f-4d30-a923-a149df8e4745",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/9937301c-8a4e-4a4e-a4bd-753a990132b7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/fa01d5b6-e7c7-432a-9b7d-45452e9a0e4b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/ef6aba81-7fa8-484f-b95c-576a43c7088a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems/17415db0-2d19-4450-a6e0-ca1e12a7f2bf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems/c545dee3-28f4-4493-9d51-057582d5a99d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems/59fb33ca-34f6-4489-9255-58488a4184ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/3eaff42f-59fc-4fd5-9171-2b240a46dfe5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.69,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/388f6be5-b1ce-4ca9-8341-b850f79ddb04",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/d4813743-2dad-4a9a-aadb-e8e96d9614cb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/c371beca-357f-4e27-ae81-8735d7dc2f16",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/a4f82b67-64b3-487d-abe7-60303f721cf1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.98,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/19f2aa7a-1500-4cc9-9a74-6b24f2c3e123",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.21,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/f65f6404-4ea0-485d-91a7-bc125844e0b9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/64eb0822-b478-4829-896b-d7361a773079",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/d581f8c8-cf5d-45f0-aba7-5e07c319f8ce",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/dd3cd48e-9c21-4d2b-b9bf-60e4497c63bf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/9db82db4-31c4-43b1-a957-86be2cedd526",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.21,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/3e2cc4ef-df9a-4203-975a-0c8182dc6cd2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/e9fab6e6-d82f-4167-982c-6e7ad1ea5f3d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/78ba9520-8fc5-4078-a303-3373f2151912",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/7bab5f6e-88e4-42e2-aec5-f987766193de",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.78,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/1236e1d2-8dc2-423e-b24c-079b94633cd9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.74,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/c8b7753a-5f22-4163-8aa7-fb585f72783d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.41,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.78,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/616dd6a2-cf67-4e75-9dfc-6fb3bff3e960",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/36f757cc-1feb-496e-b190-ade7f6cecf91",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/0e3fe926-4651-4d69-a365-61e5150b0089",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/3a9a548a-be30-4dc7-8cdc-8599e605bd02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.48,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.88,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.14,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.16,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.2,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 409,
- "expected_hint": 201,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.02,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.8,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.17,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/c4052d3d-0901-41dd-8c19-529091870640",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/aaddfe96-231d-44cb-9adf-b725621649d2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.11,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.17,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/098b4284-b217-444d-a623-08d19d4bec59",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.6,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/bac1eb7c-0f40-45a6-968b-c7e20b626310",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.5,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/7fd0b8b1-6541-4ffb-a194-3744a50967ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/e9db0418-9ead-4180-94a6-5356d236649e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/cccc67b8-49ef-4abe-bcf1-489d61708439",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/2b0a7fe3-d0da-4ae2-bd09-365284dd0d21",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.14,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.67,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.85,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/6baa83c8-822c-43c4-81a9-16dbd132976f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.75,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/c62c783e-7a82-4e03-a0c8-d5fb62e5848c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.25,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/e992a1f0-1d5f-4d58-8916-77b412a1aa82",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/eb8e4f9e-88fc-40de-bd49-0514d003511c/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.77,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/717c406a-7bbe-492d-9df5-19436a4ff58b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/712cd015-084f-4174-b00f-615d0d6979f9",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/74aa12ac-b522-48a8-9f89-f3b7bcdab186",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/20ae3f8e-8ebe-4b3e-a86e-719e2e09af4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/8749db07-cf62-42dc-8c59-2d3096208b60",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.78,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/063ae5d5-ee1f-469a-b147-c9813d30e859",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/70193ddd-b3ef-492d-bfeb-85f4c831cb0c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/2989e77e-2562-4cc4-9369-1f0b67360531",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.38,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/f3b8f11c-faea-4f1c-9903-2fee8c7d0921",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/db6ea9f4-51a0-4f83-bb05-80ec04f81bc2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/abcb2601-7cf9-4d74-91c4-0c1245b9be79",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.09,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.34,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/e10a4af7-2d74-40a8-9b11-f80aafaf2845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.2,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/398cb7d7-567f-404e-b8d0-1e789904e786",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9dd9071f-db77-4dad-bd0f-99d6ae6592fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/c0fc5a97-7b66-4dae-a44c-90d61d8bc2bd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.17,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/6e41522c-36a0-44b6-a097-ee180ebf4b2c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.87,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.17,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.98,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/93c66924-49d9-4ad0-a943-28c09647c0db",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/874fc4d8-843b-4ed7-8831-deca78192ccf",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.41,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/938c4c65-8967-44a4-851b-ae2f1ccd8c6d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/bf17837f-8950-4882-889b-2af757044d0a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/8c15c000-3e45-4302-84c6-ba578fbd19fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.09,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.83,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.93,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/2d830b3d-864c-4cf6-b806-297ee9f9731b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/00562e37-9e9e-4b77-bfc5-5bfeb1002ea8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/fd4e34d9-b23d-4158-bdb0-6f37ab15843b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/89714968-c108-468f-85be-aaa0cb8abf42",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/a2845cb7-7a81-4d1a-bfe2-6adefd472cc6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f31b7ba0-95f2-4666-8f89-2785e6e604cd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/5a5cb094-77ec-4faa-880a-6bb7e5def704",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/7a35ff63-7602-4e63-9bd3-c6b8b8a3e57a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/a5a7d575-e520-4b3e-91f9-6c1a3398cd78",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.22,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/52dfe93e-54c8-4733-991c-17433d86485b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.67,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/413621e8-2977-4c9b-8140-1d4b09a39010",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/ee8359c1-d22d-4fbe-aeef-df4fdf27c34a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/3b254dd9-ce4a-463b-ac12-870cf8f5720c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/5d4d81cd-e805-4bb9-9790-aed82f11bc63",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps/91b97991-05ea-4ac2-9803-f66d8c003f06",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps/77c6dce1-141c-468a-a9e5-1655bf9709d2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps/819c3f31-5a93-4be6-a687-662d10a0cf10",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.8,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.api.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.73,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusterlevels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusterlevels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.38,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.88,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.64,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.64,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/54",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.15,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.22,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.45,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.97,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.icons.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.icons.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.84,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.38,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.4,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.61,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.94,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/26df5a2c-3732-4d5c-a82f-e8d6c1c8aa21",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.macpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.37,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.macpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.89,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networkfilters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networkfilters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/f2cb2f7b-b4ed-47ce-bcbc-b5015ff9a741",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.66,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.88,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.64,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/17415db0-2d19-4450-a6e0-ca1e12a7f2bf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.5,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.66,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.19,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/64eb0822-b478-4829-896b-d7361a773079",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.75,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.69,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.77,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.57,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.72,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.91,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.18,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.91,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.83,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.06,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.78,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.83,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.14,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.42,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.7,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.98,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.33,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/711cced3-3a12-4c4c-890c-649bb5053d9d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.38,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.06,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.14,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/20ae3f8e-8ebe-4b3e-a86e-719e2e09af4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.06,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.75,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.98,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.51,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9dd9071f-db77-4dad-bd0f-99d6ae6592fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.58,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.8,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.65,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.25,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.67,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps/3d0ee625-9cab-4d37-96e7-3888e5e68b8a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.api.v3.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3",
- "path_resolved": "/ovirt-engine/api/v3",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusterlevels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v3/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusterlevels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters",
- "path_resolved": "/ovirt-engine/api/v3/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks",
- "path_resolved": "/ovirt-engine/api/v3/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains",
- "path_resolved": "/ovirt-engine/api/v3/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.25,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events",
- "path_resolved": "/ovirt-engine/api/v3/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/events/{id}",
- "path_resolved": "/ovirt-engine/api/v3/events/54",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups",
- "path_resolved": "/ovirt-engine/api/v3/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts",
- "path_resolved": "/ovirt-engine/api/v3/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.05,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.icons.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/icons",
- "path_resolved": "/ovirt-engine/api/v3/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.icons.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v3/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.88,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/instancetypes",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs",
- "path_resolved": "/ovirt-engine/api/v3/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.33,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v3/katelloerrata/26df5a2c-3732-4d5c-a82f-e8d6c1c8aa21",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.macpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/macpools",
- "path_resolved": "/ovirt-engine/api/v3/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.macpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.47,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networkfilters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networkfilters",
- "path_resolved": "/ovirt-engine/api/v3/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 22.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networkfilters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networkfilters/f2cb2f7b-b4ed-47ce-bcbc-b5015ff9a741",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.82,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks",
- "path_resolved": "/ovirt-engine/api/v3/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.18,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.11,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.04,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.6,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.5,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.52,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v3/operatingsystems/17415db0-2d19-4450-a6e0-ca1e12a7f2bf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions",
- "path_resolved": "/ovirt-engine/api/v3/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles",
- "path_resolved": "/ovirt-engine/api/v3/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.0,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.57,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.15,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storageconnections/64eb0822-b478-4829-896b-d7361a773079",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.64,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags",
- "path_resolved": "/ovirt-engine/api/v3/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.05,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates",
- "path_resolved": "/ovirt-engine/api/v3/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users",
- "path_resolved": "/ovirt-engine/api/v3/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.61,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/users/{id}",
- "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.8,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools",
- "path_resolved": "/ovirt-engine/api/v3/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.48,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.22,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms",
- "path_resolved": "/ovirt-engine/api/v3/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/194fa0a6-0f87-435d-9ffc-7f43aa853856",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/20ae3f8e-8ebe-4b3e-a86e-719e2e09af4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9dd9071f-db77-4dad-bd0f-99d6ae6592fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.54,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.69,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.38,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.08,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.22,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "3.6",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393/steps/f36d036c-3693-4656-b65e-20367147f062",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "api.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.21,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitylabels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitylabels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.05,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitylabels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitylabels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/ea1a0e82-217b-4084-a468-307f3fa6da54",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitylabels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/6d7c3a5c-d6c0-4a97-b8fe-1d7dbadd698a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.21,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.06,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.86,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/13c1ab16-15d3-4624-b069-d0c3d5308ea4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.67,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/9a06b9e7-988d-4531-9b45-166c0b8e0dec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.99,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusterlevels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.99,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusterlevels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusterlevels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusterlevels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/8827a5c7-392c-4bb9-aae3-9edcfa2a01d9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusterlevels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/3b82b3e5-89fc-4781-bfab-5e456075fef1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.81,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.75,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/01173e84-d9fe-4e9e-938a-743d8ec40a9a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/357e342c-fb27-4ce3-a6f1-21bfd6844a33",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.1,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.5,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.11,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/cdc1e80a-a2b1-4075-8476-ec867a1017e5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/98c2f979-d299-40ec-ab40-29fc73dfcf03",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.06,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 14.28,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.6,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/3c98e144-ad8d-4980-b159-cba9c0f7d052",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.33,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/384d4e48-5328-4e26-beff-6a7107b1f2f6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.7,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/2f246d19-166c-4ec3-936c-568c0e8a2aa9",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.73,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.58,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/55",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/55",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.73,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/a006edda-9a2e-4405-b82f-7f9f69f6b528",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/44fc8c0b-bd7a-4d28-81b0-f8e68b8b179c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/e2c496fa-ce12-4c1b-a58a-819f4b7a3fb7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.7,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/d3e5bb84-2d0b-4c33-8924-f3eb85aecfe7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/6e6e9ba3-9769-4dbb-9bd0-08dea7a190be",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.82,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/b148da86-ac7c-4aa0-b4dc-a92ea057c893",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/025aaf04-ebdc-4e9d-904a-9c74d5814a5b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.05,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.enrollcertificate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/enrollcertificate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/enrollcertificate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "icons.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.61,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "icons.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.8,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "icons.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "icons.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/f030efea-c002-4070-926d-1a67a74df1c2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "icons.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/ef88dca3-17f1-4d16-8881-8558e953b4f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.15,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.56,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/adb904fa-c3a4-4c69-a9d7-816f4dba5374",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/bec9d7b3-322f-4db5-8c79-c8da71d254b5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/c54b08fb-ae24-4ad2-8c1a-c524e658d049",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.4,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/347a2aae-7616-4fcb-aef9-ea7e2a17b38d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/04cc5335-f90d-4929-afc4-135473cd3ae2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/b7ae9f2a-a194-46ea-9ca2-d7c49ba48c94",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "macpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "macpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "macpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.63,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "macpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/b3434c92-d315-49e3-a332-a2a49296cb80",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "macpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/f580a067-dbd2-47ff-94e2-9d228eb9a953",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.75,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networkfilters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networkfilters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.61,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networkfilters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/1375cbac-d4cc-4fa7-9a4c-d2549d1d1df8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networkfilters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/99cbf061-a141-409c-916a-3c15a04f6752",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networkfilters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/034b293b-0c2e-4ad7-9210-f952fda9ebb7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/7c077d02-3332-44cb-bf79-d0c25bc75204",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/bf5b2acd-e59a-4e6a-a73d-8873eb59fca2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.47,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.7,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/ad679fad-d4a1-4f14-aaed-b6711c2882f4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/287b60af-aba5-4a81-a760-d96c4c7df5ef",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/1c28659c-3172-4708-9f06-66fb4439946d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/1dde0ee0-d5c9-495c-8126-42f0d21540d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/5569ff64-359e-4bf5-98d9-c3f3a61fb467",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/26a2f81f-68e5-43ae-abd9-3ad52798c8af",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.8,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/058fb9a5-1d79-4e9e-8039-2ffb1468683d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.53,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/ff900806-bb45-4658-8f40-c90fc1d7c31f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.7,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/26634abd-128d-48f4-be61-f36e49b4186d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/048a1ed6-1108-40bc-a82a-efdbbf3ecd6e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.7,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.46,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/2b49e69a-a09b-4d8a-9b62-dc0be89ac5a2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.7,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/6bd7b597-5927-480e-acf1-66c1e5a9eff7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.33,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/237856c0-30e0-4747-917d-26f8bb08e403",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.69,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/889c2fd4-8566-4c4b-be51-8813ef5e0b38",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.29,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.51,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.27,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/83df0545-35dd-4607-b3c5-2ece68b0525a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.55,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/37f47ec9-4a21-492f-92f5-215a672790cc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.67,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.68,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/fdf91780-638c-4886-9884-ebcd95ad69e2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/57336bff-0c12-4edc-99ab-fbb907558eb0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/0692ecf7-ef1b-4e4a-a8b9-c3c24c9933f4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.35,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.23,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.28,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/2ebb9d8a-1020-43d9-a46c-313038af2a0e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.51,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/f28a8220-3a6d-4637-aea1-d10bd419258a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.47,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/48299ebc-0db6-49d6-b9d2-d9f8ff77c280",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/00e61f78-d177-4e41-b63d-0f834fd04bac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.53,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/36c9c9a7-8e7f-4498-b03d-6553ae769910",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.21,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/93632690-f6d3-4d6d-829c-9e3b704d2ff5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.49,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.15,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.07,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/028ebe59-e700-49f1-b85e-8b0a1045b7ff",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.37,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.25,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/f1994ebf-7876-4b3a-bc58-61e2681800cb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/216d3bf1-8f43-4401-8cf0-f2cc6c5e6d51",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.55,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.43,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/063e7d57-07ff-41b1-ad11-cedb104245e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/113a378a-d212-4389-9d72-5f8a0688f53f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 37.46,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.83,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.73,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.11,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.37,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.2,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/3357d74a-26ad-4b75-9903-dd09cc8a94b0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/03f67dcb-fe8c-4ac9-99af-76ee560ca60f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.25,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "imagetransfers.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.22,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "imagetransfers.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.47,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "imagetransfers.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/bca2bb71-37d8-4564-ad98-5988e3a7c3d8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "imagetransfers.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/5dc2091b-aeb7-4091-aeb4-018957a52477",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "imagetransfers.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/5b5d01fc-509f-4f35-9933-f2ed0fb466e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.34,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.26,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/0fd0313e-609b-48b6-b386-68c679c1ea94",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.2,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/05a41990-3b4f-429a-baa5-2ffc25c3feb3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.34,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.35,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/8dc1cc26-1ff5-44b0-94bc-a80db35cb9bf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.4,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/14aeb189-30cb-428f-8770-9787e8742e51",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.58,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.4,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/fa125645-86b3-4db7-952b-4379c8fe2780",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/96f3f247-8e09-4942-a76e-1f14cde2d3e1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.34,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/5b588f20-d58e-472a-ac36-6465cc6fbefe",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/91c90cf3-0860-4c55-abd4-9a8a30ddaf9e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.23,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/6bf1db02-33f3-41ef-91eb-81c681e3f611",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/541f009b-16e3-498b-b983-31360b8096cd/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.43,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.78,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.74,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/21a826fd-8033-4ede-a537-be941f498d17",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.43,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/737553c4-7d29-4488-a5e7-35fb27b57ff4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.97,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.2,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/cd069a68-9279-4b03-8ee3-34b7f837ef2e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.75,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c69f9ad4-98ba-4791-9609-ebbd607bca91",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.4,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/d77edefc-9983-4af0-8272-b4504307409f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/a695b123-5c58-461b-a5d5-24f9f7e990da",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.43,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.5,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/2b779fa2-99ab-455a-b63b-309873f09b5c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.46,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/c7d61ac3-17a1-47c2-b950-62a0802cdd91",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.33,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.72,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.29,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/0a744236-7204-4aff-8d34-882f2a527491",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/b4459a87-bb83-4311-a8cc-c8847be1780d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.33,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.49,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.26,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.33,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ac55086a-149e-4012-a6c0-568543f55522",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.22,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.49,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.23,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/3a317974-b2ec-4630-be2f-d30f030d4eae",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/964cb7e2-99d5-47e4-bb14-3a15b85af504",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.25,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.67,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/77f723d3-6da9-4094-8f16-f7b2b6a21f74",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/86973c13-d2d5-44fb-9a7b-0a0cd1e6092a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.46,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a6df16c3-5524-4bfe-bdfb-a2956812b0c7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.51,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.29,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/9b091ba4-e55c-40c4-b306-8f43a3414700",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.2,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/fee437cc-66b7-4d9f-86a4-19cbc1bf9ecc",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.08,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.58,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.07,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/a5467e56-8348-4714-abdd-df3d4b1dbf71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/0d85294a-0dce-4b63-9b1e-b9d41588e4cd",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.04,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/047f3bb1-2443-4c75-9872-bfc213631da6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.55,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.43,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.56,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/f61d9623-c5ce-4324-8f48-03a1e7f25b89",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/ffaa2af5-bd4f-44b2-af38-aa3771bb4338",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.35,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.37,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.18,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/637a35ad-1916-47a8-84a3-b35327518430",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.62,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/ba232847-9915-4bc1-9f91-06388e608f22",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.21,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/7fecb32b-9d9d-4ed6-a7f2-b8ac9a1a6c02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/655062eb-aded-4dfb-9af0-af9c030ede61",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.17,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/f9b100d1-1443-4f12-8145-058575d48405",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.08,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.64,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.2,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/0accadf2-838a-40aa-9ba8-dc2827572906",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.26,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/836b1eea-6730-40a1-a72e-cc4fb9a2dcc1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.58,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.09,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/40a1b8aa-4714-409f-834d-c1a60aa65fee",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.11,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.13,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.17,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.25,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/31e0993c-ad91-4edb-8ce3-b622267c9d8c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.06,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.35,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/fd0b7317-eb6e-41bb-b878-d073523e9872",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.2,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/c72f34c1-dab6-4117-bdc4-e8885ff7d317",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.08,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.22,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.61,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.17,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/0c818447-d878-485c-b512-84631ace5cb7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.25,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.04,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps/04fcef99-0940-4f92-8007-4c0eb502dee9",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 0.99,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps/843f81b5-1fba-4353-9912-91d82c69b7c2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.01,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps/0649bd5a-7837-4117-b563-cac56eb4713e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 0.98,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "api.v4.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4",
- "path_resolved": "/ovirt-engine/api/v4",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitylabels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitylabels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.63,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitylabels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.15,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitylabels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/b419e7cd-2ff7-4059-ad50-11b4a4c02e3a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.42,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitylabels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/f50696e0-1ba6-4eb9-8c4a-0ff329bb8169",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.28,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.2,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/e4fef5f1-28c1-4337-b03d-9864a25d4845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/4a0add0d-cdf2-4ba8-8d1c-773750d729ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.33,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusterlevels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.42,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusterlevels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusterlevels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.34,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusterlevels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/4839a468-a16c-41bf-85a8-89cb041583d6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusterlevels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/ad341805-f8d7-4572-806f-4d487089d600",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.13,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/6a7f7a3d-98ab-4145-8770-8f04a3a31c33",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.47,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/6f5fda2b-b57b-40b9-8b76-425f770d74d3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.73,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.58,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.22,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/fee93397-e1f5-459c-8ad7-bf5622d4800b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/89e7381b-3454-4c38-aac9-6541fb97a947",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.34,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/22d774b4-1b7f-45ec-90d5-26b09360ebaa",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/8377e8b9-0ff2-4bcc-a3d3-2bedc5bfa105",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.33,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.58,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/538b07ab-5931-4f79-9168-86a8802f5208",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.46,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/55",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/55",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/44cc1a82-aef1-4eba-881b-c7a11af68285",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.46,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/695bb8b9-e495-4b9e-8042-b1575578594b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/afdd6fa8-edf7-4e27-8727-734c1ce20fc9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.43,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.67,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/ff272569-6799-40d9-a9ee-ba212a66e02a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/366fed30-e375-45c2-9649-ca67b97bdc73",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.5,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.42,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/ef9d4b1b-ebf1-4d49-b3e8-9411200cc7fa",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/9dcdbaf3-57a5-4c4d-bc81-686dd57a0361",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.63,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "hosts.enrollcertificate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/enrollcertificate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/enrollcertificate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "icons.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.12,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "icons.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.26,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "icons.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "icons.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/5a1dee2c-c8f5-4d6b-ad20-607b8844700a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "icons.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/4c456d63-dfc2-489c-9d37-544a31d8be66",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.34,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.29,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/8eff3b83-e043-4862-a7e8-a65aa8af3bc0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/5159a618-9932-4c87-b944-170366d2e92a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.25,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.17,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.05,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/92206d72-b2fe-473d-88ca-5a8b3e01f5ee",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.03,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.17,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/347a2aae-7616-4fcb-aef9-ea7e2a17b38d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.1,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/4a5faf16-0301-4f8e-b0ff-f948d0cbd3e1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.4,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/605df153-848b-4b81-9d32-d7886947fe22",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.22,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "macpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "macpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.33,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "macpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.13,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "macpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/5b4e22bc-098f-4e54-b537-9348654cca77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "macpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/8990c4e2-d2b3-41cf-bede-cf85ee4fc18d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networkfilters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.21,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networkfilters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networkfilters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/1375cbac-d4cc-4fa7-9a4c-d2549d1d1df8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.55,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networkfilters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/b01e6afb-be08-4d6d-9b97-bab2cb1422ab",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networkfilters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/190649cf-2014-436f-95c5-93452a5ea95a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.8,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.2,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/9a8d2922-60b5-4e44-8140-8c0ad066647d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/1751b723-de7e-4bdb-8bf9-9ecbd337613d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.22,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.17,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/1b3d375f-bfd3-48b5-aa81-73c622fb9f63",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.29,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/ede12f0f-0eaa-4925-8301-c2eefca394f5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.28,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.68,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/3cd15e17-675b-4627-85e2-3c9b1c3ad686",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/3b3d3e5d-ad25-462f-b233-2b499492b6e6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.73,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.67,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/ddd2279a-514f-406a-ad46-8eacdf2da108",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/6834d8e8-0820-4676-9895-89aedc5162ad",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/058fb9a5-1d79-4e9e-8039-2ffb1468683d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/2e919425-c33a-4fa3-9328-9223df946944",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/f509bb57-a553-4ff4-8931-33529768609e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.37,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.22,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.84,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/e3837d9a-8701-464e-9639-1bc5dbcdc726",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/3b7a7611-1092-4e81-be46-9141926fe9ee",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/c6f34c39-680f-4bdd-bbb5-3cfae40cd2ec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.88,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b9c68b76-c0fe-415d-b330-accb16c80305",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/5073a9fe-d3e4-4725-8025-306083ebc594",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.83,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.73,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.77,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.35,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/4acf7d39-049d-4670-9734-5f4c7de0fa3a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/b45f97ee-846f-4935-b0ba-46718becd7a5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/fdf91780-638c-4886-9884-ebcd95ad69e2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/73e10d59-de89-4f8f-b84b-23c8fbd92819",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/d9dbf0ae-5eb9-4f06-8157-2ca87d30e950",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/55075c8e-b273-4f1b-859e-671ea034167f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/67a173f7-a339-4ea2-9d0c-8db61223e3fc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.8,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.4,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.64,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/418f7b32-230b-46d3-a5c2-5c2666126b29",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/73c4aab3-1c67-4c3f-80f9-a4d7650c7c5e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.67,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.49,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/01775756-b51d-46e5-b087-747e08d53aa6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/0d8b75b0-0c70-49eb-ac1f-a7ddcd3a4370",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.17,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/f2be257e-fac8-44e1-b333-d4f075e75f8d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.1,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.23,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.22,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/0f1e9231-4e3d-42da-a515-9b69930efa7f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/9bdea7d6-5c2d-4700-b440-8d921bef26f5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.33,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/aec42947-af0c-42a3-bc83-6779797b0933",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/73ef8f66-51b9-44ed-8f14-f624309d7422",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.98,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 409,
- "expected_hint": 201,
- "duration_ms": 1.4,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/b1aea69d-ea96-4015-8eb2-2c5b194f490c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.33,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/b61b0a77-3276-4cdc-b4d9-8a897e73737e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "imagetransfers.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "imagetransfers.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "imagetransfers.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/bca2bb71-37d8-4564-ad98-5988e3a7c3d8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "imagetransfers.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/ce96ae4a-eca1-4d6d-8ac1-63d4eaadce1e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "imagetransfers.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/c7263254-c156-4063-becb-32888b8a769a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.63,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/6985cc47-17f2-4a6e-9960-6467c0244925",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.56,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/e44756e4-b92c-4f38-bb3f-73677d76d3f3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/8a7810d7-ef23-4c0a-b705-84a7fd5f85d9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/ac321138-4722-41ba-994f-911e6a06b980",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.88,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/04ade5a3-c1d7-4bdc-926c-4cc9a5e7d785",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.08,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/60803d76-3a0c-48c9-8355-875a6903f0c8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/a7695dbf-0e90-4c6a-a9d8-e3cd9dc7eb9d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.02,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/a36d029c-30ae-4f9c-a6e1-98cd339ad087",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/1e648791-d571-44c6-8e83-525d2eebfd12",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/6d031d72-e3e7-4c0b-a32d-8428e70b013d/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.7,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.11,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.04,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/d4807fcd-a369-4fe1-af34-61a3f6f31be9",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/dcfb7153-dc81-4455-8a1e-9691c89a9c59",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/1f42c7a4-183c-47a1-ae1c-e57cd4b90f1e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.69,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c69f9ad4-98ba-4791-9609-ebbd607bca91",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/2fc26e54-834b-4985-ba7d-4130a07eb718",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/d9291b06-9baa-4416-ac11-f58dc6d6d726",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.98,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/2afa9b0b-9ec3-4a45-b205-0f174e480170",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/9da71473-95b9-48dc-b254-d2df4c08fca9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.02,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.61,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.11,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/c135735b-cab3-4ce2-b3e9-005f5a70d2f6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/3541469c-1cef-453c-8567-362ad8e933f0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.61,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/f913b985-db03-46d2-860d-72e999ba7fcb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.53,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/e6d89a0a-ba51-4398-ad36-29536cbaa0bb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/48d6e0f7-6562-4b70-af1e-15bc32c18ea4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/77f723d3-6da9-4094-8f16-f7b2b6a21f74",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/911c269b-5429-4385-8c59-57b2a98e6c53",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/3a713804-2547-4374-bd87-1c26a6e88229",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.96,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/858d7b0f-e6cc-4f67-aae7-e4991b1a1442",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.74,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/be934b77-8cf4-4305-bd1d-5dab52e15ea3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.7,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/e6f34d2c-553f-443e-88fe-8bedccc3e263",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.68,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 1.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/ffe6788e-6ec7-4a46-836f-d0325e3b8449",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/a18e7bb6-32bf-4e50-bf5d-69b641b624de",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.77,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.88,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.56,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/6144371f-7c68-46aa-8067-8921726e5a6e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/f669325f-3587-4b00-8e82-44524212d82a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.82,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.37,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.13,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/73546fc3-d1b5-48ef-a071-17af9b4d8ca8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.29,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/aa802e9d-1e9e-4c60-8d06-5e960a1af0c1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/a83ae1e1-f16d-42bd-bab6-696fa2bd7c43",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/bd721679-c61e-4620-83ce-45309bfd99f3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/40d39936-806c-4a93-880a-6f8c5defa52d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ab261a20-45cf-44d1-a81f-a9437e0fe045",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.15,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/21957e00-80a4-433f-b6e2-3e48f5858d80",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.75,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/a7baecbb-3a19-49da-86e0-43edf35b4636",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.18,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.55,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.21,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/881d4cd6-9b9a-47de-84a8-db4f68984f98",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.56,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.69,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/a00f788b-01a3-4d8d-a40f-3edb7ce58dd9",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/992217bc-17d3-43c1-ad6e-6399cdd16130",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.71,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.78,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.01,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.27,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.71,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/e04ab0fa-7489-4c4d-af2f-6e444879f986",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.71,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 9.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps/0166b09d-6765-4d22-a9ec-bff74ec3502a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.63,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps/6faad4f9-260c-47e4-9c93-b5eb9df15d13",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps/4524a006-e40e-4db7-becc-9c4f8cf8db57",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.api.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 23.35,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.affinitylabels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.25,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.affinitylabels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusterlevels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.58,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusterlevels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.04,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.68,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.9,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.67,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.08,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.21,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.97,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.95,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/55",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.92,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.69,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.icons.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.85,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.icons.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/347a2aae-7616-4fcb-aef9-ea7e2a17b38d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.macpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.macpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.09,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networkfilters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networkfilters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/1375cbac-d4cc-4fa7-9a4c-d2549d1d1df8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.01,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.86,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.86,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.15,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.17,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.9,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/058fb9a5-1d79-4e9e-8039-2ffb1468683d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.95,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.74,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.96,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.98,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/fdf91780-638c-4886-9884-ebcd95ad69e2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.29,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.47,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.64,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.64,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.97,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.53,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.93,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.imagetransfers.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.72,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.imagetransfers.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/bca2bb71-37d8-4564-ad98-5988e3a7c3d8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.47,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.63,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.07,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.35,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/d722c7f0-8870-48d2-8772-bfc7a2b1acad",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.18,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.78,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c69f9ad4-98ba-4791-9609-ebbd607bca91",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.08,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.09,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.68,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.13,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.07,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/77f723d3-6da9-4094-8f16-f7b2b6a21f74",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.92,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.28,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.67,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.58,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.82,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.04,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.78,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 13.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 31.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.9,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.62,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 25.47,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 22.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.74,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.43,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.56,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.42,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps/6f389886-5bfb-408b-a900-75ab5f169585",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.api.v4.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4",
- "path_resolved": "/ovirt-engine/api/v4",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.71,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.affinitylabels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.32,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.affinitylabels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.19,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.5,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.75,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusterlevels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusterlevels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.18,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.5,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.6,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.18,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.18,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/55",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.5,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.39,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.icons.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.21,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.icons.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.5,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.69,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.63,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.98,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/347a2aae-7616-4fcb-aef9-ea7e2a17b38d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.58,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.macpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.71,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.macpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.64,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networkfilters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.91,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networkfilters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/1375cbac-d4cc-4fa7-9a4c-d2549d1d1df8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.63,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.13,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/058fb9a5-1d79-4e9e-8039-2ffb1468683d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.18,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.03,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.0,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/fdf91780-638c-4886-9884-ebcd95ad69e2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.29,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.22,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.65,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.48,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.imagetransfers.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.84,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.imagetransfers.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/bca2bb71-37d8-4564-ad98-5988e3a7c3d8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.45,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.51,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.12,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.23,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.52,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.38,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/6a6eb07b-ce78-4aa9-85e0-72cb3c9b79c1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.34,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.46,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.66,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.01,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.31,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.17,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c69f9ad4-98ba-4791-9609-ebbd607bca91",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.27,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.08,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.54,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.16,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.44,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.25,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.79,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/77f723d3-6da9-4094-8f16-f7b2b6a21f74",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.26,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.06,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.88,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.62,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.83,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.47,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.23,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.64,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.18,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.5,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.87,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.95,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.37,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.02,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.41,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.93,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.57,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.59,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "4.3",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/2bb6dc90-78b2-4a75-ad6b-2eedead4a0a6/steps/74209d36-d026-4f1d-94a8-19ffc6cca7c1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.57,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "api.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 74.29,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitylabels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 22.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitylabels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitylabels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 19.02,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitylabels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/a7abb936-121c-4bdc-ad8d-4d28e30ac49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 35.68,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitylabels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/0aa2503e-90ed-4bb9-8839-3f84d70f1cbb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.73,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/10bff41c-d21f-49bb-9517-49999e0153f6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.11,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/ac8fdb8d-a1bd-4d60-833e-6d13efd584e8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.89,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusterlevels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusterlevels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 13.39,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusterlevels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.48,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusterlevels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/93e6905e-903f-4448-ac71-da8825d8eecd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.65,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusterlevels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/6db30493-d29a-4101-9479-ddbd2d104c72",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 22.04,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.13,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 13.51,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/ad990eb2-a50b-40d2-81a5-a7833f4a0f22",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/0d3f8c88-b403-4b53-9b0b-55467babe114",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.8,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.7,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 17.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.85,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.43,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.49,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/6da0cad0-5c3e-4290-9886-f8f062270835",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.43,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/1297d401-6012-4571-a3cd-17f1fc40255f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.34,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.53,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 13.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.53,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/9b1d91f9-978a-4a4f-9a35-653805fbb4b6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.04,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/550a5330-ec65-489f-8122-ce3c1422824e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.4,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.78,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.89,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.reduce",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/reduce",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/reduce",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.49,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.87,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.26,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.09,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/d39544d5-04b7-4215-8742-136e08557c3e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/56",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/56",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.08,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/bb255e29-26ed-42b2-9f8b-98f7120ba675",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.94,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.98,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.43,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.44,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/8e79d6f1-2782-4e5d-bc36-075e35ebf437",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.53,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/21f1558f-7c44-4b5d-ada2-3b4a20ebb9a2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.59,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.28,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.5,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/6d73b819-d28c-4d1f-bd06-9b638d016f49",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.04,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/94db54f9-e0a6-4d3a-966f-848145fc3ebe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.77,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.59,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.64,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.81,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/3a5e722a-6c19-468b-9df3-93e0212c77e3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 23.7,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/84d7ce8a-8388-4b74-a964-e824db42164c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 27.69,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 20.49,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.59,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.37,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.54,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.81,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.24,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.99,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.enrollcertificate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/enrollcertificate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/enrollcertificate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "icons.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.85,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "icons.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.24,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "icons.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "icons.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/0e02a40d-49cf-4d1c-9665-348a74ea6d34",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "icons.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/49a0ae2b-e7e9-4d66-8a7e-c6bb95ed7ba8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.19,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.37,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.37,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/7eb346ba-fdc1-4b16-8299-8215fe2bd9ca",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.53,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/a2a5048d-6d8e-45fe-8376-236d81372780",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.02,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.29,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.73,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.15,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/2f48a50f-5886-4b3e-be67-8aa5de44311a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.44,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/32dc9634-6399-480b-a51a-1caf461f1012",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.16,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/244aa4bc-78ab-456a-a22d-8f7bd8ab4e74",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.48,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/0d02bbcf-d380-42c2-96dc-b7935ac6bc3d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "macpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.16,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "macpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "macpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "macpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/28497c92-3286-418c-ba50-3abd6af1ee05",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.52,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "macpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/69015baf-1eec-453e-a631-9c0e0e12238c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.81,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networkfilters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.92,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networkfilters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.07,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networkfilters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/e20f9279-bf2a-41d0-a22d-8f5aba9419ba",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.8,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networkfilters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/a754f787-f4a3-4e82-bfa6-c1e87fe2616e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.11,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networkfilters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/ecde01f9-dba4-4fc8-ac8f-7ef9e294215a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.16,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.87,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.47,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.81,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/3d06d409-2a58-4931-b9d3-6503b555edab",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/456a43f5-e6fb-465e-ad11-d7c86b793a76",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.47,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.34,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.17,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/d1c1fa52-1335-4def-aaa7-1c8fad520061",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/ec492602-ea49-444c-9b16-122ae7dbb879",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.7,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.77,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.41,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/8d76d8f0-3cb9-49d7-bbcb-619216a82749",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.09,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/1d1dfbaf-f25e-4306-adfc-4dfd04177232",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.99,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.26,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/c3deb81d-6cfb-4c5f-acf5-1f43af1d60aa",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.53,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/3e028cbd-184c-4acb-8802-87733287157b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.46,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/ed258b55-6e47-4d2c-bb86-5efb9c3a2160",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/c4a14a35-cf17-4da2-af15-3b1aba2edf4a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/f602939d-2857-4a7e-8058-898d3b3021df",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.99,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.18,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.08,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/201567d7-dd3d-469a-aefe-b499fc8b285e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.94,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/ad896879-4677-4a70-a006-14f38996be9f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.92,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/674efb6e-c2d0-42f7-a2a8-08e4ddfb6de4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.95,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.07,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/3a552069-6222-4149-97aa-99a6f9f752ca",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.67,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/1e905146-a15b-4e3e-a976-1be56bba4ba1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.25,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.56,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.86,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/2b421c76-f7ba-4cf7-9382-12e9073af060",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.01,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/441c9f62-e329-4f3a-ad92-460fab319780",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.82,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/a181e974-26a5-4526-9c5e-93cefa1f1906",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.23,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/2655c40c-ff95-4c25-a694-b49a66e6917d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/59be3d34-14e2-4143-9e9c-8e5cb4a3d592",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.11,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.14,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.95,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/defed680-0308-4243-92ab-cb29202b978c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.19,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/45fe677b-5592-4c27-a0ca-cb868a62d514",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.5,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.reduceluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/reduceluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/reduceluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.56,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.94,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.73,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/5e4fceda-a84c-4bdb-bed2-9e19275e46cc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/61cbba9a-8a27-499c-b175-08113d60b314",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.26,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.36,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.73,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.13,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/3e1e7535-52d8-4808-9606-4e13746c30ed",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.49,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/c39542f2-0b88-4bcc-883d-f2c173f4755d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.98,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.33,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.73,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/60e2ce03-b81f-479b-b462-4c03c7f70cf2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.57,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/68586a0e-5219-46de-a657-d39d779270fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/5d1fc80f-ac41-4a8f-ac87-d35ac159b3e1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.53,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/a18cd7f5-7993-4dab-909b-0787bb54d144",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/0a3f4acf-f61c-404d-baa4-892da5fb235a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.48,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.64,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.09,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.4,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.68,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.6,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.72,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.92,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.63,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.29,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.86,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.07,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.89,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.57,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.04,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/c3d1cc6c-11c4-482c-b72e-07f6cd1bda87",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/4b4c7fdf-6602-4a9f-bc0e-a50dd5638e05",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "imagetransfers.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "imagetransfers.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "imagetransfers.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/46752a63-201c-4b81-ade9-d04b13857897",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "imagetransfers.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/3a6b55c0-12a7-4c38-9cee-0d466261ae46",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "imagetransfers.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/665ee127-c912-4063-ad6d-7a02a677cea5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "options.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/options",
- "path_resolved": "/ovirt-engine/api/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.72,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "options.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/options",
- "path_resolved": "/ovirt-engine/api/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "options.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "options.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/7237e32d-2a4f-48c1-bf90-749a0c69ed47",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "options.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/19457e49-94ce-4af3-ad9f-db507dcd0f89",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.26,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/6f8d21c8-f03d-432d-ad1c-79bd6dca18c1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/21af80ed-5078-4370-9149-c4055cb6cd8a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.93,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.01,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/b27ac64a-34fd-4f28-b287-c71caf6f1155",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.32,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/124f0701-4349-4e95-bca4-628fde373f20",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.17,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/04bc6436-c362-4593-84eb-2d15f1ea86d9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/80d27381-9a07-42bd-829d-35c8e22a5899",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/a03ee661-0a9c-4223-8de1-b9ec9646180d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.86,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/515a21a5-2d15-4267-9e03-77425426a06c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/a2f782ee-2547-4a01-968b-d3faa4c7c03d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.72,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/1adc4f16-1056-4ed9-ba88-2a8e68e67a83/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.48,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.36,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/c497dfc2-7593-46c4-b5ec-eab0d8999bab",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/46821fb8-94be-460d-8a8c-55409f540489",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 46.65,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.44,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.49,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.77,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/cb3519f4-1292-49fb-90b4-e8a9331b355b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.13,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.6,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/f9ae85e9-58fa-4553-9f6a-8f0384aceed5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/e011aaec-4915-475c-851c-2bf7dedd2027",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.63,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/2577bdbb-f40c-4266-b83f-a974bf279e05",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.94,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/ca704092-7761-4452-b0fe-dc3eccad1a47",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/1ab6cac9-c258-4001-b1a4-3d93460a699f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.21,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.35,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.94,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.63,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.02,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/5ef9024e-6fe9-4484-8ea8-033c2c3cfec2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/e9b349ca-cfed-4589-a500-521fbd043ea6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.94,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.06,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/32eb52ba-daed-4f2b-b1e7-b1446d8466ac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.52,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.36,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.26,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/87d68aa0-0cdc-44de-b570-38850a25a42b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.87,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/6892423c-67fe-4319-8d9f-68fe5706ddc3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.86,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.41,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.08,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/10c5e5d4-1e00-4ad3-b91c-d963b70ef0fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/2ddd1b68-2913-4c1e-80c6-4b76713f85ac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/7aeaba42-656f-4321-8e0a-bd452357668b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 8.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.52,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e046a4c2-a7ba-4a02-92a2-7f04ef8f8d50",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/ed94ceb7-e768-4a8a-a326-6413ca4fd110",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.98,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.95,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/1705a017-054d-4752-9841-95fde880000f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/e3c7ccd2-5daa-4688-8497-68384aa73634",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/efa4d55d-f834-461b-9d5f-941fc1628872",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.47,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/44a1594f-1954-49e2-91e0-e4683ba22158",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/ed936fb1-25b9-4d10-83f2-e3140f786b6b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.6,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.56,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/9e8dff47-d158-4e8d-b378-50abdc99ff45",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.64,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/dd48d757-33d9-42f9-a724-c1d7360199ac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.63,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.56,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.86,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/62adfa58-b1ad-4342-8f5f-d8d4c2a90578",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.99,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/3b7f112a-2216-40ff-bc58-9a277cd1e4a4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.37,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 16.67,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 14.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/81473ad3-f98a-49c9-8c9f-5d4e4c48e702",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.39,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.4,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/6ce40d37-3919-49f8-bd0b-d5afd805993d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.87,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ae1e571f-adac-411c-9046-79c192b16ba5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.13,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.59,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.49,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.29,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.6,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/3aa3698f-4114-459f-b4b7-2e75e162e7ee",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.89,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.78,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.66,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.54,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/0719b587-faf1-435e-994a-15aec28aebc1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.92,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.86,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/811c824b-1789-496c-9c68-765e2d2bae3d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/428c4d13-614b-4684-bce5-733529b11da0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.8,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/043b6e11-a3a2-479d-a81a-fbd31c4368ab",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps/42fb7ef7-7b95-432e-9240-609841758e77",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps/f7fccce7-9278-4243-815c-e52790653d44",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps/4cfac1e0-61ba-48aa-aef8-4ba725f91fcf",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "api.v4.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4",
- "path_resolved": "/ovirt-engine/api/v4",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitylabels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitylabels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitylabels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitylabels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/f1b921d3-c83b-4763-98dd-abaff60deef4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitylabels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/1cb428d8-66fa-4470-b867-b802168f2f03",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.33,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/7cb7452d-26a7-48b6-ae81-93dfeff07bbe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.48,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/f0dafd54-1273-4f1a-8f93-40c140b5b798",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusterlevels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusterlevels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusterlevels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusterlevels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/a597752b-cb5a-478e-ba76-282a5c394ec0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusterlevels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/fd5e6ac7-b46b-408c-8038-d4a5ddd0a4bf",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/55e728b3-8056-4a69-b9d9-b609f9f4d0bb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/195c22ab-1f6d-4993-afe7-f108b3dc4217",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.11,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/5f2cad03-8010-4a79-932c-d5b28acbabd7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.33,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/c1b602da-d6ee-43e4-89c6-73da33750fe1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/6d03e774-5446-49d8-bebd-8b0223699d82",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/ba2696ba-7242-4787-85cb-112b3c895331",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.11,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.69,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.reduce",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/reduce",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/reduce",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.64,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/4ed3a20a-a3eb-43d8-9cd8-4e64842d26f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/56",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/56",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.78,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/82320255-f73f-4eb0-b3a8-4a3a7e6d9c38",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/f48bf7ea-93ed-4cf5-9de5-5de2c375fd9a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/af44c7d6-429f-4069-ada0-ace91e764d95",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.48,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/06b5f886-30f5-4108-9e1a-8aa1572bcb4f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/50e0090b-7a9b-41bf-bed0-ed1aacb88e8c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/91d079a3-d049-4c28-865b-fb1fa9e62708",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/51dea378-6111-4cb4-81bc-5dfba6c9dc18",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.01,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.09,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "hosts.enrollcertificate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/enrollcertificate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/enrollcertificate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "icons.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "icons.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "icons.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "icons.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/f14bcaf7-2aab-4e3b-9930-8a202e4aba00",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "icons.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/12404b6b-166b-489a-aa48-81f0c441bad5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.24,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/7507b501-a1df-4d2e-91a9-e5371e5be8dd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/72d4cede-80fc-4262-b5be-1aec9d923b60",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.16,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.15,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/e0fdd4b7-1295-4d74-af8c-a542b7fbeb44",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/32dc9634-6399-480b-a51a-1caf461f1012",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/5e3c9bf0-4ec1-4bf7-92e5-b16fdc0005b6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/87969c84-6178-4c19-93fb-1e6bc9f1edf9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "macpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "macpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "macpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "macpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/c966ef18-926f-4c78-89b1-b33091fd96d2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "macpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/a27bccb4-40bb-4879-a62c-99449ba9f836",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networkfilters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networkfilters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networkfilters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/e20f9279-bf2a-41d0-a22d-8f5aba9419ba",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networkfilters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/51fabe9e-7495-43ee-ab44-0956553e4cbc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.48,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networkfilters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/a909c3c4-6c0c-4fd4-95f1-dc0256d9731d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/c28d76ea-97aa-461e-b366-7acb251742c3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/b420c998-c8ba-4a27-aa2a-7d789de455de",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.63,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/68cdac6f-6931-4d31-a10e-16e3da826231",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/bf902506-0aa2-4b33-868f-39b63474e6d8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/2cbc3703-e33d-4fbb-b8f5-c61754c59eb8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/f09de516-25cc-483d-b795-9ff5f5cdf6f5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.7,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/445ae60f-c156-49f5-834e-803f5634373e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/55a54ffd-2842-416c-b2e2-66c943a8f0c9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/ed258b55-6e47-4d2c-bb86-5efb9c3a2160",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/26ce6f39-9c4f-4619-9924-b977ebad12a2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/afdbc729-8a6e-40c6-a0d7-6414e9f76b58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.77,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.22,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/8e3260fd-6bd1-4506-803b-1a86397a2d49",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.17,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.92,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.78,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/d8524dee-344f-4315-bad7-a808d3e8da29",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/7dd2ea52-a4e5-458f-909d-984288c490de",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.18,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.67,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/157a0184-38d7-45a2-a482-ba215edca398",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/7d876267-f63f-4f28-ad80-c38ca4f1ab06",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.84,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/1c326d86-d3dc-4b6b-aa0e-65a3e4bdb948",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/60d1cf9f-b89c-46e5-bd53-6ccb80293812",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.81,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.89,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.26,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/a181e974-26a5-4526-9c5e-93cefa1f1906",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.18,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/945b23a0-6a6c-4e7a-904c-05760dddd3a4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/c2c9dc28-eedf-4eb2-a6c7-e7b4c1619ec8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.17,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.34,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 22.7,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.11,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/1f423cad-e48e-4131-b9c4-c96da4a9e160",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/045ed75b-5cc8-4c92-b4dd-b06065c77267",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.01,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.33,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.24,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.reduceluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/reduceluns",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/reduceluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.41,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/5e658ef8-023c-47c1-bca1-581e61244d76",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/eb27b9c4-29e8-423d-bc65-3b4b1873d2d1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.22,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/f0854a90-98fb-4e7f-b3d5-6dcf64fbffa2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/f3e136d9-92ce-47e8-af1d-8c01db1b1c43",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.09,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.65,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 8.09,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.11,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.47,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/22da89e7-63b4-4696-b57e-ec4192fb13ce",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.4,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/a51f71af-47fd-42fd-a0fa-5713a1a632a1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.29,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/41f649ea-8035-412b-be00-bb18bbbb925a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.66,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.34,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/e115237e-1104-46a1-b625-a2b0a729d070",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.43,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/b28f8504-5afe-410e-925d-f260cd7e134f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.16,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.89,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.7,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.15,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.63,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.32,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.6,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 409,
- "expected_hint": 201,
- "duration_ms": 7.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.64,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.29,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.89,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.37,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.35,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.06,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.5,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.07,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.49,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/625fe668-6675-4aa0-b4e4-77f2f6a9c627",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/bd3cb6b8-a834-490d-924a-5c6bde1a04d3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.17,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "imagetransfers.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "imagetransfers.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.35,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "imagetransfers.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/46752a63-201c-4b81-ade9-d04b13857897",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "imagetransfers.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/2d68de3d-1a5d-475d-aa83-1fe9eba55465",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.93,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "imagetransfers.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/ea2fad1c-725b-4f34-aebe-48e3d72534eb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "options.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/options",
- "path_resolved": "/ovirt-engine/api/v4/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "options.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/options",
- "path_resolved": "/ovirt-engine/api/v4/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "options.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.59,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "options.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/33c00aa2-107a-4644-b7b3-ecfe03e55abb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "options.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/8bbdbea5-8867-48f5-853c-5c5146a242d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/68394690-48ea-4fcd-99df-d2aa803e651e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/4758d116-78ee-4a66-b407-eaa616f91748",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.17,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/fab4649a-a23a-4559-851f-7a866c5b4af8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.11,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/6fa1d9a6-a92f-4ef4-b4a5-293a7afbac65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.95,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.26,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/a0502737-5649-45ff-b90d-fff54f62f999",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/1ef1d4d6-8d83-4136-9d33-ea12fc9010af",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.57,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.15,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/b0829053-499c-4f3a-8a23-c2b18f588369",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/8f19e57e-11b7-4dd9-b618-6de988c96681",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.33,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/daab0774-a2b3-441b-8e6b-4e26ab3e48fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.23,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/80c06abd-524d-4af2-812f-3f2b95685c52/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.28,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.66,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 14.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.15,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/af2cccf3-117b-4d87-a3a6-4d67de520fca",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/67400b3b-d190-4566-b030-95dd8ae71225",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.04,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.22,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.57,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/85bfdddd-c4f7-430c-88a4-83adf218d022",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/f9ae85e9-58fa-4553-9f6a-8f0384aceed5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/d9de7f65-e020-4909-856d-81609c469ed1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/d3a1c386-ebd8-485c-bc6b-5fcd42e98633",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/a8013112-507c-420a-9dc8-deed33863b54",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/296fefad-1293-4134-9d25-43f32df1377d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.09,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 39.63,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.13,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.84,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.72,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/26ba77da-270e-4ff3-9da8-52865ce665a3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/34a29c8a-03f0-45a5-b1ff-f6d40c7d576e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.25,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ebc6f35b-5ee9-4864-a564-c97d54f236bb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.93,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/f83767d0-70c3-420b-aea0-cce9df118f2d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.54,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/64b681b3-cdda-4755-9584-086dcbd88887",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.18,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/10c5e5d4-1e00-4ad3-b91c-d963b70ef0fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/96f7d6e0-01d2-44e0-8eba-a89275370afc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/bed3b485-e0bd-4553-939e-b5cbed241b8f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.32,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e2da7fda-a6e0-4364-ab2b-29dbb478514c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/c612edd3-ccb3-424d-861c-0d5d1796f604",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.29,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.22,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/a5bd9607-a1a7-4bc1-8321-f5e984493c65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.5,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/d97bb56e-891e-49ee-9b46-1f8eb2b769fe",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/12bc2e54-ad0a-4ab2-885b-636211a7007d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 25.21,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.43,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.43,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 33.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.08,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/7e1d297c-345a-4494-81de-c16e273b3e5a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.22,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/5a2a29e6-26dc-42e7-9352-a3f6a91426b9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.72,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.65,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 14.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.34,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/25d0fe25-6bda-44ae-929a-690c3c0dc012",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/a3d37cf9-9f51-482b-80b2-5d9eb2144971",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.08,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.84,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/b9fb7ed1-b698-41d2-8d5d-e1c6a14e5d37",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/5a6cfb8b-b0bb-4ff0-966a-cb9a2372acf9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.9,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.51,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/b2f6f698-d8c0-441c-aade-5bbbff474645",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.01,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.59,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.8,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/e1b9d9c3-f0e2-4109-bf41-e3a8c47b9f67",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.19,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/f510160d-d75d-4c79-8fb2-09f7947f960b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.17,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.68,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.84,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/19c6b45e-cc9f-410f-962b-f527e31e25e2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.84,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.14,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.01,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.47,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/001157f7-6620-4ca0-a32d-328214918bdd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.94,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/1021f93b-1603-4ef0-9af8-92ea13f2bd63",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/2d2d3b2c-a356-4cb6-8d56-c12c3e2642ea",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.82,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.67,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.93,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/25704f7c-bd07-47a4-9b7e-36a6a7731284",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.8,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 8.49,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps/90d869ea-e2d6-4f48-afd5-c0d2bed29af0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps/8db0b18a-296c-4bc3-8c2b-a1d746bb3426",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps/bb144300-a980-453b-bd56-79678bbb4781",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.api.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.affinitylabels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.54,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.affinitylabels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.87,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.11,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusterlevels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.52,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusterlevels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.23,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.22,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.41,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.14,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.8,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.7,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/56",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.07,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.37,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.57,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.icons.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.icons.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.32,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.61,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/32dc9634-6399-480b-a51a-1caf461f1012",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.78,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.macpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.34,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.macpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networkfilters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.22,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networkfilters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/e20f9279-bf2a-41d0-a22d-8f5aba9419ba",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.52,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.44,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.23,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.87,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.07,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.44,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.41,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/ed258b55-6e47-4d2c-bb86-5efb9c3a2160",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.26,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.39,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.35,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.78,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.29,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.51,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/a181e974-26a5-4526-9c5e-93cefa1f1906",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.08,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.73,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.04,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.56,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.25,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.59,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.49,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.23,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.imagetransfers.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.imagetransfers.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/46752a63-201c-4b81-ade9-d04b13857897",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.33,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.options.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/options",
- "path_resolved": "/ovirt-engine/api/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.06,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.options.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.8,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.6,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.64,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.89,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.5,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/d0146168-77ca-45e1-a55f-e5a550e1e6b6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.23,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.78,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.89,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.65,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.93,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/f9ae85e9-58fa-4553-9f6a-8f0384aceed5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.95,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.04,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.77,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.51,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.47,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/10c5e5d4-1e00-4ad3-b91c-d963b70ef0fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.35,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.02,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.46,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.77,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.68,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.61,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.61,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.47,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.01,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.13,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.85,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.22,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps/2078b277-2f9f-4a6d-8eac-8f5988f785d5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.api.v4.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4",
- "path_resolved": "/ovirt-engine/api/v4",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.affinitylabels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.affinitylabels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.61,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.23,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.7,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusterlevels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusterlevels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.5,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.53,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.98,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.23,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/56",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.33,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.32,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.48,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.icons.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.icons.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.16,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.54,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/32dc9634-6399-480b-a51a-1caf461f1012",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.03,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.macpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.89,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.macpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networkfilters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.41,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networkfilters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/e20f9279-bf2a-41d0-a22d-8f5aba9419ba",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.73,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.14,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.02,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.86,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.91,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.06,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/ed258b55-6e47-4d2c-bb86-5efb9c3a2160",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.59,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.12,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.54,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.59,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.68,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/a181e974-26a5-4526-9c5e-93cefa1f1906",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.19,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.95,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.98,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.6,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.02,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.96,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.36,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.55,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.77,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.24,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.36,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.7,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.imagetransfers.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.69,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.imagetransfers.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/46752a63-201c-4b81-ade9-d04b13857897",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.85,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.options.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/options",
- "path_resolved": "/ovirt-engine/api/v4/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.69,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.options.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.59,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.54,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.01,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.76,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.04,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.92,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/3bf1479d-134f-4756-acdd-42d41a78c030",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.5,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.88,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.83,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.77,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.35,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/f9ae85e9-58fa-4553-9f6a-8f0384aceed5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.78,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.69,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.97,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.56,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.1,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.62,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.52,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/10c5e5d4-1e00-4ad3-b91c-d963b70ef0fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.36,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.23,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.38,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.18,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.05,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.32,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.42,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.63,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.36,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.99,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 21.86,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.31,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.64,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.35,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.56,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.22,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.45,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.79,
- "detail": ""
- },
- {
- "series": "4.4",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6/steps/71e12c36-09d5-42e8-9e82-275b99d257f0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "api.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.14,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitylabels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.54,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitylabels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 31.83,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitylabels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitylabels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/38afa4b4-7c6a-4ef1-a046-74e50871a3a9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 44.69,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitylabels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/097d25de-db67-48ee-bd04-8ec00465f44c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 27.66,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.48,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.11,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 24.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/ec529037-4bcf-4598-bbce-570115a1f1f3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/bcb3cf43-b2b7-4a3f-a8d6-ea60de6f41d2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.54,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusterlevels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.51,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusterlevels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 13.48,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusterlevels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.04,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusterlevels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/61c97b12-5fab-4dc5-a5b0-9d3a40922277",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.61,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusterlevels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/3fba22d3-0cdb-4387-b0da-359b7aa3db60",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.98,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.46,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.38,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/6159c1d8-f51d-4360-8a9b-1a4a729043c6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/27ac9352-de0d-4d0e-a2e0-02b31282e3ac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.92,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.83,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 20.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 30.66,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 21.41,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.69,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 25.99,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 39.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/1205db1e-3afa-4bfa-99ce-415a4741f4f0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/a4c7b267-0275-4c54-9832-8849fa6682cd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 22.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.71,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 67.51,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 82.88,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/565f38b1-ad77-4828-9d25-b0eeaaa4e01d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/1f93f982-d32c-4344-b5a5-84fe94802453",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 116.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 41.52,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 37.01,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 24.29,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.reduce",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/reduce",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/reduce",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.71,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 14.2,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.97,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/af4d5a9e-9053-48c6-9226-81938d86e0c8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.67,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 12.52,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/57",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/57",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.59,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/1dbb081e-6118-44da-8ba1-57dd0b7638ab",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.08,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/4711a63c-0595-44ba-a09c-2c2fb4f38829",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.73,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/21748c8a-9f9a-45c5-94b4-50977e369b70",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.21,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/c6291420-4e71-45bf-b88d-f66338554d05",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.29,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/002cb44b-f779-448f-b7d0-a23a56542c1d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.29,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/f48ef43e-036c-4c5c-ae19-8d38aca9e187",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.04,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/ab2d22a6-8a94-4289-a44f-5936eba05635",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.01,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.94,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.84,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.21,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.47,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.14,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.58,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.enrollcertificate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/enrollcertificate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/enrollcertificate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "icons.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "icons.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "icons.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "icons.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/ca2e17ef-2b35-4b4a-898f-1f0066f3190a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "icons.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/6060a06d-62e9-4197-ad2a-77b71ee04207",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.71,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/78fea4d7-b00c-41e0-b78a-1e2620cccc68",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/2c2c6383-116f-49e6-a8a6-97ff2cca9345",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.97,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.47,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.63,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/bfdf0956-e19d-4902-9d57-2ac7a250e657",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/938ec820-56e7-4d69-9fd9-f4fc0fab5022",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/68742550-2844-4909-bb23-3662b4ded02e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.58,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/6d6bec1c-9acc-491b-82e3-27ba45cb14b5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "macpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.66,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "macpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "macpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.08,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "macpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/852fc378-9bb2-4789-8c46-378b38926596",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.19,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "macpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/e5ca38aa-167c-4eb9-ae50-afd4aac9d003",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networkfilters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.67,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networkfilters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networkfilters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/5034fcd4-bd5a-4056-a04c-31fcd39f0c82",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networkfilters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/f1fc0807-eb17-4f68-a531-443732f9e19c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networkfilters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/04f0f743-9245-4b05-866f-c7e8b8c84380",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.05,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.89,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/992a0da6-e54c-447d-a4d8-e4ac0ae9c825",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.81,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/3b41decf-2a3e-4cf7-bb8f-6e61c7d8a711",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.7,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.4,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/6f014c18-4eb3-4e1e-a7ac-b908a0cb4e5a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.29,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/4eb662c6-7f00-46b4-858d-b56b146c5d89",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.42,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.58,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/a6f5705a-21c8-4a71-8ee6-d8cd80e766be",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.89,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/c194ca4a-8146-4e69-8c56-14ebefca8ee0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/77ff19fe-2e09-4318-922b-03b05899ca4c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/d37484f1-582f-499c-b569-b1c24454bed1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.22,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/e9693c95-cba3-45a8-b6ac-0e627ff4c7c1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/1462ea43-2140-4937-a771-5305735c7f16",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.22,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/bfc690bf-e84c-4a78-bced-a3f82d4f50db",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/3bdb77e1-551f-4741-a941-675275dadbf6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.6,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.97,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.21,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/4c4eaeab-fac7-4bde-8fef-fae3c6f0e689",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.3,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/b2760e8c-d564-482a-85e9-496fd6a8a9ef",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.22,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/16ce0972-66d5-4889-a998-b4552b78bff3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.99,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/ec573df6-b34e-474f-9987-4244dec71413",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.69,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.94,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/9381c31b-9e23-4ac8-a5f1-f9316e194bd9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/71c5438b-855e-4b54-a703-6d5bc0c9360d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.45,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.92,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/b20ef56b-92f1-44d3-bf74-e1540cdd72fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.16,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/c7837f88-097d-4336-a0ad-f5a698998872",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/8d572d6e-c0f6-434f-9b9a-d5fb11e135c8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.84,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.26,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/6a9f208e-ab8a-4a31-b347-07a133cff92a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.26,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/25bf9dab-033c-4309-8916-07c33f4dc90e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.66,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.36,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.51,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.reduceluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/reduceluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/reduceluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.92,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.8,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.05,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/85005fe9-b815-4d8e-8d6a-e034ead0e70c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/499fa547-ab51-4075-9b76-7e170e207f8f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.08,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/68a08c29-96f1-4162-be9f-2c42350d7ff5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/9168fc19-b0d2-4a77-8da6-0d2c0d98e261",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.48,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.85,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.48,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/d55bebbd-e6fa-4098-9ff8-c877b6b785fe",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.45,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.62,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/b0cdfac7-8b11-4551-b585-e2e40d8b5404",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/48bbdf59-5d15-4e7e-b27a-076de62c4934",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.96,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.46,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.06,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/2888831a-7c8a-449c-abc2-dad5f27d22ff",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/e306d94e-5dce-4191-877b-a57f00d396c1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.21,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.34,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.7,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.62,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.59,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.88,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/7dda13b1-4071-43f1-8956-f9f2f40443c7",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.51,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/150ea4da-6863-438a-a8d4-ab0acc5cd3f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "imagetransfers.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.68,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "imagetransfers.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "imagetransfers.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/6f7adf35-0807-48f3-b118-2d5e11ed671c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.55,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "imagetransfers.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/96648146-3f0b-4750-a28b-fa9cf09fa24a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "imagetransfers.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/76376952-0ee8-41d6-ad79-cd1c55455a93",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "options.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/options",
- "path_resolved": "/ovirt-engine/api/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.26,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "options.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/options",
- "path_resolved": "/ovirt-engine/api/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.39,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "options.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.84,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "options.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/e80b44b1-72fc-4244-a0bc-33c9b19bc564",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "options.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/ce4e269b-d69c-4757-8167-9b3d0543f62a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.94,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.81,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/c37b9ef7-6591-4ff3-9fad-f037bfb6d3f5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.63,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/491c4c55-c846-4aa7-95fb-2198bf7e0592",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/fb5c56c7-b084-4c4e-8899-e5ec0f447ad1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.08,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/69d4eaa3-a1c8-452a-b2ca-eb963e2a8cff",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.25,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.99,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.26,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.37,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.11,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/58bfeb4a-7de4-43f4-bb88-19504d420137",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/7dd1f8d1-52e1-4ff8-9886-2642d0d7325a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.48,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.29,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.8,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/0f90365c-07f6-401a-96d7-56dc1f14bca3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.7,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/4359fd68-71f6-4e5d-a0a2-01bb943f90db",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/8331d844-06e5-44c3-93a8-a4bd4db77716",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/d2e1cda7-83c1-4aee-9f90-f8b1d4c67dd0/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.52,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.05,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/ff7f6486-1b1c-4f4b-9bac-d8b9d97bab07",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/4e3c3406-274a-4dd0-8e01-aeb772e3b890",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.52,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.67,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/e11b5958-cce0-4464-bde1-8dc0f4444013",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c613423f-ea14-4a2e-9dd2-c067496c4820",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/b0ed44d2-cb37-4f3a-9982-b28e31dab3cd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.11,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/8263fc5f-0771-4e3d-8063-9ff590ae29af",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.61,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/49c6afe2-eca3-457b-8cf5-53b53f1987c8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/13d07020-b751-4165-b8b5-cdd7eabee1d4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/f080db2c-8558-4c18-ae6e-85da85b28a04",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.93,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/74bdef80-2324-4559-b473-c7d6125a33f1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.79,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/b84b29d1-7d35-402e-adc8-53cc61365326",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.41,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/74e65cc5-f61d-4232-b622-a48304f99b15",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.21,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/4c634898-e43f-42fe-a165-327cd9349ae6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.41,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/e4dcfffb-0b18-476b-b039-1df9a7a1e990",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/6260cbad-5bcf-4514-b761-a44b920d5966",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a0a45ba7-98fe-4f43-af84-a09a1281e61c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.32,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.73,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.54,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.17,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/6f9dde8b-5f49-4140-b6b4-52a8a2255e55",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.96,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/fb344135-edc8-49d6-9b72-c39ad49d6c82",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.64,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.22,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.17,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/abf6d59e-6b5b-4f88-8d37-92bb649fd49f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.35,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.11,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/ba2f91f8-1f58-4396-8115-fb5858027b56",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/0f5ec4f5-a04b-4bc4-b78e-22768c25d46d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.86,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.22,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/7ea13bd8-ee04-495a-a23d-f2abe3c0f9bf",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.68,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/109fec81-cde0-4bf5-9b59-657ac9272147",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.8,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/85946d52-342c-44f5-846b-c81e80d0c69b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/d1c44ffe-9384-4356-9252-e09428463fd3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.78,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.34,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.83,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/32eb4037-ef57-4bf3-ad77-4d5177229eec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/a83f8e13-f308-4aa6-976f-1bb63a35bbf0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 1.91,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/875d8e99-88b2-4e36-a0e3-57c6e460cb19",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.89,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.52,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.56,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/58780bce-70b1-44b4-9264-828448fae75e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.94,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/54304f11-06b5-410d-a3b9-b7635ecc397f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.98,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.52,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.17,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/cc6815f4-8eef-4419-9439-c1830379ed28",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.25,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/8762735d-0330-4c68-9f41-92e450489c5e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.04,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/1f0bedda-302d-41c5-95e7-9f78f69c5ee3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.88,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/84af27a6-3fc5-416f-947d-10add100609c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.92,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.86,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.15,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/42327db7-e0e3-4b5e-865b-1e68dfe7300d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.9,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.07,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.64,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps/10c781d0-48d6-452d-8aec-176808ea0d15",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.36,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps/22aefe52-685d-4a97-90e6-5303171a9450",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 1.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps/fc6a1d1f-966f-4247-b9ab-3ae8ed11d8f6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "api.v4.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4",
- "path_resolved": "/ovirt-engine/api/v4",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.86,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitylabels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.81,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitylabels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitylabels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitylabels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/b53a8c80-5589-4c52-af2c-5cd289cfed00",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitylabels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/b5426373-9d9c-46cd-aa45-bf34544fd6de",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/6ba7cf55-83c6-42b0-9e9a-8bfac72857f5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.42,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/a7a07e11-2df3-4db0-a1c6-7c7987b9d6ed",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusterlevels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusterlevels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusterlevels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusterlevels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/a1726f05-f02d-476d-9d68-33ecd08a38e8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.23,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusterlevels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/fff6d393-8a25-440d-a9fa-8daf614c448e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.02,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.03,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/01afa5cd-d087-4d5a-9839-e54e85446ef2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.26,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/314223b7-d3c2-43c0-a4be-715d2d75d81d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.69,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.96,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/a6772c4f-4774-4565-a8e2-664de1c97806",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/e42a70fe-2094-4686-ad99-3d651bd6f0d6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.88,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.61,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.97,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/df585390-7022-4c69-ba08-701b24732ba5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.94,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/4f79c054-8772-4f34-b9c9-44249afe9dae",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.45,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.reduce",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/reduce",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/reduce",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.09,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 1.77,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 1.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/961df91e-15f5-4639-867a-d165204d2ba8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.12,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.06,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/57",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/57",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.58,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/e8b1e28e-1c47-4cce-891e-27b42a24552f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.47,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.15,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/17586866-e562-42fc-adfd-62854e3b0780",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.99,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/271b2c1f-e343-447f-98f9-c44442ad382e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.16,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.38,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.03,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/94d0612f-abe3-4daf-bc82-ac3bdd16674a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.4,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/36c3a1b8-7a9f-4671-b2e3-81a268917fd8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.23,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/89c953d4-44c9-40ab-a977-f69820250d11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.59,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/6f69798b-ee32-42ba-82fd-4e23db6f1c81",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.41,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.83,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.69,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 31.46,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 28.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.2,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.55,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.93,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.79,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.17,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "hosts.enrollcertificate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/enrollcertificate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/enrollcertificate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.32,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "icons.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.15,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "icons.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "icons.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.19,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "icons.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/0352721b-ef86-473f-acd3-d1b878f7c171",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "icons.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/5757a369-4956-416b-9870-b307a980d755",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.32,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 16.52,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.93,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/b2e5f8b1-77c0-4a86-9fde-1f97daf95be0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.19,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/74d85cf8-3299-48cd-b6d3-d885c701ac82",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.59,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.97,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/291daaf2-2ff6-423b-952f-48d542e5f767",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/938ec820-56e7-4d69-9fd9-f4fc0fab5022",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.45,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/6af1e8da-20e0-46d7-b023-4b6c5584975a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 19.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/77a2f190-4726-4820-8f8c-9ef370f9fd81",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.66,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "macpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "macpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.62,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "macpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.3,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "macpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/eb8e44e6-8a82-4787-a7ad-7629afaaf7f4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "macpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/bfec06ca-72ab-4d4b-9898-dd5f2d574f16",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networkfilters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.14,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networkfilters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networkfilters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/5034fcd4-bd5a-4056-a04c-31fcd39f0c82",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networkfilters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/26b3c26a-4d5e-4c9c-a71f-4007e3cedfbc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networkfilters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/e3f73e7d-950d-4a24-bb57-9bb09ba1cdb3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/1626f71e-58ab-4179-8384-7a4a3bd1aa66",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/ff2e9dbe-9809-44d6-8bb5-b917afd3f1ea",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.23,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.93,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/42b98d88-094e-456c-9c86-3023dbdcefeb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.47,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/1ae813e7-d391-4e30-921c-29dbdbf6b0fa",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.84,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/46cee251-a42e-4b4f-9b99-441c5919d4fd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.77,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/85c7dd2c-4ad0-4c2f-8b75-7fdb7a4b0424",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/a807028d-2a13-4248-a102-49fb3f2be07d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8d691c3f-12f9-42e0-ab41-567e48d1eb43",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.54,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.4,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/e9693c95-cba3-45a8-b6ac-0e627ff4c7c1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/81c7ad89-8087-41ae-8be7-2bcf6ec78aba",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.99,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/0eddb3c1-d0e1-4a46-9f3d-3e7540b21b90",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.81,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.6,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/a31c235e-8b3c-4053-8293-86a0dd0f7548",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.02,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.22,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.19,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/f9281a9c-be4d-43d1-a38c-f799f96351e1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.61,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/f9268509-5284-4ac9-b11e-1565ddc875a3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.83,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.98,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.8,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/27bf5699-4879-40b2-8f01-30c055293706",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.81,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/e2532cea-a919-4505-96ae-3352ca47eae9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.47,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/a2feb160-00ad-4c12-8b9a-6e3f59997126",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/4fc24f1b-9937-494a-b626-92a9cae9bac6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.77,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.94,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/b20ef56b-92f1-44d3-bf74-e1540cdd72fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/67770cc7-9e33-428d-b413-974ca30f5912",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.56,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/cd464316-e3e9-4d89-a194-59c82b86b622",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/f511479d-ceb7-439d-9eff-2adc2a37e65c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/81ce223f-bf24-4e53-a5d5-57a96465bbfb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.21,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.96,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.73,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.reduceluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/reduceluns",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/reduceluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/09e4f094-5076-4ed9-b0ea-aec7e4daea84",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/866aa010-3a59-434a-b1af-4f332f24a03c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.64,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.84,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.61,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/c5e6f8f6-b92d-4f43-a074-efea3714d832",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.61,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/eb461e9f-0bc8-41c4-bfc9-d3f3e65ea74b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.7,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.51,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.88,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.48,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 16.27,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/3873eee4-7b35-4f80-a328-be0c4c91b936",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.78,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.21,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.78,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/def10832-d9f4-458a-bb48-99c25cf8e38f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.98,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/c86cd938-aaaf-40a8-90e3-125f602fbe53",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.38,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/ac6db1f0-a905-4a3d-89f1-930b4e7e4f17",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/3c2e7843-b450-425e-a863-35d1801c7f3b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.48,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.98,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.98,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 409,
- "expected_hint": 201,
- "duration_ms": 4.08,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.93,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.81,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.99,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.83,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.88,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.15,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.14,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.54,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/b64c7e5f-e17f-40ba-a911-5386b1989652",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/b156fa9b-bcdc-49ab-abd2-56f09d9be38d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.51,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "imagetransfers.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "imagetransfers.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.15,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "imagetransfers.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/6f7adf35-0807-48f3-b118-2d5e11ed671c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "imagetransfers.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/ff948cc3-7dfb-4b10-bec6-e1b35ddabf78",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "imagetransfers.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/bddddb80-88ec-4ed6-ab34-41407671d838",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "options.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/options",
- "path_resolved": "/ovirt-engine/api/v4/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.41,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "options.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/options",
- "path_resolved": "/ovirt-engine/api/v4/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "options.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "options.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/e5ebb84c-a218-4719-a61b-3c7ec7a281a8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "options.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/757f7006-5867-4715-a0cd-d8c29c05bb6c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.06,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.14,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.92,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.5,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/be20b6c0-2bc1-4aeb-b7eb-ab5c4f88ec27",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/044de2fb-91b1-4cb1-8595-232e5f6ed08c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.55,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.68,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.55,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/782773a1-2d35-492e-94a6-e5bc70d561e2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.32,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/ccdcddc5-c629-4a3f-88c4-de8819609399",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 30.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 19.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.3,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.97,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 78.15,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/f4e31d0c-0e8c-46f8-b28d-0c8d0ac46093",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/4741df6d-2a06-4de8-9655-4b1323fc33f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 35.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/9d61e188-10f4-4eab-83d0-05e4efbb554d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 17.02,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/1e4913e0-aa1f-4b71-a668-86a79580669b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 23.14,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/39086faa-e783-47cf-a7a8-e8bf49bf6f1a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/1f181597-ca26-4be1-b794-7f6b5eca631f/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 14.55,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.68,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/aa0ab5d6-f83d-4e75-be12-0129ad6e4a3f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/23b2f99a-cbf1-4bae-b45a-e835dc926d08",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.69,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.68,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/c06c453c-5ea5-4f97-b1df-d6f222f643b5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.37,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.83,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c613423f-ea14-4a2e-9dd2-c067496c4820",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.45,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/7908a83a-282d-4066-9825-c3992f14c1ca",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.22,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/9684849b-6f63-489a-9f91-3f908f641cab",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.06,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.63,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.89,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.27,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/91db1e95-b580-4917-b666-404c63b07041",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/f2f3cbc3-6eed-4c4d-a7be-d62c2982d80b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.73,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.45,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.78,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.25,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.91,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.92,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/837097e9-0a28-4ea3-aeda-15014795d29c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.96,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/3bbb78aa-d8a1-4b32-9f3b-76220e25cb10",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.68,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 12.4,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/2bea4bf1-3dc8-4314-9f03-8e84c5db7e6f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.64,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.04,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.42,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.52,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/b3fee3b3-20f7-43e2-9ea8-56ee26211a4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.16,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/1894a46d-619d-4662-a254-121f25ac5942",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.77,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/e4dcfffb-0b18-476b-b039-1df9a7a1e990",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/2f9cc34c-8d08-4174-9059-ce62c2f521a5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.78,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a4a0ec2f-35a7-43ec-b813-373f68221721",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.06,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.7,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 7.04,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/1dec7e69-7ae7-4bf5-89be-1a355bf2f749",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.81,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/0ba8a338-60f4-4b6f-8d2b-e152f6f232c8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.52,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.68,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/3373e9d2-feba-4733-88e9-9b7179009650",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.2,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 11.86,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 27.64,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/1694ede9-c072-430d-b507-269217ed59e1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/bfb1cb55-9dab-42a1-94fe-0954e2462b38",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.64,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 55.06,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 30.6,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.32,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 17.11,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 19.45,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/c4057c62-3722-42fa-89ad-5c8d213b19a7",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 25.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/951f0bcc-e551-410f-a497-e6202ca1a409",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 22.19,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 27.94,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 47.09,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 31.83,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/da25c281-c0a8-40cb-9d69-9b882030ea65",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 49.32,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/9457420f-57e6-40d9-971e-cdf622cb7055",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 25.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.77,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 35.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.07,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/209fec44-907a-4fa5-986b-0d895f055b02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.93,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/c636ab0c-fa7e-4827-89b3-a36cde85f07d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.52,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.25,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/51bf2b68-ed71-4708-926b-2ab21cdbe43c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.84,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.5,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.6,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/1ef92f4d-162d-4a88-9b81-4968b8775b73",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.16,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/7f1acf49-b4c9-42ae-9109-8021b7c4b814",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 25.35,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.2,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.98,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/fae17b55-5721-48cc-a619-d9318e6ad6c7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.06,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.73,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.79,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.36,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/cf9e5017-abc8-46c8-b48f-190549f4317e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.93,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.69,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.47,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/5a45b9cd-e293-47b0-aa0b-c3ac2e4c7aaf",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/3d80ccd3-7069-4c42-982e-df103673d459",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.08,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.39,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.09,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/40440591-6ac0-47fd-8bbe-57cfc46ad0b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.99,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.45,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps/4dc41da0-9b76-421c-8a77-9f090335753a",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.39,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps/a519c977-18de-478f-904b-5e85149d4d0c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.47,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps/7b00ad56-94d5-4b31-ad95-ec148c2aa6e5",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.82,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.api.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.affinitylabels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.58,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.affinitylabels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.19,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.05,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusterlevels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusterlevels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.45,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.94,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.7,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.01,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.45,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.63,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/57",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.08,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.73,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.02,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.98,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.icons.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.54,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.icons.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.85,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.71,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.66,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/938ec820-56e7-4d69-9fd9-f4fc0fab5022",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.55,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.macpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.67,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.macpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.71,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networkfilters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networkfilters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/5034fcd4-bd5a-4056-a04c-31fcd39f0c82",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.94,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.6,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.38,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.6,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.08,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.17,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.7,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.96,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.29,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/e9693c95-cba3-45a8-b6ac-0e627ff4c7c1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.9,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.61,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.14,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.12,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.91,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/b20ef56b-92f1-44d3-bf74-e1540cdd72fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.67,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.58,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.58,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.06,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.29,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.58,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.04,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.imagetransfers.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.imagetransfers.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/6f7adf35-0807-48f3-b118-2d5e11ed671c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.options.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/options",
- "path_resolved": "/ovirt-engine/api/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.options.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.97,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.31,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.03,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.36,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.12,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/16bdbfdb-7214-4df2-9628-b25c83a213f3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.14,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.92,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.84,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c613423f-ea14-4a2e-9dd2-c067496c4820",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.23,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.21,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.88,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.58,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.65,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/e4dcfffb-0b18-476b-b039-1df9a7a1e990",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.92,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.29,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.53,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.63,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.16,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.81,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.64,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.05,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.62,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.63,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.15,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.28,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.11,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps/09ae34b1-8eef-4908-bfc9-e06af58ddb60",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.29,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.api.v4.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4",
- "path_resolved": "/ovirt-engine/api/v4",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.64,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.affinitylabels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.84,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.affinitylabels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.61,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusterlevels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.16,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusterlevels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.48,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.93,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/57",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.11,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.47,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.09,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.98,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.9,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.icons.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.icons.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.11,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.2,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/938ec820-56e7-4d69-9fd9-f4fc0fab5022",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.macpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.91,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.macpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.97,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networkfilters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.18,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networkfilters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/5034fcd4-bd5a-4056-a04c-31fcd39f0c82",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.26,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.49,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.22,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.24,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.38,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/e9693c95-cba3-45a8-b6ac-0e627ff4c7c1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.08,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.76,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.9,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.23,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.02,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.52,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/b20ef56b-92f1-44d3-bf74-e1540cdd72fb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.01,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.27,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.39,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.88,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.64,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.08,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.47,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.78,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.9,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.imagetransfers.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.16,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.imagetransfers.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/6f7adf35-0807-48f3-b118-2d5e11ed671c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.options.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/options",
- "path_resolved": "/ovirt-engine/api/v4/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.options.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.7,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.84,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.64,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/364a729f-d01f-4ec5-8aa9-961fa506743c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.99,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.19,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.69,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.1,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c613423f-ea14-4a2e-9dd2-c067496c4820",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.33,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.87,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.85,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.81,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.97,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/e4dcfffb-0b18-476b-b039-1df9a7a1e990",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.91,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.95,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.57,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.27,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.25,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.73,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.63,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.75,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.74,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.54,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.34,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.88,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.22,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.98,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.35,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.2,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.02,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.25,
- "detail": ""
- },
- {
- "series": "4.5",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a/steps/06852785-9566-4538-87ec-5cc6f3cbf8da",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.71,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "api.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.83,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitylabels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitylabels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.54,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitylabels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.06,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitylabels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/3e7a2d6a-8f71-4cb6-9c7a-cea93c76efd8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.95,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitylabels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/a1b88c77-4084-4590-9ad4-ea74f58a0a49",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.41,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.66,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.72,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/5ec85176-ead8-4ba5-a3b1-32bc2ae3caf1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.51,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/019f1f3b-f70e-4f03-9abf-ce4ad5dd2e1a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusterlevels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.23,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusterlevels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusterlevels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusterlevels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/b3dd014a-9580-4031-83c2-2674f9815840",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.59,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusterlevels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/4b854478-40cd-4a5b-b497-c0261767c5ec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.97,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.71,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.09,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/38cbd71f-19e9-41b1-aa46-f6f72099c64b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.12,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/8815e14e-1556-4275-b538-2b2c5a570ba3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.53,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 45.09,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.83,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 101.22,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 23.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 44.93,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/fb85e650-c204-4725-8163-a0cea0852da2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.69,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/54f06936-cc0e-4423-9d17-3bb78d6e3eca",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.13,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 14.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.36,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/c84a7d11-6dfe-48fb-a5e6-9abd34ffd745",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.22,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/c430ef73-ef17-4cc3-92aa-e29174b2cd8f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 21.98,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.01,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.reduce",
- "method": "POST",
- "path_template": "/ovirt-engine/api/disks/{id}/reduce",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/reduce",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.42,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.89,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 8.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.17,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/5d0a55ed-d71b-40cc-9960-93ac6cc2d659",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.56,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.68,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.39,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.95,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/58",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.11,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/686ab0a8-76ab-4fdb-ae64-6fcfa26602c6",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 13.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.06,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.9,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.3,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/824e4a06-3fc9-4190-a9f8-40a6fb8b9ead",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 25.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/18ef9d52-1c58-4cab-bb48-564547582ba2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.34,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.85,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/32216942-5b93-4ccf-9173-f4542deaa8d3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/8ea71d8f-c540-4f81-934c-592cfdf2db9f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.18,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.84,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/b6596e4e-0f05-406f-bca8-f9bca88f022b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.08,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/05ac53d6-9969-4b05-9786-a3acea3bd9fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.28,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.36,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.61,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.3,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.57,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.87,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.31,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.enrollcertificate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{id}/enrollcertificate",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/enrollcertificate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "icons.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "icons.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "icons.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.06,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "icons.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/95e9d5ed-42f3-4351-90a0-7f4482698f98",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.29,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "icons.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/b8738bb9-553d-43f6-b626-63aeee35a7f4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.08,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.94,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.39,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.33,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/5236b5b3-fe2b-45f7-9463-d9e19ef90c02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/f276977f-f64e-4333-b1d9-339487848aae",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.34,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.63,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/5f2e66b8-f0b3-4ce4-a450-1bc464e2c2db",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/fb7c9646-efeb-485e-a955-c32837663bf7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/c7a64992-e67c-4a83-87ca-2c77da08424f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/48af795c-f797-48c9-ab74-87bd009f1b83",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "macpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.83,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "macpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.83,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "macpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "macpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/eb8f5ece-abe7-49c0-a95e-ac8924bd212a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "macpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/b03f458e-b921-45a9-b5de-de0b149dfa20",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.12,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networkfilters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networkfilters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networkfilters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/d1f6a031-77b9-4097-a9d0-574bbdb29d4a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networkfilters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/5d291c23-84f6-4ff7-8ead-07cc15a0c96b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networkfilters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/37f26c67-1aa2-4046-9041-9c2847fa5d21",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.17,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.73,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.54,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/b4dbeb52-782d-4d97-9f0f-623a2b265326",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.8,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/d5a11363-1466-4bdb-8705-c102e34424c9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.4,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/8151afdd-1c8b-4c9d-9c09-65a2a3fdd7c4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/40f902ad-f5cf-4a53-9ba7-6b2715919ad7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.22,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.81,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/108f9765-6f70-4a02-b39e-44266877b897",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.45,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/ce8501dc-dfee-490a-a4f9-d90588fd2452",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.38,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/edecd1ce-13de-46b4-9e3f-f27d83a9ea97",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/aa76cd49-e0a6-4506-a2e2-3ac92c1cf0d4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/82dcfded-1f35-43d6-804f-2120b481d1b8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/14697bc7-4c29-4035-985b-00b630d52d86",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.98,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/9bafa2da-d4a5-4536-9b90-55754a7b83b1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.17,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.73,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/44090a41-323c-472e-b74f-9b46c77f82a4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.73,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.99,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 18.64,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f57c3357-a382-424a-a573-003ba0a1227c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 32.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/a1cfc90b-642a-4693-a8e5-5a9bf653442b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.56,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/ca8fe370-31d7-40eb-b8f6-c17dba4f6a09",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/ac2bf0d6-4e80-44ce-9643-25fcbb920672",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.48,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.87,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.23,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.17,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/fc4d4ff2-5ca7-41d9-90f6-9456a9b9d4c4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/b361ecdb-3ee3-4072-a65c-7a588d496533",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.68,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/c2ef941a-101f-4d94-aafd-e5a8b50c3b07",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.97,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/7a6c292b-a4c9-4221-b53d-b1c2e65ffbb0",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/761610f5-b609-490d-8145-c6f14533d690",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.56,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.79,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.65,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/448fed80-9df8-42b7-92eb-9cb5491e6d13",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/ebc2ca56-754f-4825-b219-10ff9461f9c3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.34,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.88,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.53,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.reduceluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{id}/reduceluns",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/reduceluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.88,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.51,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/703c3eb1-dbe2-476e-9603-5a3227cf3b1f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/4318fd00-5d6c-48c6-b980-4456e8754609",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.14,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/ca7e7cac-1f14-46f9-99e9-d781e5a2da79",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/3f2ef320-079b-4a8d-be7e-694964dad7f0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.85,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.11,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.64,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.41,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/186d4224-0ef5-43c8-92f8-ffd6060600b1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.6,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.32,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.72,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/47e01f90-a672-400e-942a-ffd31eba31ec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.93,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/b58664bd-fba3-43b6-bbd9-f3c3cf9fc0fc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.87,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/7e723772-ee06-4e19-9381-041ba72abe5e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.13,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/ccc4d06b-0002-410d-adab-b546ed3b4c01",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.73,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.31,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.99,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.72,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.6,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.23,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.68,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.49,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.29,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.97,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 31.46,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 64.9,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/b617b5e1-1ee2-4a0e-8525-c5a3317bf19b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.98,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/8b014539-0755-4190-8c3b-a9eb0bef1a33",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.4,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "imagetransfers.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "imagetransfers.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.57,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "imagetransfers.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/2464359a-780c-45f8-b548-bd1c8a5ea664",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "imagetransfers.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/cf3cf7f8-c304-4c9a-a156-dda644942d98",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "imagetransfers.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/d9fe3d08-3506-4e56-9bbb-de21e1a553fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.33,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "options.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/options",
- "path_resolved": "/ovirt-engine/api/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "options.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/options",
- "path_resolved": "/ovirt-engine/api/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.28,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "options.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.84,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "options.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/40c7fc49-d10c-4183-9dbf-4ed6d4493241",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.18,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "options.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/de7af5f6-219c-4407-bfd6-403feefcd7ab",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.65,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.29,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.53,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/2ddb0740-bda8-43e2-b163-c86fec223d16",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.17,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/76bfe4af-fe18-401b-87b0-6be54d7323df",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.12,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.08,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/130d5d36-af29-45a1-ab06-c686315c18a3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/863d463b-62cc-428c-b32d-7318e45d6c72",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.88,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.56,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.81,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/340fa26d-e2ef-47fc-90e4-d28e6d6db704",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/d09edf62-766e-42fc-9a09-d33e86437ad5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.51,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.74,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 25.89,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/cec2014f-fc25-4e46-a978-6befb0cdc3e1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/dd2a46c1-8853-48cb-a59e-0449ff73284c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/70c93d5e-5d88-40f1-8fb4-7f3895328e45",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 46.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/1b070343-2596-4b31-961a-40e907a76d7d/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.45,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.26,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/316cd6a7-2657-47f2-bcfb-51938b1beb89",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/e7d7f8ae-3d9c-4ba7-b518-419a9a1cac23",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.04,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.15,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/73180d65-28be-4d09-86f8-884dc8534386",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.47,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.14,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.8,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/bf500a40-5322-44fb-a545-0c70ac089bb3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.3,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/3c37a11f-8eee-4baa-ba36-e8f548f87947",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/da955ec6-f532-4704-9ded-0975adfd2d08",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.85,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.42,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.52,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/24984f1e-f785-409a-afa1-a4c92d996fcc",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.19,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/18eea301-0a50-44ca-a84b-cb4ee43c8cc8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.72,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.49,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.98,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/69688121-5c9a-4d63-9e06-5ed9d6c93931",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.18,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/bfbf71e9-e097-436a-9cd9-dc6769d52cb2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.97,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.32,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.85,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.42,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/87d0cac3-ade1-488a-ae92-548881467c3b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.79,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.74,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.79,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/96b9d53a-88b2-464b-a8bd-5e8f16aed11c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/1be4250b-f3b2-44bc-b0d3-4d98146eca9a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.74,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.14,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.19,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a091b768-2a69-4ac2-9cfb-d7931810e6f0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/115162c4-f5d5-4729-8ba1-dcc66eafa224",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.36,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/45eadc85-28a7-4a8f-912b-2f5d96fbaf71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.98,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 21.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 17.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/4d0690e7-fab2-421c-a588-c6bc87e704b3",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 25.57,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/1473247e-747c-45bf-9355-83ecd1f77088",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.77,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.28,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/f487df56-0ebf-46a2-a55c-63f77e92d575",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.3,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 8.9,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.06,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/418b2090-0b11-4b61-8532-9eb5799779a8",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.94,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/d6ac59d1-2d03-4cf1-a38f-184b2620b029",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.54,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.41,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.65,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/059dc264-59a7-4457-8208-bed511d286b7",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/10ae932a-dbd7-4163-92a6-b6fd15b573b3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.59,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.11,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.97,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/1f98a07a-9f8c-4f97-955a-47eaaeae6bf2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/6e4d0497-5aae-4e1b-9fda-205474045125",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.85,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.06,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 16.66,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/40f64b34-b381-498d-92d5-7e9b5f26f3b3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/69646c89-da17-45d8-b513-c18edbb9561a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.91,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.56,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.23,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/4106be5f-fd4a-4c0d-a33a-946a64abe7fe",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.99,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.71,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.61,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.33,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/b84b88a8-116f-42c6-b700-22f5de8f1746",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.17,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/5d248290-dbc0-4118-b1c1-fb6e48962752",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.01,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.54,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/5c1c56d9-9523-4174-a00b-ee7889790267",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.83,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.09,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/d1783e6f-4562-4122-93c1-9ccafa13556d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.72,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/d7df8542-4778-42e3-8005-8cc20dcfde26",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/74ae7010-137d-488c-a0b7-b098485466b4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.21,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/bf0fdeea-a600-4335-be72-d65835bb25b4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.14,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.99,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 3.83,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps/502863f2-b022-4717-b6b2-60bf1e445759",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps/d388cf4b-90db-46a6-b4b7-98d38f5026d4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.71,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps/f70533b2-24a9-4677-b26c-acf63c36f672",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "api.v4.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4",
- "path_resolved": "/ovirt-engine/api/v4",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.65,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitylabels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitylabels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.47,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitylabels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitylabels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/cd28e6a6-32fd-4566-b18e-7dca553d353f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.84,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitylabels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/98dd035b-29a1-4d42-9000-aed79fbcced0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.32,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "bookmarks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.69,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "bookmarks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "bookmarks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "bookmarks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/06f507da-bcc9-49bf-9210-afad283c483e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.69,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "bookmarks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/f3956416-bb9f-4b05-95f4-83442cefdcf1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusterlevels.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusterlevels.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.85,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusterlevels.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.26,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusterlevels.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/1f6319fd-44b7-4dfa-919f-1ef25eb3fb64",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.9,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusterlevels.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/03f0907c-2437-4837-8601-b23c2e3213a5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.47,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.71,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/ef4ada51-439f-4d8c-949b-cbcf28163653",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/955fb6c6-dec7-480f-b54a-6b364ad12f37",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.49,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.resetemulatedmachine",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/resetemulatedmachine",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/resetemulatedmachine",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 4.77,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.syncallnetworks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/syncallnetworks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/syncallnetworks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.95,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.57,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.refreshglusterhealstatus",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}/refreshglusterhealstatus",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/refreshglusterhealstatus",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.57,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/e4bf3a1f-62b2-4779-8303-3583057d4042",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.72,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/18cfc2ba-6f20-414b-b0fb-b8c7b96e006b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.79,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "datacenters.cleanfinishedtasks",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}/cleanfinishedtasks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/cleanfinishedtasks",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 5.46,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.11,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/137d39f9-c70c-4186-afcd-b01ef992cf19",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.98,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/8aafaa9d-f075-42d4-8b1a-b56ceb9ff75b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.09,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.copy",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/copy",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/copy",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.11,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.83,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.move",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/move",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/move",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.sparsify",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/sparsify",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/sparsify",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.reduce",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/disks/{id}/reduce",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58/reduce",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "domains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.95,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "domains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 4.25,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "domains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.57,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "domains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "domains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/f7e1b2ee-e74d-425a-8ab4-14c2547f647c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "events.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.42,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "events.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "events.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.93,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "events.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/58",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "events.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/5a9f12cf-332e-4ce1-81a0-eaf99b544e7b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.23,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "externalhostproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.41,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "externalhostproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "externalhostproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "externalhostproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/f774ceca-e0d4-47e4-bbe5-b894db12b603",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.97,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "externalhostproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/de7a10f0-0b0f-4eaf-b33a-d0198ca4aaec",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "groups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.33,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "groups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.43,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "groups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "groups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/11c28957-f4c0-4c1d-9648-0e72f9e77b0d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "groups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/f93f1013-e439-4d65-a58b-b72c10549a53",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.49,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.18,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/ac290111-0085-4c9f-8e1b-34525d9ff689",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.72,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/7a414401-f803-4818-9c0b-473161145e32",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.04,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 27.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 28.21,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.approve",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/approve",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/approve",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.install",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/install",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/install",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.fence",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/fence",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/fence",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.79,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.iscsidiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsidiscover",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsidiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.iscsilogin",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsilogin",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/iscsilogin",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.commitnetconfig",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/commitnetconfig",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/commitnetconfig",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.32,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.refresh",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/refresh",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/refresh",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.23,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.unregisteredstoragedomainsdiscover",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/unregisteredstoragedomainsdiscover",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/unregisteredstoragedomainsdiscover",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.71,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.upgrade",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgrade",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgrade",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.upgradeCheck",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgradeCheck",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/upgradeCheck",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.65,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "hosts.enrollcertificate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}/enrollcertificate",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/enrollcertificate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "icons.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "icons.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "icons.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.84,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "icons.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/2363353e-8443-4454-94bc-66f9f94b0de9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.06,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "icons.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/f4706eb2-d186-46dc-8d94-232d15f4f0d6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.84,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "instancetypes.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.77,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "instancetypes.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "instancetypes.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.73,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "instancetypes.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/9325afb3-8abe-4fb0-8d78-9f226c422dac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "instancetypes.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/2abee7ce-dfad-42bb-820b-0c6c88db25da",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.65,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "jobs.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "jobs.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "jobs.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "jobs.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "jobs.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/b9ab94f6-d863-435b-887a-1d2c41a4e983",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 2.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "katelloerrata.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "katelloerrata.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.59,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "katelloerrata.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/fb7c9646-efeb-485e-a955-c32837663bf7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "katelloerrata.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/4bd09b3b-00f7-434c-9aa6-ccf0168e3d31",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "katelloerrata.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/ec1841c6-3c36-4e03-b1c6-31b222a5510b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "macpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "macpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "macpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "macpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/576374c9-5f28-47ef-a849-9c70acae8b3d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.41,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "macpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/ac2a8d53-54dd-468d-a7e6-aa406a77ea70",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networkfilters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networkfilters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networkfilters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/d1f6a031-77b9-4097-a9d0-574bbdb29d4a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.88,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networkfilters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/5b34d621-ac6a-4707-a476-066fe93e04cd",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networkfilters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/da4cebdc-9224-4f55-a37a-6e883938a23d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 5.22,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.8,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/36870231-918d-4c4d-aa54-e81eb8284335",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.9,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/32259854-8f1a-403a-98e7-fd8bcaa6f915",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.68,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackimageproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackimageproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.25,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackimageproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackimageproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/542c198b-db8f-40c6-af27-91630a7c1c4a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.91,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackimageproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/7cb70042-f3cd-4b41-90a9-8ab2477b8a7e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstacknetworkproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstacknetworkproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 3.3,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstacknetworkproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstacknetworkproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/bb9ff234-4d86-4fb0-b068-ef2248f6f90d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.52,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstacknetworkproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/33fda5dd-2b44-4fef-a88b-891c780d233f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.08,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackvolumeproviders.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.01,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackvolumeproviders.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackvolumeproviders.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackvolumeproviders.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/d81cc062-e5d3-41b7-8210-c02395551d21",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.47,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "openstackvolumeproviders.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/ff71d0f7-5833-4d5f-8832-1128f6fd61ac",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.81,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "operatingsystems.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.13,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "operatingsystems.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "operatingsystems.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/82dcfded-1f35-43d6-804f-2120b481d1b8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.21,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "operatingsystems.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/7c070a5b-94c3-4eea-9dac-5c0f9973ac3a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "operatingsystems.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/cad7b8fb-f63a-49d1-9eca-132762580a8d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.25,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.61,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/29fe8982-84e1-4f9e-8131-cbcc9acd37d4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.43,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "roles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.11,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "roles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 22.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "roles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.15,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "roles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/ed3a7ba4-238f-44b1-93d2-bd71a877c184",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "roles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/85750385-87df-47b0-a8c6-6e29c90216d6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.34,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicies.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicies.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicies.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicies.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/105430b8-f938-4463-bf25-d1aac09a77d6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicies.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/3ec7b81d-42eb-467b-8f68-7ff8e21dfe72",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 24.54,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicyunits.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicyunits.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicyunits.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.12,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicyunits.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/5c9bf290-ebe5-4542-8e7a-ba2a87ea36b3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "schedulingpolicyunits.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/401c7d1a-25e8-4c51-8534-9e855bc63bb4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.71,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storageconnections.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.38,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storageconnections.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storageconnections.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/c2ef941a-101f-4d94-aafd-e5a8b50c3b07",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.06,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storageconnections.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/5ff674c7-c02b-43d9-bd30-6d887f5e1e28",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storageconnections.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/eeb4a09c-d86d-4a61-86eb-fa53c959f496",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.59,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.11,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 18.57,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.8,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/f23b8f45-d37b-4b4e-a3e8-4eeace173067",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.15,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/26a376c5-ca4f-41fe-8109-c3f80b777a35",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.8,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.refreshluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/refreshluns",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 18.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.updateovfstore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/updateovfstore",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.42,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.reduceluns",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/reduceluns",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/reduceluns",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.91,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.54,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/93173bfa-a325-43f4-9c0d-10b82006e940",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.73,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/854b11f0-b82b-4e10-b221-4874eb8ec04b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.47,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/7b60299f-7d2a-4855-be43-407d3ef6d92e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.15,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/6e8373d5-ff7f-4596-8ffd-3f12f0238c1c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.6,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "templates.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "users.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.25,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "users.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 5.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "users.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "users.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.45,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "users.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/3b19e3b4-d925-4387-84d6-880cc9335b30",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.89,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vmpools.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.69,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vmpools.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.84,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vmpools.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.6,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vmpools.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/90df10fe-2be7-428f-83b9-86467c632328",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vmpools.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/06c6b28b-b6c1-4b19-bc01-db21cadb2a13",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.56,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 22.52,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.14,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/cf951395-4d01-44b9-acbf-28b92ce223de",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.76,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/5d7c9d26-a199-4316-823b-4331dbd4b39c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.start",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/start",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 63.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.stop",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/stop",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 32.88,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.shutdown",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/shutdown",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 41.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.reboot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/reboot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 22.53,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.suspend",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/suspend",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 14.01,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.migrate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/migrate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.cancelmigration",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/cancelmigration",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.clone",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/clone",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone",
- "kind": "action",
- "status": "passed",
- "http_status": 409,
- "expected_hint": 201,
- "duration_ms": 8.13,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.export",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/export",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 15.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.screenthumbnail",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/screenthumbnail",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.ticket",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/ticket",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 7.93,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.logon",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/logon",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.maintenance",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/maintenance",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.preview_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/preview_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.66,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.commit_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/commit_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.undo_snapshot",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/undo_snapshot",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.06,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.freeze_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/freeze_filesystems",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 20.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vms.thaw_filesystems",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{id}/thaw_filesystems",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 22.11,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.48,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.21,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/a8a89366-d9a7-44b1-b369-5666e5fafceb",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.01,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/006f75b5-e512-4b4e-9182-b6cae6d92d59",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.8,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "imagetransfers.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.51,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "imagetransfers.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 18.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "imagetransfers.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/2464359a-780c-45f8-b548-bd1c8a5ea664",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.68,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "imagetransfers.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/0c038838-7b7f-4df3-9063-6901e7f58c61",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 19.72,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "imagetransfers.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/54f5d416-930e-44d7-a6f6-36891c97b123",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "options.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/options",
- "path_resolved": "/ovirt-engine/api/v4/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.65,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "options.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/options",
- "path_resolved": "/ovirt-engine/api/v4/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 20.21,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "options.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.06,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "options.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/9daa00fa-b8e7-470f-b8fd-eb0941d62590",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.74,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "options.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/4bab2eb9-7958-4aed-89d5-ab88705b851d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.74,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 19.61,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 25.25,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 15.65,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/0dbd011c-1378-4c09-bab5-911d7abe2d91",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/da37d8a1-ff65-4811-abbc-a35cd0d7722f",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.31,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 18.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 13.26,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/d4135436-90c8-416a-8667-a28ed39fab08",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.49,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/11b9e524-371b-4759-a02a-a2ad37c4009e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.68,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "cdroms.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.31,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "cdroms.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 9.74,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "cdroms.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.99,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "cdroms.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/5faa7720-dcce-498c-8a06-7635e3e22298",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.61,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "cdroms.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/8eb470e5-9d46-45d3-8bd7-7c5c8c92d798",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.81,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/7900ff40-bbff-4b05-ae6e-ca84ac16c3a1",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.19,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/7f032024-6ab5-4f76-8f3a-e22fe7ac8425",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.38,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/a7e72726-d702-4788-9ebf-b68c4cb68a9d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.3,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "snapshots.restore",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}/restore",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/1ea9abae-297b-4d75-8209-613325f16406/restore",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 8.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.66,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/e6d003ee-87ff-4d5e-aad3-4720a69d90ca",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/8ed682cb-0bc4-4fa1-8b80-a44f3a2d42f4",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.48,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.29,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.72,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.43,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 8.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/fe2db15f-4919-4ad9-9a88-f8715a1acc1c",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.49,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "graphicsconsoles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.73,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "graphicsconsoles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 8.56,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "graphicsconsoles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/bf500a40-5322-44fb-a545-0c70ac089bb3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "graphicsconsoles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/255756b6-ba0e-4d8f-8c67-c2c34fd89d0b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.49,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "graphicsconsoles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c40667e7-9b35-417b-bbd7-adc42ba54aa5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.81,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 10.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.52,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/2386b6fc-3bf7-4e23-b22b-8787e65d8bbb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.38,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/da4ddfbc-41b8-4627-95b8-3a51dee43a0d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.94,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.update",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/update",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 12.83,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.attach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/attach",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.95,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.detach",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}/detach",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.81,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.13,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 4.87,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 13.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/4c878fcb-c673-4860-ba30-471e952b0d81",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "tags.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/fcf78ea7-a842-4c5c-bc66-8e34d49e26f4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.13,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 6.63,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.87,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/e89c6a32-b1da-4d11-98a4-218be801a6d1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.74,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "statistics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.84,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "statistics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.84,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "statistics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.6,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "statistics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/1255391b-89a4-4fe0-a568-d0878bdfc6eb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "statistics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/3aa5c15f-5d29-4177-8b37-d217de0ecdb2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.22,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitygroups.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitygroups.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitygroups.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a091b768-2a69-4ac2-9cfb-d7931810e6f0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitygroups.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/b3a1462b-c7ea-42b5-8b25-e8dd96c420aa",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "affinitygroups.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9a098300-f73c-4f85-a9f7-e7725e4f817a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 18.88,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 15.74,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 23.12,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/4b99d402-2497-4008-83d6-c716019b5d24",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 18.42,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/20651a78-1923-4802-93a6-7a84eeaf2fed",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 72.93,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 55.23,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 40.79,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 23.08,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 22.61,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/4ad886c6-df23-47dc-94fc-c19309fa6075",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.72,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.22,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 400,
- "expected_hint": 201,
- "duration_ms": 5.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/7497ac73-538f-4960-9cd9-07191386b13f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/1a2bcd90-50eb-44b1-ac2f-3a5b3f6dfbb1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.activate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}/activate",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/activate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 13.33,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "storagedomains.deactivate",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}/deactivate",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/deactivate",
- "kind": "action",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.91,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.18,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 7.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/7b960492-46b2-42eb-9801-323ee8d96ec2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.95,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "clusters.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/fcc043cd-ef28-49fd-bfea-30d15c788339",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.46,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.26,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 11.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.64,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/a87f522e-2ebd-4763-be99-52124e9a7b2c",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 15.66,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "networks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/5c54fa7c-a5ed-4180-b3fb-71f4f25f9228",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.04,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "quotas.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.26,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "quotas.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 25.56,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "quotas.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "quotas.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f6335116-3619-4eee-be49-48975828805b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 35.57,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "quotas.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/0df6adba-af2f-40d8-8780-1f2a1759db74",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 19.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.14,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 12.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 16.08,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 15.3,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "permissions.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/b45d498d-2f74-4328-8bbc-a5a1e889b6e5",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.68,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.61,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 201,
- "expected_hint": 201,
- "duration_ms": 15.69,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/42c16c2e-bc38-4d30-a75a-dce49c777eeb",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.99,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "vnicprofiles.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/35c468e1-d349-4152-a680-386d78c879cb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.63,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.18,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 16.65,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.73,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "diskattachments.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/98179b89-7401-4e60-8714-a8508ba83cfb",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.11,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 10.83,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "nics.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/2bf32267-99c8-47e9-bc86-e18c2aa58268",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.61,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 11.04,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.98,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/b3fe5630-3ac5-457d-ad75-87dfc9eabd13",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 11.33,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "disks.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/b32d9803-798d-41eb-b6f7-4d8a376fd7a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "files.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.38,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "files.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 201,
- "duration_ms": 9.06,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "files.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "files.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.66,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "files.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/76bce141-42c8-4643-86ba-e260fb80ddb0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.04,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "steps.list",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.52,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "steps.add",
- "method": "POST",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 201,
- "duration_ms": 8.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "steps.get",
- "method": "GET",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps/da1f3365-a2ec-43ea-88a6-7e00d9f69532",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.57,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "steps.update",
- "method": "PUT",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps/2ef896a8-92a8-4585-a23a-a32f391f32ee",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "steps.remove",
- "method": "DELETE",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps/37f7a009-5294-4606-ac49-8ab366db34aa",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.31,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.api.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api",
- "path_resolved": "/ovirt-engine/api",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.affinitylabels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/affinitylabels",
- "path_resolved": "/ovirt-engine/api/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.91,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.affinitylabels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks",
- "path_resolved": "/ovirt-engine/api/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.12,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusterlevels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusterlevels",
- "path_resolved": "/ovirt-engine/api/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusterlevels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters",
- "path_resolved": "/ovirt-engine/api/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters",
- "path_resolved": "/ovirt-engine/api/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.99,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.64,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks",
- "path_resolved": "/ovirt-engine/api/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.12,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/disks/{id}",
- "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.49,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains",
- "path_resolved": "/ovirt-engine/api/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.49,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/domains/{id}",
- "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.59,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events",
- "path_resolved": "/ovirt-engine/api/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 22.97,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/events/{id}",
- "path_resolved": "/ovirt-engine/api/events/58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.53,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.34,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups",
- "path_resolved": "/ovirt-engine/api/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.4,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/groups/{id}",
- "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts",
- "path_resolved": "/ovirt-engine/api/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.51,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.icons.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/icons",
- "path_resolved": "/ovirt-engine/api/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.61,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.icons.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/icons/{id}",
- "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes",
- "path_resolved": "/ovirt-engine/api/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.49,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.39,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs",
- "path_resolved": "/ovirt-engine/api/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.8,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata",
- "path_resolved": "/ovirt-engine/api/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/katelloerrata/fb7c9646-efeb-485e-a955-c32837663bf7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.macpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/macpools",
- "path_resolved": "/ovirt-engine/api/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.85,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.macpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.3,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networkfilters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networkfilters",
- "path_resolved": "/ovirt-engine/api/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.26,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networkfilters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/networkfilters/d1f6a031-77b9-4097-a9d0-574bbdb29d4a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks",
- "path_resolved": "/ovirt-engine/api/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.95,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.68,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.77,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.09,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.6,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems",
- "path_resolved": "/ovirt-engine/api/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.51,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/operatingsystems/82dcfded-1f35-43d6-804f-2120b481d1b8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.49,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions",
- "path_resolved": "/ovirt-engine/api/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.28,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.95,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles",
- "path_resolved": "/ovirt-engine/api/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.89,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/roles/{id}",
- "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.94,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.26,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.71,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.9,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections",
- "path_resolved": "/ovirt-engine/api/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/storageconnections/c2ef941a-101f-4d94-aafd-e5a8b50c3b07",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.68,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains",
- "path_resolved": "/ovirt-engine/api/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.04,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.79,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags",
- "path_resolved": "/ovirt-engine/api/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/tags/{id}",
- "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.53,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates",
- "path_resolved": "/ovirt-engine/api/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.77,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.99,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users",
- "path_resolved": "/ovirt-engine/api/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.31,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/users/{id}",
- "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.34,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools",
- "path_resolved": "/ovirt-engine/api/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.18,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms",
- "path_resolved": "/ovirt-engine/api/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.87,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.85,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.imagetransfers.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/imageTransfers",
- "path_resolved": "/ovirt-engine/api/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.imagetransfers.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/imageTransfers/2464359a-780c-45f8-b548-bd1c8a5ea664",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.39,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.options.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/options",
- "path_resolved": "/ovirt-engine/api/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.91,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.options.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/options/{id}",
- "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.4,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.67,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.28,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.47,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.66,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.31,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.88,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/8da2d260-99a8-4391-8c30-ea94b5281139",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.26,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.61,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.69,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 10.98,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.84,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/bf500a40-5322-44fb-a545-0c70ac089bb3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.98,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.87,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.81,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.21,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.79,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.66,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.46,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.36,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a091b768-2a69-4ac2-9cfb-d7931810e6f0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.25,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.12,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.6,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.58,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.53,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 23.25,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.57,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.9,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.67,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.9,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.69,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.64,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.71,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 20.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 24.93,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.62,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.56,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.13,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 3.43,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.19,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.01,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.77,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps/dc2b1ae2-63b6-4497-acfb-ed188bec125f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.95,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.api.v4.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4",
- "path_resolved": "/ovirt-engine/api/v4",
- "kind": "root",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.affinitylabels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/affinitylabels",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.59,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.affinitylabels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.09,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.bookmarks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/bookmarks",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.1,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.bookmarks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/bookmarks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.81,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusterlevels.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusterlevels",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.33,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusterlevels.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.13,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters",
- "path_resolved": "/ovirt-engine/api/v4/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.datacenters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.46,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.datacenters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.6,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/disks",
- "path_resolved": "/ovirt-engine/api/v4/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.39,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.88,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.domains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/domains",
- "path_resolved": "/ovirt-engine/api/v4/domains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.38,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.domains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/domains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.events.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/events",
- "path_resolved": "/ovirt-engine/api/v4/events",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.events.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/events/{id}",
- "path_resolved": "/ovirt-engine/api/v4/events/58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.externalhostproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.51,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.externalhostproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.52,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.groups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/groups",
- "path_resolved": "/ovirt-engine/api/v4/groups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.48,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.groups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/groups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.4,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.hosts.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts",
- "path_resolved": "/ovirt-engine/api/v4/hosts",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.35,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.hosts.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.28,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.icons.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/icons",
- "path_resolved": "/ovirt-engine/api/v4/icons",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.icons.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/icons/{id}",
- "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.instancetypes.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/instancetypes",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.5,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.instancetypes.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/instancetypes/{id}",
- "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.jobs.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs",
- "path_resolved": "/ovirt-engine/api/v4/jobs",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 14.04,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.jobs.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.katelloerrata.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/katelloerrata",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.3,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.katelloerrata.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}",
- "path_resolved": "/ovirt-engine/api/v4/katelloerrata/fb7c9646-efeb-485e-a955-c32837663bf7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.36,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.macpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/macpools",
- "path_resolved": "/ovirt-engine/api/v4/macpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.macpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/macpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.45,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networkfilters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networkfilters",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.05,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networkfilters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networkfilters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networkfilters/d1f6a031-77b9-4097-a9d0-574bbdb29d4a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.22,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks",
- "path_resolved": "/ovirt-engine/api/v4/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.83,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.92,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstackimageproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.02,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstackimageproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.81,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstacknetworkproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.42,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstacknetworkproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.07,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstackvolumeproviders.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.64,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.openstackvolumeproviders.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}",
- "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.operatingsystems.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/operatingsystems",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.23,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.operatingsystems.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}",
- "path_resolved": "/ovirt-engine/api/v4/operatingsystems/82dcfded-1f35-43d6-804f-2120b481d1b8",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/permissions",
- "path_resolved": "/ovirt-engine/api/v4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.43,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.roles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/roles",
- "path_resolved": "/ovirt-engine/api/v4/roles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.57,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.roles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/roles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.schedulingpolicies.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.24,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.schedulingpolicies.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.schedulingpolicyunits.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.37,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.schedulingpolicyunits.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}",
- "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storageconnections.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storageconnections",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.97,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storageconnections.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storageconnections/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storageconnections/c2ef941a-101f-4d94-aafd-e5a8b50c3b07",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.93,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.33,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 50.12,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/tags",
- "path_resolved": "/ovirt-engine/api/v4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.3,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 13.59,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.templates.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates",
- "path_resolved": "/ovirt-engine/api/v4/templates",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.47,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.templates.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.04,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.users.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/users",
- "path_resolved": "/ovirt-engine/api/v4/users",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.users.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/users/{id}",
- "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.73,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vmpools.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vmpools",
- "path_resolved": "/ovirt-engine/api/v4/vmpools",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.32,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vmpools.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vmpools/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms",
- "path_resolved": "/ovirt-engine/api/v4/vms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.89,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.88,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 2.66,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.93,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.imagetransfers.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/imageTransfers",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 5.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.imagetransfers.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}",
- "path_resolved": "/ovirt-engine/api/v4/imageTransfers/2464359a-780c-45f8-b548-bd1c8a5ea664",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.91,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.options.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/options",
- "path_resolved": "/ovirt-engine/api/v4/options",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.9,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.options.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/options/{id}",
- "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.28,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.2,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 5.15,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.cdroms.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.03,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.cdroms.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 9.26,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.snapshots.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.52,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.snapshots.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots/c8f3e9dd-ee9a-4fc5-a0e9-9c9dbbc210ae",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.59,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.56,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.78,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.86,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.graphicsconsoles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.28,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.graphicsconsoles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/bf500a40-5322-44fb-a545-0c70ac089bb3",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.16,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 10.82,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 16.0,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.98,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.tags.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 15.09,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.75,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 13.01,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.statistics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.43,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.statistics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.17,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.affinitygroups.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 15.99,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.affinitygroups.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/affinitygroups/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a091b768-2a69-4ac2-9cfb-d7931810e6f0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.27,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.94,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 12.06,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.6,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/clusters/{cluster_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 6.59,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storagedomains.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.91,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.storagedomains.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/storagedomains/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 3.68,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusters.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.67,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.clusters.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/clusters/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.41,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.93,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.networks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/networks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.34,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.quotas.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.44,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.quotas.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/quotas/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.56,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.01,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.permissions.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/datacenters/{datacenter_id}/permissions/{id}",
- "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 7.15,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vnicprofiles.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 11.7,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.vnicprofiles.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}",
- "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.36,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.diskattachments.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.4,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.diskattachments.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/diskattachments/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 8.23,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.nics.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/templates/{template_id}/nics/{id}",
- "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 13.55,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.disks.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 17.91,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.disks.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/disks/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 9.74,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.files.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 7.96,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.files.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/storagedomains/{storagedomain_id}/files/{id}",
- "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77",
- "kind": "item",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 6.54,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.steps.list",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps",
- "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps",
- "kind": "collection",
- "status": "passed",
- "http_status": 200,
- "expected_hint": 200,
- "duration_ms": 4.77,
- "detail": ""
- },
- {
- "series": "master",
- "operation_id": "head.steps.get",
- "method": "HEAD",
- "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}",
- "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4/steps/8a3068cb-6eeb-4a55-9542-b7276080206f",
- "kind": "item",
- "status": "passed",
- "http_status": 404,
- "expected_hint": 200,
- "duration_ms": 4.03,
- "detail": ""
- }
- ]
-}
diff --git a/pulumi-tests/reports/pulumi-stack-summary.json b/pulumi-tests/reports/pulumi-stack-summary.json
deleted file mode 100644
index 47f747c..0000000
--- a/pulumi-tests/reports/pulumi-stack-summary.json
+++ /dev/null
@@ -1,102 +0,0 @@
-{
- "total": 9150,
- "passed": 9150,
- "failed": 0,
- "skipped": 0,
- "coverage": {
- "declared": 9150,
- "probed": 9150,
- "critical": 0,
- "line": "9150/9150",
- "series": [
- {
- "series": "3.0",
- "declared": 622,
- "probed": 622,
- "critical": 0
- },
- {
- "series": "3.1",
- "declared": 664,
- "probed": 664,
- "critical": 0
- },
- {
- "series": "3.2",
- "declared": 672,
- "probed": 672,
- "critical": 0
- },
- {
- "series": "3.3",
- "declared": 770,
- "probed": 770,
- "critical": 0
- },
- {
- "series": "3.4",
- "declared": 800,
- "probed": 800,
- "critical": 0
- },
- {
- "series": "3.5",
- "declared": 858,
- "probed": 858,
- "critical": 0
- },
- {
- "series": "3.6",
- "declared": 918,
- "probed": 918,
- "critical": 0
- },
- {
- "series": "4.3",
- "declared": 948,
- "probed": 948,
- "critical": 0
- },
- {
- "series": "4.4",
- "declared": 966,
- "probed": 966,
- "critical": 0
- },
- {
- "series": "4.5",
- "declared": 966,
- "probed": 966,
- "critical": 0
- },
- {
- "series": "master",
- "declared": 966,
- "probed": 966,
- "critical": 0
- }
- ]
- },
- "methods": {
- "DELETE": 1146,
- "GET": 2314,
- "HEAD": 2314,
- "POST": 2230,
- "PUT": 1146
- },
- "series": [
- "3.0",
- "3.1",
- "3.2",
- "3.3",
- "3.4",
- "3.5",
- "3.6",
- "4.3",
- "4.4",
- "4.5",
- "master"
- ],
- "report_json": "/workspace/reports/pulumi-contract-coverage.json",
- "report_html": "/workspace/reports/pulumi-contract-coverage.html"
-}