From ae297258b1505460a182172d8363ef24cc4f4227 Mon Sep 17 00:00:00 2001 From: Sergey Antropoff Date: Sat, 18 Jul 2026 08:47:38 +0300 Subject: [PATCH] Add OpenStack request-body schemas and nested console PARAM sync. --- Makefile | 103 +- README.md | 12 +- README.ru.md | 12 +- app/lifespan.py | 4 +- app/ovirt/demo_datacenter.py | 358 +- app/ovirt/routes/engine.py | 474 +- app/ovirt/schema_engine.py | 132 +- app/ovirt/seed.py | 21 +- app/ovirt/seed_cli.py | 20 +- app/ovirt/seed_nested.py | 92 + app/web/index.html | 461 +- app/web/ovirt_body_examples.py | 327 + app/web/ovirt_catalog.py | 123 +- app/web/routes.py | 22 +- docs/getting-started.md | 3 + docs/images/web-ui/api-catalog.png | Bin 0 -> 45203 bytes docs/images/web-ui/authentication.png | Bin 0 -> 31481 bytes docs/images/web-ui/console.png | Bin 0 -> 24646 bytes docs/images/web-ui/data.png | Bin 0 -> 72387 bytes docs/images/web-ui/endpoints.png | Bin 0 -> 42730 bytes docs/images/web-ui/environment.png | Bin 0 -> 61008 bytes docs/images/web-ui/help-compatibility.png | Bin 0 -> 56527 bytes docs/images/web-ui/history.png | Bin 0 -> 52590 bytes docs/images/web-ui/request-body.png | Bin 0 -> 83393 bytes docs/images/web-ui/request-params.png | Bin 0 -> 69261 bytes docs/operations.md | 2 +- docs/ru/getting-started.md | 3 + docs/ru/operations.md | 2 +- docs/ru/seed-profiles.md | 40 +- docs/ru/web-ui.md | 72 +- docs/seed-profiles.md | 34 +- docs/web-ui.md | 69 +- pulumi-tests/README.md | 33 +- pulumi-tests/README.ru.md | 29 +- pulumi-tests/docker-compose.yml | 2 +- pulumi-tests/pulumi/coverage/executor.py | 243 +- pulumi-tests/pulumi/coverage/report.py | 6 +- pulumi-tests/pulumi/run_suite.py | 10 +- .../reports/pulumi-contract-coverage.html | 12 +- .../reports/pulumi-contract-coverage.json | 79336 ++++++++-------- .../reports/pulumi-stack-summary.json | 74 + tests/ovirt/conftest.py | 43 +- tests/ovirt/test_nested_realism.py | 282 + tests/unit/test_cluster_sizes.py | 33 + tests/unit/test_ovirt_body_examples.py | 104 + tools/audit_seed_dump.py | 259 + 46 files changed, 42717 insertions(+), 40135 deletions(-) create mode 100644 app/web/ovirt_body_examples.py create mode 100644 docs/images/web-ui/api-catalog.png create mode 100644 docs/images/web-ui/authentication.png create mode 100644 docs/images/web-ui/console.png create mode 100644 docs/images/web-ui/data.png create mode 100644 docs/images/web-ui/endpoints.png create mode 100644 docs/images/web-ui/environment.png create mode 100644 docs/images/web-ui/help-compatibility.png create mode 100644 docs/images/web-ui/history.png create mode 100644 docs/images/web-ui/request-body.png create mode 100644 docs/images/web-ui/request-params.png create mode 100644 tests/ovirt/test_nested_realism.py create mode 100644 tests/unit/test_cluster_sizes.py create mode 100644 tests/unit/test_ovirt_body_examples.py create mode 100644 tools/audit_seed_dump.py diff --git a/Makefile b/Makefile index 75e72c2..4be24c9 100644 --- a/Makefile +++ b/Makefile @@ -13,13 +13,19 @@ PUSH_LATEST ?= 1 COMPOSE_RELEASE ?= $(COMPOSE) -f docker-compose.release.yml HELM_CHART ?= ./helm/ovirt-api-simulator LAB ?= ./pulumi-tests +# Remotes used by `make push` (GitHub + antropoff). +GIT_REMOTES ?= origin antropoff +# Preferred host ports for `make up-local` (override / .env stay gitignored). +LOCAL_ENGINE_PORT ?= 6443 +LOCAL_UI_PORT ?= 6080 .PHONY: help install format lint typecheck test test-unit test-integration test-contract \ - test-surface test-versions coverage up down restart logs seed seed-demo smoke clean ci shell \ + test-surface test-versions coverage up down restart logs seed seed-small seed-large seed-big seed-demo \ + audit-seed-dump smoke clean ci shell \ helm-template generate-packs \ release release-build release-up release-down release-seed \ test-pulumi-smoke test-pulumi pulumi-tests \ - test-smoke-all test-all clean-test-resources + test-smoke-all test-all clean-test-resources push up-local down-local help: ## Show available commands @awk 'BEGIN {FS = ":.*## "}; /^[a-zA-Z0-9_-]+:.*## / {printf "%-22s %s\n", $$1, $$2}' $(MAKEFILE_LIST) @@ -72,6 +78,52 @@ up: ## Start PostgreSQL, simulator, and Engine gateway @test -f .env || cp .env.example .env $(COMPOSE) up -d --build --wait +# Writes gitignored docker-compose.override.yml (+ syncs ports into .env) when +# default 443/5000 are busy (common on macOS). Compose auto-merges the override. +up-local: ## Start stack with local port override (not committed) + @set -e; \ + test -f .env || cp .env.example .env; \ + pick_port() { \ + preferred="$$1"; shift; \ + for p in "$$preferred" "$$@"; do \ + if ! lsof -nP -iTCP:"$$p" -sTCP:LISTEN >/dev/null 2>&1; then \ + echo "$$p"; return 0; \ + fi; \ + done; \ + echo "No free port among: $$preferred $$*" >&2; exit 1; \ + }; \ + engine_port=$$(pick_port "$(LOCAL_ENGINE_PORT)" 6443 7443 8443 16443); \ + ui_port=$$(pick_port "$(LOCAL_UI_PORT)" 6080 7080 8080 16080); \ + printf '%s\n' \ + '# Generated by `make up-local` — gitignored, do not commit.' \ + 'services:' \ + ' api-gateway:' \ + ' ports:' \ + " - \"$${engine_port}:443\"" \ + " - \"$${ui_port}:5000\"" \ + > docker-compose.override.yml; \ + if grep -q '^OVIRT_ENGINE_PORT=' .env; then \ + sed -i.bak -e "s/^OVIRT_ENGINE_PORT=.*/OVIRT_ENGINE_PORT=$${engine_port}/" \ + -e "s/^OVIRT_UI_PORT=.*/OVIRT_UI_PORT=$${ui_port}/" .env && rm -f .env.bak; \ + else \ + printf '\nOVIRT_ENGINE_PORT=%s\nOVIRT_UI_PORT=%s\n' "$$engine_port" "$$ui_port" >> .env; \ + fi; \ + echo "Local ports → Engine https://127.0.0.1:$${engine_port} UI http://127.0.0.1:$${ui_port}"; \ + echo "Wrote docker-compose.override.yml (gitignored)"; \ + $(COMPOSE) up -d --build --wait; \ + echo "up-local ok" + +down-local: ## Stop stack and remove gitignored local port override + @$(COMPOSE) down + @rm -f docker-compose.override.yml + @if [ -f .env ]; then \ + if grep -q '^OVIRT_ENGINE_PORT=' .env; then \ + sed -i.bak -e 's/^OVIRT_ENGINE_PORT=.*/OVIRT_ENGINE_PORT=443/' \ + -e 's/^OVIRT_UI_PORT=.*/OVIRT_UI_PORT=5000/' .env && rm -f .env.bak; \ + fi; \ + fi + @echo "down-local ok (removed docker-compose.override.yml)" + down: ## Stop local services $(COMPOSE) down @@ -85,12 +137,27 @@ logs: ## Follow logs seed: ## Seed minimal lab $(COMPOSE) run --rm --entrypoint python $(SERVICE_SIM) -m app.ovirt.seed_cli --profile minimal -seed-demo: ## Seed demo datacenter (~1000 VMs) - $(COMPOSE) run --rm --entrypoint python $(SERVICE_SIM) -m app.ovirt.seed_cli --profile demo +seed-small: ## Seed small cluster (3 hosts · 50 VMs) + $(COMPOSE) run --rm --entrypoint python $(SERVICE_SIM) -m app.ovirt.seed_cli --profile small + +seed-large: ## Seed large cluster (10 hosts · 1000 VMs) + $(COMPOSE) run --rm --entrypoint python $(SERVICE_SIM) -m app.ovirt.seed_cli --profile large + +seed-big: ## Seed big cluster (30 hosts · 2000 VMs) + $(COMPOSE) run --rm --entrypoint python $(SERVICE_SIM) -m app.ovirt.seed_cli --profile big + +seed-demo: seed-large ## Alias: large cluster (legacy name) + +audit-seed-dump: ## Contract dump audit (collections+entities) vs live Engine + @set -a; [ -f .env ] && . ./.env; set +a; \ + python3 tools/audit_seed_dump.py \ + "https://127.0.0.1:$${OVIRT_ENGINE_PORT:-443}" \ + "$${OVIRT_SERIES:-4.5}" smoke: ## Quick Engine auth + list VMs smoke - @curl -skf -u 'admin@internal:secret' -H 'Accept: application/json' -H 'Version: 4' \ - https://127.0.0.1:$${OVIRT_ENGINE_PORT:-443}/ovirt-engine/api/vms >/dev/null + @set -a; [ -f .env ] && . ./.env; set +a; \ + curl -skf -u 'admin@internal:secret' -H 'Accept: application/json' -H 'Version: 4' \ + "https://127.0.0.1:$${OVIRT_ENGINE_PORT:-443}/ovirt-engine/api/vms" >/dev/null @echo "smoke ok" helm-template: ## Render Helm chart @@ -152,3 +219,27 @@ test-all: ## Client lab full suite (Pulumi contract coverage) 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 + @set -e; \ + git add .; \ + if git diff --cached --quiet; then \ + echo "Nothing staged to commit."; \ + else \ + if [ -n "$(MSG)" ]; then \ + msg="$(MSG)"; \ + else \ + printf "Commit message: "; \ + IFS= read -r msg &2; \ + exit 1; \ + fi; \ + git commit -m "$$msg"; \ + fi; \ + for remote in $(GIT_REMOTES); do \ + echo "→ pushing HEAD to $$remote"; \ + git push -u "$$remote" HEAD; \ + done diff --git a/README.md b/README.md index 5723ff2..36e207d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Semantic handlers persist mutations; long-running work is tracked as Engine jobs ```bash cp .env.example .env make up -make seed # or: make seed-demo (~1000 VMs) +make seed # or: make seed-small|seed-large|seed-big ``` | Surface | URL | @@ -73,7 +73,7 @@ Or: `make release-up && make release-seed PROFILE=minimal` - XML + JSON representations (`Accept` / `Content-Type`) - Series packs **3.0–3.6, 4.3–4.5, master** with operation deltas - Stateful PostgreSQL inventory + async jobs -- Seed profiles: `minimal` and `demo` (~1000 VMs) +- Seed profiles: `minimal`, `small` (3h/50vm), `large` (10h/1000vm), `big` (30h/2000vm) - Web UI with oVirt branding (`#0076B6` / charcoal `#1D2226`) - Docker Compose + Helm - API tests + [`pulumi-tests/`](pulumi-tests/README.md) (Pulumi contract coverage) @@ -82,14 +82,18 @@ Or: `make release-up && make release-seed PROFILE=minimal` ```bash make up +make up-local # local ports via gitignored docker-compose.override.yml +make down-local # stop stack + remove local override make seed -make seed-demo +make seed-large make test-unit make test-integration 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 ``` Docker Hub release (requires `docker login` as the Hub owner; see @@ -111,7 +115,7 @@ make release-up && make release-seed # run the published stack locally | [Authentication](docs/authentication.md) | Basic, OAuth2, sessions | | [API versions](docs/api-versions.md) | Series packs and Version header | | [Configuration](docs/configuration.md) | Environment and Compose | -| [Seed profiles](docs/seed-profiles.md) | `minimal` / `demo` | +| [Seed profiles](docs/seed-profiles.md) | `minimal` / `small` / `large` / `big` | | [Kubernetes / Helm](docs/kubernetes.md) | Cluster install | | [Full index](docs/README.md) | All guides | diff --git a/README.ru.md b/README.ru.md index 3203063..36301d3 100644 --- a/README.ru.md +++ b/README.ru.md @@ -20,7 +20,7 @@ oVirt Engine. Семантические обработчики сохраняю ```bash cp .env.example .env make up -make seed # или: make seed-demo (~1000 ВМ) +make seed # или: make seed-small|seed-large|seed-big ``` | Поверхность | URL | @@ -76,7 +76,7 @@ curl -k -u 'admin@internal:secret' -H 'Accept: application/json' -H 'Version: 4' - Представления XML + JSON (`Accept` / `Content-Type`) - Series packs **3.0–3.6, 4.3–4.5, master** с дельтами операций - Stateful-инвентарь в PostgreSQL + асинхронные jobs -- Профили seed: `minimal` и `demo` (~1000 ВМ) +- Профили seed: `minimal`, `small` (3h/50vm), `large` (10h/1000vm), `big` (30h/2000vm) - Web UI с брендингом oVirt (`#0076B6` / charcoal `#1D2226`) - Docker Compose + Helm - API-тесты + [`pulumi-tests/`](pulumi-tests/README.ru.md) (покрытие контрактов Pulumi) @@ -85,14 +85,18 @@ curl -k -u 'admin@internal:secret' -H 'Accept: application/json' -H 'Version: 4' ```bash make up +make up-local # локальные порты через gitignored docker-compose.override.yml +make down-local # остановить стек + удалить local override make seed -make seed-demo +make seed-large make test-unit make test-integration 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="сообщение" # сообщение без интерактива ``` Публикация в Docker Hub (нужен `docker login` владельца Hub; см. @@ -114,7 +118,7 @@ make release-up && make release-seed # запустить опубликова | [Аутентификация](docs/ru/authentication.md) | Basic, OAuth2, сессии | | [Версии API](docs/ru/api-versions.md) | Series packs и заголовок Version | | [Конфигурация](docs/ru/configuration.md) | Окружение и Compose | -| [Профили seed](docs/ru/seed-profiles.md) | `minimal` / `demo` | +| [Профили seed](docs/ru/seed-profiles.md) | `minimal` / `small` / `large` / `big` | | [Kubernetes / Helm](docs/ru/kubernetes.md) | Установка в кластер | | [Полный индекс](docs/ru/README.md) | Все руководства | diff --git a/app/lifespan.py b/app/lifespan.py index 564a4b9..aaeab99 100644 --- a/app/lifespan.py +++ b/app/lifespan.py @@ -38,7 +38,7 @@ def create_lifespan( await database.connect() app.state.database = database if isinstance(database, AsyncpgDatabase): - from app.ovirt.demo_datacenter import DEMO_PROFILE + from app.ovirt.demo_datacenter import DEMO_PROFILES from app.ovirt.seed import seed_ovirt from app.ovirt.settings import seed_engine_options @@ -49,7 +49,7 @@ def create_lifespan( ) except Exception: profile = None - if profile != DEMO_PROFILE: + if profile not in DEMO_PROFILES: await seed_ovirt(connection) else: # Keep Engine options current without wiping demo inventory. diff --git a/app/ovirt/demo_datacenter.py b/app/ovirt/demo_datacenter.py index aad9ef5..cc890ed 100644 --- a/app/ovirt/demo_datacenter.py +++ b/app/ovirt/demo_datacenter.py @@ -1,21 +1,195 @@ -"""Large demo datacenter seed (~1000 VMs + full inventory).""" +"""Sized cluster demo seeds: small / large / big (+ demo→large alias).""" from __future__ import annotations import json +from dataclasses import dataclass from typing import Any from asyncpg import Connection from app.ovirt.ids import stable_id -from app.ovirt.seed import DEMO_PROFILE, clear_ovirt_state, seed_ovirt +from app.ovirt.seed import clear_ovirt_state from app.security.auth import hash_secret -DEMO_VM_COUNT = 1000 + +@dataclass(frozen=True) +class ClusterSizeSpec: + """Topology + inventory density for a demo cluster size.""" + + name: str + hosts: int + vms: int + datacenters: int + clusters_per_dc: int + hosts_per_cluster: int + networks_per_dc: int + storage_per_dc: int + templates: tuple[str, ...] + tags: tuple[str, ...] + groups: tuple[str, ...] + events: int + jobs: int + bookmarks: tuple[tuple[str, str], ...] + instancetypes: tuple[str, ...] + macpools: tuple[str, ...] + vmpools: tuple[str, ...] + affinitylabels: tuple[str, ...] + katelloerrata: tuple[str, ...] + icons: tuple[str, ...] + operatingsystems: tuple[str, ...] -async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: - """Replace state with a multi-DC demo inventory including ~1000 VMs.""" +CLUSTER_SIZES: dict[str, ClusterSizeSpec] = { + "small": ClusterSizeSpec( + name="small", + hosts=3, + vms=50, + datacenters=1, + clusters_per_dc=1, + hosts_per_cluster=3, + networks_per_dc=2, + storage_per_dc=2, + templates=("rhel9-base", "ubuntu2204-base"), + tags=("lab", "web"), + groups=("developers", "readers"), + events=15, + jobs=5, + bookmarks=(("UpVMs", "Vms: status=up"),), + instancetypes=("Small", "Medium"), + macpools=("Default",), + vmpools=("web-pool",), + affinitylabels=("label-a",), + katelloerrata=("RHSA-2024:0001",), + icons=("default",), + operatingsystems=("rhel_9x64", "ubuntu_22_04"), + ), + "large": ClusterSizeSpec( + name="large", + hosts=10, + vms=1000, + datacenters=2, + clusters_per_dc=1, + hosts_per_cluster=5, + networks_per_dc=3, + storage_per_dc=3, + templates=("rhel8-base", "rhel9-base", "win2022-base", "ubuntu2204-base"), + tags=("production", "web", "database", "batch", "gpu"), + groups=("developers", "operators", "readers"), + events=50, + jobs=20, + bookmarks=( + ("UpVMs", "Vms: status=up"), + ("DownVMs", "Vms: status=down"), + ), + instancetypes=("Tiny", "Small", "Medium", "Large", "XLarge"), + macpools=("Default", "Secondary"), + vmpools=("web-pool", "batch-pool"), + affinitylabels=("label-a", "label-b"), + katelloerrata=("RHSA-2024:0001", "RHBA-2024:0002"), + icons=("default", "custom"), + operatingsystems=("rhel_8x64", "rhel_9x64", "windows_2022", "ubuntu_22_04"), + ), + "big": ClusterSizeSpec( + name="big", + hosts=30, + vms=2000, + datacenters=3, + clusters_per_dc=2, + hosts_per_cluster=5, + networks_per_dc=3, + storage_per_dc=4, + templates=( + "rhel8-base", + "rhel9-base", + "win2022-base", + "ubuntu2204-base", + "centos-stream9", + "debian12-base", + ), + tags=( + "production", + "web", + "database", + "batch", + "gpu", + "edge", + "staging", + "critical", + ), + groups=("developers", "operators", "readers", "auditors"), + events=120, + jobs=40, + bookmarks=( + ("UpVMs", "Vms: status=up"), + ("DownVMs", "Vms: status=down"), + ("ProdHosts", "Hosts:"), + ), + instancetypes=("Tiny", "Small", "Medium", "Large", "XLarge", "2XLarge", "4XLarge"), + macpools=("Default", "Secondary", "Edge"), + vmpools=("web-pool", "batch-pool", "gpu-pool", "edge-pool"), + affinitylabels=("label-a", "label-b", "label-c", "label-d"), + katelloerrata=("RHSA-2024:0001", "RHBA-2024:0002", "RHSA-2024:1001"), + icons=("default", "custom", "windows", "linux"), + operatingsystems=( + "rhel_8x64", + "rhel_9x64", + "windows_2022", + "ubuntu_22_04", + "centos_stream9", + "debian_12", + ), + ), +} + +# Canonical demo profile names that must not be wiped on simulator restart. +DEMO_PROFILES: frozenset[str] = frozenset(CLUSTER_SIZES) | {"demo"} +# Default / legacy alias target. +DEMO_PROFILE = "large" +DEMO_VM_COUNT = CLUSTER_SIZES["large"].vms + + +def normalize_cluster_size(size: str | None) -> str: + """Map CLI/UI aliases to a ClusterSizeSpec name.""" + + key = (size or DEMO_PROFILE).strip().lower() + if key == "demo": + return "large" + if key not in CLUSTER_SIZES: + raise ValueError(f"unknown cluster size {size!r}; expected small|large|big|demo") + return key + + +def cluster_size_spec(size: str | None = None) -> ClusterSizeSpec: + return CLUSTER_SIZES[normalize_cluster_size(size)] + + +_DC_NAMES = ( + ("dc-prod", "Production", False, 4, 5), + ("dc-stage", "Staging", False, 4, 4), + ("dc-edge", "Edge", True, 4, 3), +) +_NETWORK_SPECS = (("ovirtmgmt", None), ("vm-net", 100), ("storage-net", 200)) +_STORAGE_TYPES = ("nfs", "iscsi", "fcp", "localfs") +_TEMPLATE_SPECS: dict[str, tuple[int, int]] = { + "rhel8-base": (4 * 1024**3, 2), + "rhel9-base": (4 * 1024**3, 2), + "win2022-base": (8 * 1024**3, 4), + "ubuntu2204-base": (2 * 1024**3, 2), + "centos-stream9": (4 * 1024**3, 2), + "debian12-base": (2 * 1024**3, 2), +} + + +async def seed_ovirt_demo(conn: Connection, size: str | None = None) -> dict[str, Any]: + """Replace state with a sized multi-host demo inventory.""" + + spec = cluster_size_spec(size) + expected_hosts = spec.datacenters * spec.clusters_per_dc * spec.hosts_per_cluster + if expected_hosts != spec.hosts: + raise RuntimeError( + f"cluster size {spec.name}: topology hosts {expected_hosts} != declared {spec.hosts}" + ) await clear_ovirt_state(conn) @@ -39,7 +213,7 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: admin, ) - users = {} + users: dict[str, Any] = {} for uname, role in ( ("admin", role_super), ("ops", role_cluster), @@ -70,7 +244,7 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: stable_id("group", "engine-admins"), domain_id, ) - for gname in ("developers", "operators", "readers"): + for gname in spec.groups: await conn.execute( "INSERT INTO ov_groups(id, domain_id, name) VALUES($1,$2,$3)", stable_id("group", gname), @@ -78,20 +252,14 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: gname, ) - # 3 datacenters, multiple clusters/hosts/storage/networks - dc_specs = [ - ("dc-prod", "Production", False, 4, 5), - ("dc-stage", "Staging", False, 4, 4), - ("dc-edge", "Edge", True, 4, 3), - ] + dc_specs = list(_DC_NAMES[: spec.datacenters]) clusters: list[tuple[Any, Any, str]] = [] hosts: list[Any] = [] networks: list[Any] = [] profiles: list[Any] = [] storage_domains: list[Any] = [] - storage_types = ["nfs", "iscsi", "fcp", "localfs"] - for dc_key, dc_name, local, maj, minor in dc_specs: + for dc_idx, (dc_key, dc_name, local, maj, minor) in enumerate(dc_specs): dc_id = stable_id("dc", dc_key) await conn.execute( """INSERT INTO ov_datacenters(id, name, description, local, status, version_major, version_minor) @@ -109,8 +277,8 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: stable_id("quota", dc_key), dc_id, ) - for ci in range(2): - cname = f"{dc_key}-cluster-{ci+1}" + for ci in range(spec.clusters_per_dc): + cname = f"{dc_key}-cluster-{ci + 1}" cid = stable_id("cluster", cname) clusters.append((cid, dc_id, cname)) await conn.execute( @@ -119,7 +287,7 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: cid, dc_id, cname, - f"Cluster {ci+1} in {dc_name}", + f"Cluster {ci + 1} in {dc_name}", maj, minor, ) @@ -129,8 +297,8 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: stable_id("ag", cname), cid, ) - for hi in range(4): - hname = f"{cname}-host-{hi+1:02d}" + for hi in range(spec.hosts_per_cluster): + hname = f"{cname}-host-{hi + 1:02d}" hid = stable_id("host", hname) hosts.append(hid) await conn.execute( @@ -139,19 +307,27 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: hid, cid, hname, - f"10.{dc_specs.index((dc_key, dc_name, local, maj, minor))+10}.{ci+1}.{hi+10}", + f"10.{10 + dc_idx}.{ci + 1}.{hi + 10}", (256 + hi * 32) * 1024**3, ) - # networks - for nname, vlan in (("ovirtmgmt", None), ("vm-net", 100), ("storage-net", 200)): + + for nname, vlan in _NETWORK_SPECS[: spec.networks_per_dc]: nid = stable_id("net", dc_key, nname) networks.append(nid) + if nname == "ovirtmgmt" and dc_key == "dc-prod": + net_label = "ovirtmgmt" + elif nname == "ovirtmgmt": + net_label = f"{dc_key}-ovirtmgmt" + elif spec.datacenters > 1: + net_label = f"{dc_key}-{nname}" + else: + net_label = nname await conn.execute( """INSERT INTO ov_networks(id, datacenter_id, name, description, vlan_id) VALUES($1,$2,$3,$4,$5)""", nid, dc_id, - nname if nname != "ovirtmgmt" else f"{dc_key}-ovirtmgmt" if dc_key != "dc-prod" else "ovirtmgmt", + net_label, f"{nname} in {dc_name}", vlan, ) @@ -163,9 +339,9 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: nid, nname, ) - # storage domains - for si, stype in enumerate(storage_types): - sname = f"{dc_key}-{stype}-{si+1}" + + for si, stype in enumerate(_STORAGE_TYPES[: spec.storage_per_dc]): + sname = f"{dc_key}-{stype}-{si + 1}" sid = stable_id("sd", sname) storage_domains.append(sid) await conn.execute( @@ -201,12 +377,8 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: clusters[0][0], 1024**3, ) - for tname, mem, cores in ( - ("rhel8-base", 4 * 1024**3, 2), - ("rhel9-base", 4 * 1024**3, 2), - ("win2022-base", 8 * 1024**3, 4), - ("ubuntu2204-base", 2 * 1024**3, 2), - ): + for tname in spec.templates: + mem, cores = _TEMPLATE_SPECS.get(tname, (2 * 1024**3, 2)) await conn.execute( """INSERT INTO ov_templates(id, cluster_id, name, description, status, memory, cpu_sockets, cpu_cores) VALUES($1,$2,$3,$4,'ok',$5,1,$6)""", @@ -218,11 +390,9 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: cores, ) - # ~1000 VMs spread across clusters statuses = ["up", "up", "up", "down", "down", "suspended", "powering_up"] - os_types = ["rhel_8x64", "rhel_9x64", "ubuntu_22_04", "windows_2022", "other"] + os_types = list(spec.operatingsystems) or ["other"] default_profile = profiles[0] - default_sd = storage_domains[0] vm_rows = [] disk_rows = [] @@ -230,13 +400,13 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: nic_rows = [] snap_rows = [] - for i in range(DEMO_VM_COUNT): - cluster_id, _dc, cname = clusters[i % len(clusters)] + for i in range(spec.vms): + cluster_id, _dc, _cname = clusters[i % len(clusters)] host_id = hosts[i % len(hosts)] if i % 3 != 0 else None status = statuses[i % len(statuses)] if status == "down": host_id = None - name = f"vm-{i+1:04d}" + name = f"vm-{i + 1:04d}" vm_id = stable_id("vm", name) memory = (1 + (i % 8)) * 1024**3 cores = 1 + (i % 8) @@ -246,7 +416,7 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: cluster_id, blank_id, name, - f"Demo VM {i+1}", + f"Demo VM {i + 1}", status, memory, 1, @@ -273,11 +443,8 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: ) ) if i % 7 == 0: - snap_rows.append( - (stable_id("snap", name, "1"), vm_id, f"snapshot-{name}", "ok") - ) + snap_rows.append((stable_id("snap", name, "1"), vm_id, f"snapshot-{name}", "ok")) - # Batch insert VMs await conn.executemany( """INSERT INTO ov_vms(id, cluster_id, template_id, name, description, status, memory, cpu_sockets, cpu_cores, cpu_threads, os_type, type, host_id) @@ -306,8 +473,8 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: snap_rows, ) - # Tags, bookmarks, events, jobs, surface objects - for tname in ("production", "web", "database", "batch", "gpu"): + tag_step = max(1, spec.vms // 10) + for tname in spec.tags: tid = stable_id("tag", tname) await conn.execute( "INSERT INTO ov_tags(id, name, description) VALUES($1,$2,$3)", @@ -315,20 +482,23 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: tname, f"Tag {tname}", ) - for i in range(0, min(50, DEMO_VM_COUNT), 10): + for i in range(0, min(spec.vms, tag_step * 5), tag_step): await conn.execute( """INSERT INTO ov_tag_assignments(id, tag_id, object_type, object_id) VALUES($1,$2,'vm',$3) ON CONFLICT DO NOTHING""", stable_id("ta", tname, str(i)), tid, - stable_id("vm", f"vm-{i+1:04d}"), + stable_id("vm", f"vm-{i + 1:04d}"), ) - await conn.execute( - "INSERT INTO ov_bookmarks(id, name, value) VALUES($1,'UpVMs','Vms: status=up')", - stable_id("bm", "UpVMs"), - ) - for i in range(50): + for bname, bvalue in spec.bookmarks: + await conn.execute( + "INSERT INTO ov_bookmarks(id, name, value) VALUES($1,$2,$3)", + stable_id("bm", bname), + bname, + bvalue, + ) + for i in range(spec.events): await conn.execute( """INSERT INTO ov_events(code, severity, description, user_id) VALUES($1,$2,$3,$4)""", @@ -337,7 +507,7 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: f"Demo event {i}", users["admin"], ) - for i in range(20): + for i in range(spec.jobs): jid = stable_id("job", str(i)) await conn.execute( """INSERT INTO ov_jobs(id, description, status, owner_id) @@ -354,24 +524,31 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: f"Step for job {i}", ) - for collection, names in ( - ("instancetypes", ["Tiny", "Small", "Medium", "Large", "XLarge"]), - ("macpools", ["Default", "Secondary"]), - ("schedulingpolicies", ["evenly_distributed", "power_saving", "vm_evenly_distributed"]), - ("schedulingpolicyunits", ["EvenlyDistributed", "PowerSaving", "VmEvenlyDistributed"]), - ("clusterlevels", ["4.3", "4.4", "4.5"]), - ("icons", ["default", "custom"]), - ("operatingsystems", ["rhel_8x64", "rhel_9x64", "windows_2022", "ubuntu_22_04"]), - ("networkfilters", ["vdsm-no-mac-spoofing"]), - ("vmpools", ["web-pool", "batch-pool"]), - ("affinitylabels", ["label-a", "label-b"]), - ("katelloerrata", ["RHSA-2024:0001", "RHBA-2024:0002"]), - ("externalhostproviders", ["foreman-lab"]), - ("openstacknetworkproviders", ["ovn-provider"]), - ("openstackimageproviders", ["glance-lab"]), - ("openstackvolumeproviders", ["cinder-lab"]), - ("imagetransfers", ["transfer-1"]), - ): + surface: list[tuple[str, tuple[str, ...]]] = [ + ("instancetypes", spec.instancetypes), + ("macpools", spec.macpools), + ( + "schedulingpolicies", + ("evenly_distributed", "power_saving", "vm_evenly_distributed"), + ), + ( + "schedulingpolicyunits", + ("EvenlyDistributed", "PowerSaving", "VmEvenlyDistributed"), + ), + ("clusterlevels", ("4.3", "4.4", "4.5")), + ("icons", spec.icons), + ("operatingsystems", spec.operatingsystems), + ("networkfilters", ("vdsm-no-mac-spoofing",)), + ("vmpools", spec.vmpools), + ("affinitylabels", spec.affinitylabels), + ("katelloerrata", spec.katelloerrata), + ("externalhostproviders", ("foreman-lab",)), + ("openstacknetworkproviders", ("ovn-provider",)), + ("openstackimageproviders", ("glance-lab",)), + ("openstackvolumeproviders", ("cinder-lab",)), + ("imagetransfers", ("transfer-1",)), + ] + for collection, names in surface: for name in names: await conn.execute( """INSERT INTO ov_api_objects(id, collection, name, status, data) @@ -389,41 +566,34 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: from app.ovirt.seed_nested import seed_nested_for_inventory dc_ids = [stable_id("dc", key) for key, *_ in dc_specs] - cluster_ids = [c[0] for c in clusters] - template_ids = [ - blank_id, - *[ - stable_id("template", n) - for n in ("rhel8-base", "rhel9-base", "win2022-base", "ubuntu2204-base") - ], - ] - tag_ids = [stable_id("tag", t) for t in ("production", "web", "database", "batch", "gpu")] + template_ids = [blank_id, *[stable_id("template", n) for n in spec.templates]] + tag_ids = [stable_id("tag", t) for t in spec.tags] await seed_nested_for_inventory( conn, admin_user_id=users["admin"], role_user_id=role_user, datacenter_ids=dc_ids, - cluster_ids=cluster_ids, + cluster_ids=[c[0] for c in clusters], host_ids=list(hosts), network_ids=list(networks), storage_domain_ids=list(storage_domains), template_ids=template_ids, - vm_ids=[stable_id("vm", f"vm-{i:04d}") for i in range(1, DEMO_VM_COUNT + 1)], - disk_ids=[stable_id("disk", f"vm-{i:04d}") for i in range(1, DEMO_VM_COUNT + 1)], + vm_ids=[stable_id("vm", f"vm-{i:04d}") for i in range(1, spec.vms + 1)], + disk_ids=[stable_id("disk", f"vm-{i:04d}") for i in range(1, spec.vms + 1)], tag_ids=tag_ids, user_ids=list(users.values()), group_ids=[ stable_id("group", n) - for n in ("engine-admins", "developers", "operators", "readers") + for n in ("engine-admins", *spec.groups) ], ) await conn.execute( - "INSERT INTO ov_demo_meta(key, value) VALUES('profile', $1)", DEMO_PROFILE + "INSERT INTO ov_demo_meta(key, value) VALUES('profile', $1)", spec.name ) return { - "profile": DEMO_PROFILE, - "vms": DEMO_VM_COUNT, + "profile": spec.name, + "vms": spec.vms, "hosts": len(hosts), "datacenters": len(dc_specs), "clusters": len(clusters), @@ -432,5 +602,13 @@ async def seed_ovirt_demo(conn: Connection) -> dict[str, Any]: } -# Re-export for web routes -__all__ = ["DEMO_PROFILE", "DEMO_VM_COUNT", "clear_ovirt_state", "seed_ovirt", "seed_ovirt_demo"] +__all__ = [ + "CLUSTER_SIZES", + "DEMO_PROFILE", + "DEMO_PROFILES", + "DEMO_VM_COUNT", + "clear_ovirt_state", + "cluster_size_spec", + "normalize_cluster_size", + "seed_ovirt_demo", +] diff --git a/app/ovirt/routes/engine.py b/app/ovirt/routes/engine.py index 9f4966a..8ad3769 100644 --- a/app/ovirt/routes/engine.py +++ b/app/ovirt/routes/engine.py @@ -183,6 +183,18 @@ async def handle_engine_request(request: Request) -> Response: "DataError", "InvalidTextRepresentationError", } or "invalid input syntax for type uuid" in detail: + if name == "UniqueViolationError" or "duplicate key" in detail.lower(): + raise OVirtError( + "OperationFailed", + "Entity already exists", + status_code=409, + ) from exc + if name == "ForeignKeyViolationError": + raise OVirtError( + "BadRequest", + "Referenced entity does not exist", + status_code=400, + ) from exc raise OVirtError("BadRequest", detail or name, status_code=400) from exc raise @@ -354,6 +366,12 @@ async def _dispatch( payload, ) + # Convenience top-level lists (pack ops are nested; avoid empty schema fallbacks). + if parts[0] == "affinitygroups": + return await _handle_top_affinity_groups(request, conn, method, parts) + if parts[0] == "quotas": + return await _handle_top_quotas(request, conn, method, parts) + # Fall through to schema/generic object store from app.ovirt.schema_engine import handle_generic @@ -383,13 +401,39 @@ async def _handle_vms( body = unwrap_entity(payload, "vm") name = str(body.get("name") or f"vm-{uuid4().hex[:8]}") cluster = body.get("cluster") or {} - cluster_id = cluster.get("id") if isinstance(cluster, dict) else None + cluster_id = None + if isinstance(cluster, dict): + cluster_id = cluster.get("id") + if cluster_id: + exists = await conn.fetchval( + "SELECT 1 FROM ov_clusters WHERE id=$1::uuid", cluster_id + ) + if not exists: + cluster_id = None + if not cluster_id and cluster.get("name"): + cluster_id = await conn.fetchval( + "SELECT id FROM ov_clusters WHERE name=$1 LIMIT 1", + str(cluster["name"]), + ) if not cluster_id: cluster_id = await conn.fetchval("SELECT id FROM ov_clusters ORDER BY name LIMIT 1") if not cluster_id: raise OVirtError("BadRequest", "cluster is required", status_code=400) template = body.get("template") or {} - template_id = template.get("id") if isinstance(template, dict) else None + template_id = None + if isinstance(template, dict): + template_id = template.get("id") + if template_id: + exists = await conn.fetchval( + "SELECT 1 FROM ov_templates WHERE id=$1::uuid", template_id + ) + if not exists: + template_id = None + if not template_id and template.get("name"): + template_id = await conn.fetchval( + "SELECT id FROM ov_templates WHERE name=$1 LIMIT 1", + str(template["name"]), + ) if not template_id: template_id = await conn.fetchval( "SELECT id FROM ov_templates WHERE name='Blank' LIMIT 1" @@ -516,7 +560,20 @@ async def _handle_vms( raise OVirtError("NotFound", f"VM {vm_id} not found", status_code=404) if action == "clone": body = unwrap_entity(payload, "vm") if payload else {} - new_name = str(body.get("name") or f"{row['name']}-clone") + # Action root may wrap `vm: { name }` or place name on the action itself. + nested = body.get("vm") if isinstance(body.get("vm"), dict) else None + new_name = str( + (nested or {}).get("name") + or body.get("name") + or f"{row['name']}-clone" + ) + existing = await conn.fetchval("SELECT 1 FROM ov_vms WHERE name=$1", new_name) + if existing: + raise OVirtError( + "OperationFailed", + f"Cannot clone VM. VM name '{new_name}' is already used.", + status_code=409, + ) new_id = uuid4() await conn.execute( """INSERT INTO ov_vms(id, cluster_id, template_id, name, description, status, @@ -535,6 +592,7 @@ async def _handle_vms( row["os_type"], row["type"], ) + await _copy_vm_storage_and_nics(conn, source_vm_id=vm_id, target_vm_id=str(new_id)) return await respond_action( request, conn, description=f"Clone VM {row['name']}", owner_id=user_id ) @@ -605,7 +663,25 @@ async def _vm_disk_attachments( body = unwrap_entity(payload, "disk_attachment") disk = body.get("disk") or {} disk_id = disk.get("id") if isinstance(disk, dict) else None - if not disk_id: + if disk_id: + disk_row = await conn.fetchrow( + "SELECT id FROM ov_disks WHERE id=$1::uuid", disk_id + ) + if disk_row is None: + raise OVirtError("NotFound", f"Disk {disk_id} not found", status_code=404) + already = await conn.fetchval( + """SELECT 1 FROM ov_disk_attachments + WHERE vm_id=$1::uuid AND disk_id=$2::uuid""", + vm_id, + disk_id, + ) + if already: + raise OVirtError( + "OperationFailed", + "Cannot attach Disk. Disk is already attached to this VM.", + status_code=409, + ) + else: size = int( (disk or {}).get("provisioned_size") or await option_int(conn, OPT_DEFAULT_DISK_SIZE) @@ -695,6 +771,13 @@ async def _vm_nics( ) if len(parts) >= 4: nic_id = parts[3] + if len(parts) == 4 and method == "GET": + r = await conn.fetchrow( + "SELECT * FROM ov_nics WHERE id=$1::uuid AND vm_id=$2::uuid", nic_id, vm_id + ) + if r is None: + raise OVirtError("NotFound", "nic not found", status_code=404) + return respond(request, element="nic", data=nic_entity(r, vm_id=vm_id)) if len(parts) == 4 and method == "DELETE": await conn.execute( "DELETE FROM ov_nics WHERE id=$1::uuid AND vm_id=$2::uuid", nic_id, vm_id @@ -712,9 +795,18 @@ async def _vm_nics( profile_id, body.get("name"), ) + elif body.get("name"): + await conn.execute( + "UPDATE ov_nics SET name=$3 WHERE id=$1::uuid AND vm_id=$2::uuid", + nic_id, + vm_id, + body.get("name"), + ) r = await conn.fetchrow( "SELECT * FROM ov_nics WHERE id=$1::uuid AND vm_id=$2::uuid", nic_id, vm_id ) + if r is None: + raise OVirtError("NotFound", "nic not found", status_code=404) return respond(request, element="nic", data=nic_entity(r, vm_id=vm_id)) if len(parts) == 5 and method == "POST" and parts[4] in {"activate", "deactivate"}: plugged = parts[4] == "activate" @@ -763,6 +855,13 @@ async def _vm_snapshots( return respond( request, element="snapshot", data=snapshot_entity(row, vm_id=vm_id), status_code=201 ) + if len(parts) == 4 and method == "GET": + row = await conn.fetchrow( + "SELECT * FROM ov_snapshots WHERE id=$1::uuid AND vm_id=$2::uuid", parts[3], vm_id + ) + if row is None: + raise OVirtError("NotFound", "snapshot not found", status_code=404) + return respond(request, element="snapshot", data=snapshot_entity(row, vm_id=vm_id)) if len(parts) == 4 and method == "DELETE": await conn.execute( "DELETE FROM ov_snapshots WHERE id=$1::uuid AND vm_id=$2::uuid", parts[3], vm_id @@ -788,6 +887,17 @@ async def _vm_tags( ) items = [tag_entity(r) for r in rows] return respond(request, element="tag", collection="tags", data=items) + if len(parts) == 4 and method == "GET": + row = await conn.fetchrow( + """SELECT t.* FROM ov_tags t + JOIN ov_tag_assignments a ON a.tag_id=t.id + WHERE a.object_type='vm' AND a.object_id=$1::uuid AND t.id=$2::uuid""", + vm_id, + parts[3], + ) + if row is None: + raise OVirtError("NotFound", "tag not found on vm", status_code=404) + return respond(request, element="tag", data=tag_entity(row)) if len(parts) == 3 and method == "POST": body = unwrap_entity(payload, "tag") tag_id = body.get("id") @@ -1049,16 +1159,25 @@ async def _handle_datacenters( rows = await conn.fetch( "SELECT * FROM ov_quotas WHERE datacenter_id=$1::uuid ORDER BY name", dc_id ) - items = [ - { - "id": str(r["id"]), - "href": f"/ovirt-engine/api/datacenters/{dc_id}/quotas/{r['id']}", - "name": r["name"], - "description": r["description"], - } - for r in rows - ] + items = [_quota_entity(r, dc_id) for r in rows] return respond(request, element="quota", collection="quotas", data=items) + if method == "POST" and len(parts) == 3: + body = unwrap_entity(payload, "quota") + qid = uuid4() + await conn.execute( + """INSERT INTO ov_quotas(id, datacenter_id, name, description) + VALUES($1,$2::uuid,$3,$4)""", + qid, + dc_id, + str(body.get("name") or f"quota-{qid.hex[:6]}"), + str(body.get("description") or ""), + ) + r = await conn.fetchrow( + "SELECT * FROM ov_quotas WHERE id=$1 AND datacenter_id=$2::uuid", qid, dc_id + ) + return respond( + request, element="quota", data=_quota_entity(r, dc_id), status_code=201 + ) if method == "GET" and len(parts) == 4: r = await conn.fetchrow( "SELECT * FROM ov_quotas WHERE id=$1::uuid AND datacenter_id=$2::uuid", @@ -1067,16 +1186,32 @@ async def _handle_datacenters( ) if r is None: raise OVirtError("NotFound", "quota not found", status_code=404) - return respond( - request, - element="quota", - data={ - "id": str(r["id"]), - "href": f"/ovirt-engine/api/datacenters/{dc_id}/quotas/{r['id']}", - "name": r["name"], - "description": r["description"], - }, + return respond(request, element="quota", data=_quota_entity(r, dc_id)) + if method == "PUT" and len(parts) == 4: + body = unwrap_entity(payload, "quota") + await conn.execute( + """UPDATE ov_quotas SET name=COALESCE($3,name), description=COALESCE($4,description) + WHERE id=$1::uuid AND datacenter_id=$2::uuid""", + parts[3], + dc_id, + body.get("name"), + body.get("description"), ) + r = await conn.fetchrow( + "SELECT * FROM ov_quotas WHERE id=$1::uuid AND datacenter_id=$2::uuid", + parts[3], + dc_id, + ) + if r is None: + raise OVirtError("NotFound", "quota not found", status_code=404) + return respond(request, element="quota", data=_quota_entity(r, dc_id)) + if method == "DELETE" and len(parts) == 4: + await conn.execute( + "DELETE FROM ov_quotas WHERE id=$1::uuid AND datacenter_id=$2::uuid", + parts[3], + dc_id, + ) + return Response(status_code=200) from app.ovirt.schema_engine import handle_subcollection if len(parts) >= 3: @@ -1309,8 +1444,6 @@ async def _handle_clusters( if len(parts) == 2 and method == "DELETE": await conn.execute("DELETE FROM ov_clusters WHERE id=$1::uuid", cluster_id) return Response(status_code=200) - if len(parts) == 3 and method == "POST": - return await respond_action(request, conn, description=f"Cluster {parts[2]}") if len(parts) >= 3 and parts[2] == "affinitygroups": if method == "GET" and len(parts) == 3: rows = await conn.fetch( @@ -1357,6 +1490,30 @@ async def _handle_clusters( element="affinity_group", data=_affinity_group_entity(r, cluster_id), ) + if method == "PUT" and len(parts) == 4: + body = unwrap_entity(payload, "affinity_group") + await conn.execute( + """UPDATE ov_affinity_groups + SET name=COALESCE($3,name), enforcing=COALESCE($4,enforcing), + positive=COALESCE($5,positive), description=COALESCE($6,description) + WHERE id=$1::uuid AND cluster_id=$2::uuid""", + parts[3], + cluster_id, + body.get("name"), + body.get("enforcing"), + body.get("positive"), + body.get("description"), + ) + r = await conn.fetchrow( + "SELECT * FROM ov_affinity_groups WHERE id=$1::uuid AND cluster_id=$2::uuid", + parts[3], + cluster_id, + ) + if r is None: + raise OVirtError("NotFound", "affinity group not found", status_code=404) + return respond( + request, element="affinity_group", data=_affinity_group_entity(r, cluster_id) + ) if method == "DELETE" and len(parts) == 4: await conn.execute( "DELETE FROM ov_affinity_groups WHERE id=$1::uuid AND cluster_id=$2::uuid", @@ -1366,6 +1523,9 @@ async def _handle_clusters( return Response(status_code=200) if len(parts) >= 3 and parts[2] == "networks": return await _cluster_networks(request, conn, method, parts, payload) + if len(parts) == 3 and method == "POST": + # Known cluster actions only — do not steal collection POSTs. + return await respond_action(request, conn, description=f"Cluster {parts[2]}") from app.ovirt.schema_engine import handle_subcollection if len(parts) >= 3: @@ -1694,12 +1854,27 @@ async def _handle_templates( tid = uuid4() vm = body.get("vm") or {} cluster_id = None + source_vm = None if isinstance(vm, dict) and vm.get("id"): - cluster_id = await conn.fetchval( - "SELECT cluster_id FROM ov_vms WHERE id=$1::uuid", vm["id"] - ) + source_vm = await conn.fetchrow("SELECT * FROM ov_vms WHERE id=$1::uuid", vm["id"]) + if source_vm is None: + raise OVirtError("NotFound", f"VM {vm['id']} not found", status_code=404) + cluster_id = source_vm["cluster_id"] + if not cluster_id: + cref = body.get("cluster") or {} + if isinstance(cref, dict) and cref.get("id"): + cluster_id = cref["id"] + elif isinstance(cref, dict) and cref.get("name"): + cluster_id = await conn.fetchval( + "SELECT id FROM ov_clusters WHERE name=$1", cref["name"] + ) if not cluster_id: cluster_id = await conn.fetchval("SELECT id FROM ov_clusters LIMIT 1") + memory = int( + body.get("memory") + or (source_vm["memory"] if source_vm else None) + or await option_int(conn, OPT_DEFAULT_VM_MEMORY) + ) await conn.execute( """INSERT INTO ov_templates(id, cluster_id, name, description, memory) VALUES($1,$2,$3,$4,$5)""", @@ -1707,8 +1882,13 @@ async def _handle_templates( cluster_id, str(body.get("name") or f"tpl-{tid.hex[:6]}"), str(body.get("description") or ""), - int(body.get("memory") or await option_int(conn, OPT_DEFAULT_VM_MEMORY)), + memory, ) + if source_vm is not None: + await _seed_template_from_vm(conn, template_id=str(tid), vm_id=str(source_vm["id"])) + await create_job( + conn, description=f"Add Template {body.get('name') or tid}", owner_id=None + ) row = await conn.fetchrow("SELECT * FROM ov_templates WHERE id=$1", tid) return respond(request, element="template", data=template_entity(row), status_code=201) tid = parts[1] @@ -2034,20 +2214,42 @@ async def _handle_jobs( if r is None: raise OVirtError("NotFound", "job not found", status_code=404) return respond(request, element="job", data=job_entity(r)) - if len(parts) == 3 and parts[2] == "steps" and method == "GET": - rows = await conn.fetch( - "SELECT * FROM ov_job_steps WHERE job_id=$1::uuid ORDER BY number", parts[1] - ) - items = [ - { - "id": str(r["id"]), - "description": r["description"], - "status": r["status"], - "type": r["type"], - } - for r in rows - ] - return respond(request, element="step", collection="steps", data=items) + if len(parts) >= 3 and parts[2] == "steps": + job_id = parts[1] + if len(parts) == 3 and method == "GET": + rows = await conn.fetch( + "SELECT * FROM ov_job_steps WHERE job_id=$1::uuid ORDER BY number", job_id + ) + items = [ + { + "id": str(r["id"]), + "href": f"/ovirt-engine/api/jobs/{job_id}/steps/{r['id']}", + "description": r["description"], + "status": r["status"], + "type": r["type"], + } + for r in rows + ] + return respond(request, element="step", collection="steps", data=items) + if len(parts) == 4 and method == "GET": + r = await conn.fetchrow( + "SELECT * FROM ov_job_steps WHERE id=$1::uuid AND job_id=$2::uuid", + parts[3], + job_id, + ) + if r is None: + raise OVirtError("NotFound", "step not found", status_code=404) + return respond( + request, + element="step", + data={ + "id": str(r["id"]), + "href": f"/ovirt-engine/api/jobs/{job_id}/steps/{r['id']}", + "description": r["description"], + "status": r["status"], + "type": r["type"], + }, + ) raise OVirtError("NotFound", "jobs path", status_code=404) @@ -2055,7 +2257,7 @@ async def _handle_events( request: Request, conn: Connection, method: str, parts: list[str] ) -> Response: if len(parts) == 1 and method == "GET": - max_r = int(request.query_params.get("max") or 100) + max_r = int(request.query_params.get("max") or 500) rows = await conn.fetch( "SELECT * FROM ov_events ORDER BY id DESC LIMIT $1", max_r ) @@ -2080,20 +2282,27 @@ async def _handle_events( element="event", data={ "id": str(r["id"]), + "href": f"/ovirt-engine/api/events/{r['id']}", "code": r["code"], "severity": r["severity"], "description": r["description"], + "time": r["time"].strftime("%Y-%m-%dT%H:%M:%S.%fZ"), }, ) raise OVirtError("NotFound", "events path", status_code=404) -def _row_entity(r: Any, collection: str, fields: list[str]) -> dict[str, Any]: - item = {"id": str(r["id"]), "href": f"/ovirt-engine/api/{collection}/{r['id']}"} - for f in fields: - if f in r.keys(): - item[f] = r[f] - return item +def _quota_entity(r: Any, dc_id: str) -> dict[str, Any]: + return { + "id": str(r["id"]), + "href": f"/ovirt-engine/api/datacenters/{dc_id}/quotas/{r['id']}", + "name": r["name"], + "description": r["description"] or "", + "data_center": { + "id": str(dc_id), + "href": f"/ovirt-engine/api/datacenters/{dc_id}", + }, + } def _affinity_group_entity(r: Any, cluster_id: str) -> dict[str, Any]: @@ -2104,9 +2313,176 @@ def _affinity_group_entity(r: Any, cluster_id: str) -> dict[str, Any]: "description": r["description"] or "", "enforcing": bool(r["enforcing"]), "positive": bool(r["positive"]), + "cluster": { + "id": str(cluster_id), + "href": f"/ovirt-engine/api/clusters/{cluster_id}", + }, } +async def _handle_top_affinity_groups( + request: Request, conn: Connection, method: str, parts: list[str] +) -> Response: + if len(parts) == 1 and method == "GET": + rows = await conn.fetch( + "SELECT * FROM ov_affinity_groups ORDER BY name" + ) + items = [_affinity_group_entity(r, str(r["cluster_id"])) for r in rows] + return respond( + request, element="affinity_group", collection="affinity_groups", data=items + ) + if len(parts) == 2 and method == "GET": + r = await conn.fetchrow("SELECT * FROM ov_affinity_groups WHERE id=$1::uuid", parts[1]) + if r is None: + raise OVirtError("NotFound", "affinity group not found", status_code=404) + return respond( + request, element="affinity_group", data=_affinity_group_entity(r, str(r["cluster_id"])) + ) + raise OVirtError("NotFound", "affinitygroups path", status_code=404) + + +async def _handle_top_quotas( + request: Request, conn: Connection, method: str, parts: list[str] +) -> Response: + if len(parts) == 1 and method == "GET": + rows = await conn.fetch("SELECT * FROM ov_quotas ORDER BY name") + items = [_quota_entity(r, str(r["datacenter_id"])) for r in rows] + return respond(request, element="quota", collection="quotas", data=items) + if len(parts) == 2 and method == "GET": + r = await conn.fetchrow("SELECT * FROM ov_quotas WHERE id=$1::uuid", parts[1]) + if r is None: + raise OVirtError("NotFound", "quota not found", status_code=404) + return respond( + request, element="quota", data=_quota_entity(r, str(r["datacenter_id"])) + ) + raise OVirtError("NotFound", "quotas path", status_code=404) + + +async def _copy_vm_storage_and_nics( + conn: Connection, *, source_vm_id: str, target_vm_id: str +) -> None: + """Clone disk attachments (new disk rows) and NICs onto a target VM.""" + + attachments = await conn.fetch( + """SELECT a.*, d.name AS disk_name, d.provisioned_size, d.actual_size, d.format, + d.sparse, d.storage_domain_id, d.description AS disk_description + FROM ov_disk_attachments a + JOIN ov_disks d ON d.id=a.disk_id + WHERE a.vm_id=$1::uuid""", + source_vm_id, + ) + for att in attachments: + new_disk_id = uuid4() + await conn.execute( + """INSERT INTO ov_disks(id, name, description, provisioned_size, actual_size, + format, sparse, storage_domain_id) + VALUES($1,$2,$3,$4,$5,$6,$7,$8)""", + new_disk_id, + f"{att['disk_name']}-clone" if att["disk_name"] else f"disk-{new_disk_id.hex[:8]}", + att["disk_description"] or "", + att["provisioned_size"], + att["actual_size"], + att["format"], + att["sparse"], + att["storage_domain_id"], + ) + await conn.execute( + """INSERT INTO ov_disk_attachments(id, vm_id, disk_id, active, bootable, interface) + VALUES($1,$2::uuid,$3,$4,$5,$6)""", + uuid4(), + target_vm_id, + new_disk_id, + bool(att["active"]), + bool(att["bootable"]), + att["interface"], + ) + nics = await conn.fetch("SELECT * FROM ov_nics WHERE vm_id=$1::uuid", source_vm_id) + for nic in nics: + new_nic_id = uuid4() + mac_suffix = ":".join(f"{(new_nic_id.int >> (8 * i)) & 0xFF:02x}" for i in range(3)) + mac = (nic["mac_address"] or "00:1a:4a:00:00:00")[:9] + mac_suffix + await conn.execute( + """INSERT INTO ov_nics(id, vm_id, name, interface, linked, plugged, mac_address, vnic_profile_id) + VALUES($1,$2::uuid,$3,$4,$5,$6,$7,$8)""", + new_nic_id, + target_vm_id, + nic["name"], + nic["interface"], + bool(nic["linked"]), + bool(nic["plugged"]), + mac, + nic["vnic_profile_id"], + ) + + +async def _seed_template_from_vm( + conn: Connection, *, template_id: str, vm_id: str +) -> None: + """Materialize template nested nics/diskattachments from a source VM.""" + + import json as _json + + from app.ovirt.ids import stable_id + + nics = await conn.fetch("SELECT * FROM ov_nics WHERE vm_id=$1::uuid ORDER BY name", vm_id) + for nic in nics: + await conn.execute( + """INSERT INTO ov_api_objects( + id, collection, name, status, parent_collection, parent_id, data + ) VALUES($1,'nics',$2,'ok','templates',$3::uuid,$4::jsonb) + ON CONFLICT (id) DO NOTHING""", + stable_id("nested", "templates", template_id, "nics", nic["name"]), + nic["name"], + template_id, + _json.dumps( + { + "name": nic["name"], + "interface": nic["interface"], + "vnic_profile": ( + {"id": str(nic["vnic_profile_id"])} if nic["vnic_profile_id"] else None + ), + } + ), + ) + attachments = await conn.fetch( + """SELECT a.*, d.name AS disk_name, d.provisioned_size, d.format + FROM ov_disk_attachments a JOIN ov_disks d ON d.id=a.disk_id + WHERE a.vm_id=$1::uuid ORDER BY d.name""", + vm_id, + ) + for att in attachments: + name = att["disk_name"] or f"disk-{att['disk_id']}" + await conn.execute( + """INSERT INTO ov_api_objects( + id, collection, name, status, parent_collection, parent_id, data + ) VALUES($1,'diskattachments',$2,'ok','templates',$3::uuid,$4::jsonb) + ON CONFLICT (id) DO NOTHING""", + stable_id("nested", "templates", template_id, "diskattachments", name), + name, + template_id, + _json.dumps( + { + "name": name, + "bootable": bool(att["bootable"]), + "interface": att["interface"], + "disk": { + "name": name, + "provisioned_size": att["provisioned_size"], + "format": att["format"], + }, + } + ), + ) + + +def _row_entity(r: Any, collection: str, fields: list[str]) -> dict[str, Any]: + item = {"id": str(r["id"]), "href": f"/ovirt-engine/api/{collection}/{r['id']}"} + for f in fields: + if f in r.keys(): + item[f] = r[f] + return item + + def _vnic_profile_entity(r: Any) -> dict[str, Any]: return { "id": str(r["id"]), diff --git a/app/ovirt/schema_engine.py b/app/ovirt/schema_engine.py index 4963be9..7079bf2 100644 --- a/app/ovirt/schema_engine.py +++ b/app/ovirt/schema_engine.py @@ -41,6 +41,7 @@ _COLLECTIONS: dict[str, tuple[str, str]] = { "networklabels": ("network_label", "ok"), "cpuprofiles": ("cpu_profile", "ok"), "diskprofiles": ("disk_profile", "ok"), + "diskattachments": ("disk_attachment", "ok"), "qoss": ("qos", "ok"), "iscsibonds": ("iscsi_bond", "ok"), "glustervolumes": ("gluster_volume", "ok"), @@ -65,6 +66,7 @@ _COLLECTIONS: dict[str, tuple[str, str]] = { "devices": ("host_device", "ok"), "sshpublickeys": ("ssh_public_key", "ok"), "networkfilterparameters": ("network_filter_parameter", "ok"), + "storage": ("host_storage", "ok"), } @@ -87,7 +89,10 @@ async def handle_generic( if len(parts) == 1: if method == "GET": rows = await conn.fetch( - "SELECT * FROM ov_api_objects WHERE collection=$1 ORDER BY name", collection + """SELECT * FROM ov_api_objects + WHERE collection=$1 AND parent_id IS NULL + ORDER BY name""", + collection, ) items = [generic_entity(collection, element, r) for r in rows] return respond(request, element=element, collection=collection, data=items) @@ -111,7 +116,10 @@ async def handle_generic( if len(parts) == 2: oid = parts[1] row = await conn.fetchrow( - "SELECT * FROM ov_api_objects WHERE id=$1::uuid AND collection=$2", oid, collection + """SELECT * FROM ov_api_objects + WHERE id=$1::uuid AND collection=$2 AND parent_id IS NULL""", + oid, + collection, ) if method == "GET": if row is None: @@ -134,7 +142,10 @@ async def handle_generic( return respond(request, element=element, data=generic_entity(collection, element, row)) if method == "DELETE": await conn.execute( - "DELETE FROM ov_api_objects WHERE id=$1::uuid AND collection=$2", oid, collection + """DELETE FROM ov_api_objects + WHERE id=$1::uuid AND collection=$2 AND parent_id IS NULL""", + oid, + collection, ) return Response(status_code=200) if len(parts) == 3 and method == "POST": @@ -181,20 +192,11 @@ async def handle_subcollection( element, _catalog_status = _meta(sub) default_status = await option_value(conn, OPT_DEFAULT_API_OBJECT_STATUS) collection_key = sub - if not rest and method == "GET" and sub == "permissions": + if sub == "permissions" and method == "GET": object_type = _PARENT_OBJECT_TYPE.get(parent_collection, parent_collection.rstrip("s")) - rows = await conn.fetch( - """SELECT p.*, r.name AS role_name, u.name AS user_name - FROM ov_permissions p - JOIN ov_roles r ON r.id = p.role_id - LEFT JOIN ov_users u ON u.id = p.user_id - WHERE p.object_type=$1 AND p.object_id=$2::uuid - ORDER BY r.name""", - object_type, - parent_id, - ) - items = [ - { + + def _perm_item(r: Any) -> dict[str, Any]: + return { "id": str(r["id"]), "href": f"/ovirt-engine/api/{parent_collection}/{parent_id}/permissions/{r['id']}", "role": {"id": str(r["role_id"]), "name": r["role_name"]}, @@ -205,30 +207,82 @@ async def handle_subcollection( else {} ), } - for r in rows - ] - return respond(request, element="permission", collection="permissions", data=items) - if not rest and method == "GET" and sub == "tags": + + if not rest: + rows = await conn.fetch( + """SELECT p.*, r.name AS role_name, u.name AS user_name + FROM ov_permissions p + JOIN ov_roles r ON r.id = p.role_id + LEFT JOIN ov_users u ON u.id = p.user_id + WHERE p.object_type=$1 AND p.object_id=$2::uuid + ORDER BY r.name""", + object_type, + parent_id, + ) + return respond( + request, + element="permission", + collection="permissions", + data=[_perm_item(r) for r in rows], + ) + if len(rest) == 1: + r = await conn.fetchrow( + """SELECT p.*, r.name AS role_name, u.name AS user_name + FROM ov_permissions p + JOIN ov_roles r ON r.id = p.role_id + LEFT JOIN ov_users u ON u.id = p.user_id + WHERE p.id=$1::uuid AND p.object_type=$2 AND p.object_id=$3::uuid""", + rest[0], + object_type, + parent_id, + ) + if r is None: + raise OVirtError("NotFound", "permission not found", status_code=404) + return respond(request, element="permission", data=_perm_item(r)) + if sub == "tags" and method == "GET": object_type = _PARENT_OBJECT_TYPE.get(parent_collection, parent_collection.rstrip("s")) - rows = await conn.fetch( - """SELECT t.* - FROM ov_tag_assignments a - JOIN ov_tags t ON t.id = a.tag_id - WHERE a.object_type=$1 AND a.object_id=$2::uuid - ORDER BY t.name""", - object_type, - parent_id, - ) - items = [ - { - "id": str(r["id"]), - "href": f"/ovirt-engine/api/tags/{r['id']}", - "name": r["name"], - "description": r["description"] or "", - } - for r in rows - ] - return respond(request, element="tag", collection="tags", data=items) + if not rest: + rows = await conn.fetch( + """SELECT t.* + FROM ov_tag_assignments a + JOIN ov_tags t ON t.id = a.tag_id + WHERE a.object_type=$1 AND a.object_id=$2::uuid + ORDER BY t.name""", + object_type, + parent_id, + ) + items = [ + { + "id": str(r["id"]), + "href": f"/ovirt-engine/api/tags/{r['id']}", + "name": r["name"], + "description": r["description"] or "", + } + for r in rows + ] + return respond(request, element="tag", collection="tags", data=items) + if len(rest) == 1: + r = await conn.fetchrow( + """SELECT t.* + FROM ov_tag_assignments a + JOIN ov_tags t ON t.id = a.tag_id + WHERE a.object_type=$1 AND a.object_id=$2::uuid AND t.id=$3::uuid""", + object_type, + parent_id, + rest[0], + ) + if r is None: + raise OVirtError("NotFound", "tag not found", status_code=404) + return respond( + request, + element="tag", + data={ + "id": str(r["id"]), + "href": f"/ovirt-engine/api/tags/{r['id']}", + "name": r["name"], + "description": r["description"] or "", + }, + ) if not rest: if method == "GET": rows = await conn.fetch( diff --git a/app/ovirt/seed.py b/app/ovirt/seed.py index 86cd478..feda9d6 100644 --- a/app/ovirt/seed.py +++ b/app/ovirt/seed.py @@ -11,7 +11,8 @@ from app.ovirt.ids import stable_id from app.security.auth import hash_secret MINIMAL_PROFILE = "minimal" -DEMO_PROFILE = "demo" +# Legacy name kept for imports; sized demos live in demo_datacenter.DEMO_PROFILES. +DEMO_PROFILE = "large" async def clear_ovirt_state(conn: Connection) -> None: @@ -239,6 +240,8 @@ async def seed_ovirt(conn: Connection) -> dict[str, Any]: ("instancetypes", "Large"), ("macpools", "Default"), ("schedulingpolicies", "evenly_distributed"), + ("schedulingpolicies", "power_saving"), + ("schedulingpolicies", "vm_evenly_distributed"), ("schedulingpolicyunits", "EvenlyDistributed"), ("clusterlevels", "4.5"), ("icons", "default"), @@ -255,7 +258,8 @@ async def seed_ovirt(conn: Connection) -> dict[str, Any]: ): await conn.execute( """INSERT INTO ov_api_objects(id, collection, name, status, data) - VALUES($1,$2,$3,'ok',$4::jsonb)""", + VALUES($1,$2,$3,'ok',$4::jsonb) + ON CONFLICT (id) DO NOTHING""", stable_id("obj", collection, name), collection, name, @@ -330,10 +334,19 @@ async def seed_ovirt(conn: Connection) -> dict[str, Any]: async def ovirt_demo_summary(conn: Connection) -> dict[str, Any]: + from app.ovirt.demo_datacenter import CLUSTER_SIZES, DEMO_PROFILES + profile = await conn.fetchval("SELECT value FROM ov_demo_meta WHERE key='profile'") + active = profile or MINIMAL_PROFILE + size = CLUSTER_SIZES.get(active) or ( + CLUSTER_SIZES["large"] if active == "demo" else None + ) return { - "profile": profile or MINIMAL_PROFILE, - "loaded": profile == DEMO_PROFILE, + "profile": active, + "loaded": active in DEMO_PROFILES, + "size": size.name if size else None, + "size_hosts": size.hosts if size else None, + "size_vms": size.vms if size else None, "vms": await conn.fetchval("SELECT count(*) FROM ov_vms") or 0, "hosts": await conn.fetchval("SELECT count(*) FROM ov_hosts") or 0, "datacenters": await conn.fetchval("SELECT count(*) FROM ov_datacenters") or 0, diff --git a/app/ovirt/seed_cli.py b/app/ovirt/seed_cli.py index d90f64c..9697999 100644 --- a/app/ovirt/seed_cli.py +++ b/app/ovirt/seed_cli.py @@ -1,4 +1,4 @@ -"""CLI: python -m app.ovirt.seed_cli [--profile minimal|demo].""" +"""CLI: python -m app.ovirt.seed_cli [--profile minimal|small|large|big|demo].""" from __future__ import annotations @@ -9,7 +9,7 @@ import os import asyncpg -from app.ovirt.demo_datacenter import seed_ovirt_demo +from app.ovirt.demo_datacenter import DEMO_PROFILES, normalize_cluster_size, seed_ovirt_demo from app.ovirt.seed import seed_ovirt @@ -20,10 +20,14 @@ async def _run(profile: str) -> dict: ) conn = await asyncpg.connect(dsn) try: - if profile == "demo": - result = await seed_ovirt_demo(conn) - else: + if profile == "minimal": result = await seed_ovirt(conn) + elif profile in DEMO_PROFILES or profile in {"small", "large", "big"}: + result = await seed_ovirt_demo(conn, size=normalize_cluster_size(profile)) + else: + raise SystemExit( + f"unknown profile {profile!r}; expected minimal|small|large|big|demo" + ) return result finally: await conn.close() @@ -31,7 +35,11 @@ async def _run(profile: str) -> dict: def main() -> None: parser = argparse.ArgumentParser(description="Seed oVirt Engine simulator") - parser.add_argument("--profile", default=os.environ.get("SEED_PROFILE", "minimal")) + parser.add_argument( + "--profile", + default=os.environ.get("SEED_PROFILE", "minimal"), + help="minimal | small | large | big | demo (demo→large)", + ) args = parser.parse_args() result = asyncio.run(_run(args.profile)) print(json.dumps(result, indent=2)) diff --git a/app/ovirt/seed_nested.py b/app/ovirt/seed_nested.py index 934ef5a..f538a74 100644 --- a/app/ovirt/seed_nested.py +++ b/app/ovirt/seed_nested.py @@ -127,6 +127,19 @@ async def seed_nested_for_inventory( data={"description": "Gluster feature"}, ) ) + obj_rows.append( + _obj_row( + parent_collection="clusters", + parent_id=cluster_id, + collection="glustervolumes", + name="gv0", + data={ + "volume_type": "distribute", + "replica_count": 1, + "status": "up", + }, + ) + ) for host_id in host_ids: perm("host", host_id, f"host-{host_id}") @@ -184,6 +197,24 @@ async def seed_nested_for_inventory( data={"event_name": "before_vm_start"}, ) ) + obj_rows.append( + _obj_row( + parent_collection="hosts", + parent_id=host_id, + collection="storage", + name="local-data", + data={"type": "data", "path": "/var/lib/ovirt/storage", "status": "up"}, + ) + ) + obj_rows.append( + _obj_row( + parent_collection="hosts", + parent_id=host_id, + collection="katelloerrata", + name="RHSA-2024:0001", + data={"title": "Important: kernel security update"}, + ) + ) if tag_ids: tag_rows.append( ( @@ -196,6 +227,15 @@ async def seed_nested_for_inventory( for net_id in network_ids: perm("network", net_id, f"net-{net_id}") + obj_rows.append( + _obj_row( + parent_collection="networks", + parent_id=net_id, + collection="networklabels", + name="ovirtmgmt", + data={"description": "Management network label"}, + ) + ) for sd_id in storage_domain_ids: perm("storage_domain", sd_id, f"sd-{sd_id}") @@ -265,6 +305,24 @@ async def seed_nested_for_inventory( data={"file": {"id": "rhel-9.iso"}}, ) ) + obj_rows.append( + _obj_row( + parent_collection="templates", + parent_id=tpl_id, + collection="graphicsconsoles", + name="spice", + data={"protocol": "spice"}, + ) + ) + obj_rows.append( + _obj_row( + parent_collection="templates", + parent_id=tpl_id, + collection="watchdogs", + name="i6300esb", + data={"model": "i6300esb", "action": "reset"}, + ) + ) for disk_id in disk_ids: perm("disk", disk_id, f"disk-{disk_id}") @@ -376,9 +434,43 @@ async def seed_nested_for_inventory( name="pci_0000_00_02_0", data={"capability": "pci"}, ), + _obj_row( + parent_collection="vms", + parent_id=vm_id, + collection="mediateddevices", + name="mdev0", + data={"spec_params": {"mdev_type": "nvidia-11"}}, + ), + _obj_row( + parent_collection="vms", + parent_id=vm_id, + collection="affinitylabels", + name="label-a", + data={"description": "VM affinity label"}, + ), + _obj_row( + parent_collection="vms", + parent_id=vm_id, + collection="katelloerrata", + name="RHSA-2024:0001", + data={"title": "Important: qemu-kvm security update"}, + ), ] ) + for user_id in user_ids: + obj_rows.append( + _obj_row( + parent_collection="users", + parent_id=user_id, + collection="sshpublickeys", + name="lab-key", + data={ + "content": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILabSeedKey admin@lab", + }, + ) + ) + # Scheduling policy children + role permits for sp_name in ("evenly_distributed", "power_saving", "vm_evenly_distributed"): sp_id = await conn.fetchval( diff --git a/app/web/index.html b/app/web/index.html index ef8fb86..8bcf1f2 100644 --- a/app/web/index.html +++ b/app/web/index.html @@ -584,6 +584,124 @@ padding-top: 2px; } + .demo-size-grid { + display: grid; + grid-template-columns: repeat(3, minmax(0, 1fr)); + gap: 12px; + margin-top: 4px; + } + + @media (max-width: 900px) { + .demo-size-grid { + grid-template-columns: 1fr; + } + } + + .demo-size-card { + display: flex; + flex-direction: column; + gap: 10px; + padding: 14px 14px 12px; + border: 1px solid var(--border); + border-radius: 10px; + background: + linear-gradient(165deg, color-mix(in srgb, var(--brand-accent) 8%, var(--surface-raised)) 0%, var(--surface-raised) 55%); + min-height: 168px; + } + + .demo-size-card.is-active { + border-color: color-mix(in srgb, var(--brand-accent) 55%, var(--border)); + box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand-accent) 25%, transparent); + } + + .demo-size-card-head { + display: flex; + align-items: baseline; + justify-content: space-between; + gap: 8px; + } + + .demo-size-card-title { + margin: 0; + font-size: 15px; + font-weight: 700; + letter-spacing: 0.01em; + color: var(--text); + text-transform: capitalize; + } + + .demo-size-card-chip { + font-size: 10px; + font-weight: 700; + letter-spacing: 0.06em; + text-transform: uppercase; + color: var(--brand-accent); + background: color-mix(in srgb, var(--brand-accent) 12%, transparent); + border-radius: 999px; + padding: 3px 8px; + white-space: nowrap; + } + + .demo-size-card-metrics { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 6px 10px; + margin: 0; + } + + .demo-size-card-metrics div { + display: flex; + flex-direction: column; + gap: 1px; + } + + .demo-size-card-metrics dt { + margin: 0; + font-size: 10px; + text-transform: uppercase; + letter-spacing: 0.04em; + color: var(--muted); + } + + .demo-size-card-metrics dd { + margin: 0; + font-size: 13px; + font-weight: 600; + color: var(--text); + } + + .demo-size-card-note { + margin: 0; + font-size: 11px; + line-height: 1.4; + color: var(--muted); + flex: 1; + } + + .demo-size-card .btn-demo-load { + width: 100%; + justify-content: center; + margin-top: auto; + } + + .demo-toolbar { + display: flex; + flex-wrap: nowrap; + gap: 8px; + align-items: stretch; + width: 100%; + margin-top: 12px; + padding-top: 12px; + border-top: 1px solid var(--border); + } + + .demo-toolbar .btn { + flex: 1 1 0; + justify-content: center; + text-align: center; + min-width: 0; + } + .btn-demo-load { background: var(--brand-accent); border-color: var(--brand-accent); @@ -3420,34 +3538,9 @@ -

oVirt Engine API pack

-
-
- Series - -
-
- Operations - -
-
- Services - -
-
- -
- - -
- -
- - - - -
-

Surface-complete contract packs drive schema routes for every API-ref operation.

+

+ Engine series packs are switched in API catalogApply as runtime. +

@@ -3866,16 +3959,6 @@ statStorage: document.getElementById("stat-storage"), statHosts: document.getElementById("stat-hosts"), statImpl: document.getElementById("stat-impl"), - statOsSeries: document.getElementById("stat-os-series"), - statOsOps: document.getElementById("stat-os-ops"), - statOsServices: document.getElementById("stat-os-services"), - osSeriesSelect: document.getElementById("os-series-select"), - btnOsSeriesActivate: document.getElementById("btn-os-series-activate"), - osMvService: document.getElementById("os-mv-service"), - osMvVersion: document.getElementById("os-mv-version"), - btnOsMvSet: document.getElementById("btn-os-mv-set"), - btnOsMvClear: document.getElementById("btn-os-mv-clear"), - osPackNote: document.getElementById("os-pack-note"), }; function setText(el, value) { @@ -4848,6 +4931,15 @@ if (hasStoredBody) { els.body.value = isEmptyRequestBody(storedBody) ? "" : storedBody; updateBodyHighlight(); + } else if ( + method.body_example + && typeof method.body_example === "object" + && !Array.isArray(method.body_example) + && Object.keys(method.body_example).length > 0 + ) { + // Prefer full Engine-shaped body_example over PARAM field stubs. + els.body.value = JSON.stringify(method.body_example, null, 2); + updateBodyHighlight(); } else if (canBuildBody) { syncBodyFromFields({ syncVisibility: false }); } else { @@ -5198,11 +5290,45 @@ function buildDemoDataHtml(data) { const loaded = Boolean(data?.loaded); + const profile = data?.profile ?? "minimal"; + const badgeLabel = loaded ? String(profile) : "Minimal"; + const sizes = [ + { + id: "small", + label: "Small", + chip: "lab", + hosts: 3, + vms: 50, + dc: 1, + clusters: 1, + note: "1 DC · 2 networks · 2 storage · light tags/events", + }, + { + id: "large", + label: "Large", + chip: "default", + hosts: 10, + vms: 1000, + dc: 2, + clusters: 2, + note: "2 DC · 6 networks · 6 storage · fuller inventory", + }, + { + id: "big", + label: "Big", + chip: "heavy", + hosts: 30, + vms: 2000, + dc: 3, + clusters: 6, + note: "3 DC · 9 networks · 12 storage · heavy data", + }, + ]; const stats = [ - ["Profile", data?.profile ?? "—", loaded ? "ok" : ""], + ["Profile", profile, loaded ? "ok" : ""], ["VMs", data?.vms ?? "—", ""], ["Hosts", data?.hosts ?? "—", ""], - ["Data Centers", data?.datacenters ?? "—", ""], + ["DC", data?.datacenters ?? "—", ""], ["Clusters", data?.clusters ?? "—", ""], ["Networks", data?.networks ?? "—", ""], ["Disks", data?.disks ?? "—", ""], @@ -5216,11 +5342,10 @@

oVirt demo datacenter

-

Load a synthetic full oVirt inventory into PostgreSQL for client and UI exploration.

- ${loaded ? "Loaded" : "Minimal"} +

Pick a cluster size — inventory (DC, hosts, VMs, storage, networks, tags, events, jobs) scales together.

+ ${escapeHtml(badgeLabel)}

- ~1000 VMs · 3 Data Centers · 6 Clusters · 24 Hosts · Storage Domains · Networks · Templates · Users/Roles. Password for all users: secret. Loading replaces current oVirt state and invalidates active tokens.

@@ -5231,8 +5356,29 @@
`).join("")}
-
- +
+ ${sizes.map((s) => { + const active = profile === s.id; + return ` +
+
+

${escapeHtml(s.label)}

+ ${escapeHtml(s.chip)} +
+
+
Hosts
${s.hosts}
+
VMs
${s.vms}
+
DC
${s.dc}
+
Clusters
${s.clusters}
+
+

${escapeHtml(s.note)}

+ +
`; + }).join("")} +
+
@@ -5271,12 +5417,12 @@ renderDemoState(await res.json()); } - async function loadDemoData() { - const loadBtn = document.getElementById("btn-demo-load"); - if (loadBtn) loadBtn.disabled = true; + async function loadDemoData(size = "large") { + const loadBtns = document.querySelectorAll("[data-demo-size]"); + loadBtns.forEach((btn) => { btn.disabled = true; }); setLoading(true); try { - const res = await fetch("/ui/api/demo/load", { method: "POST" }); + const res = await fetch(`/ui/api/demo/load?size=${encodeURIComponent(size)}`, { method: "POST" }); const body = await res.json().catch(() => ({})); if (!res.ok) { const detail = Array.isArray(body.detail) @@ -5293,20 +5439,24 @@ persistAuth(); } await refreshOverview(); - toast("oVirt demo datacenter loaded (~1000 VMs)", "ok"); + const seed = body.seed || body.summary || {}; + toast( + `Cluster ${seed.profile || size} loaded (${seed.hosts ?? "?"} hosts · ${seed.vms ?? "?"} VMs)`, + "ok", + ); toast("Sign in again (admin@internal / secret) — tokens were reset with the seed", "warn"); } finally { - if (loadBtn) loadBtn.disabled = false; + loadBtns.forEach((btn) => { btn.disabled = false; }); setLoading(false); } } async function unloadDemoData() { const confirmed = await showConfirm({ - title: "Remove demo data?", - message: "This wipes simulator DB state (demo data and anything created via the API), then reloads a minimal cluster.", - confirmLabel: "Remove demo data", - cancelLabel: "Keep demo data", + title: "Reset to minimal?", + message: "This wipes current simulator DB state (sized demo and anything created via the API), then loads the minimal cluster (1 host · 1 VM).", + confirmLabel: "Reset to minimal", + cancelLabel: "Keep current data", tone: "danger", }); if (!confirmed) return; @@ -5327,7 +5477,7 @@ persistAuth(); } await refreshOverview(); - toast("Demo data removed — sign in again if needed", "info"); + toast("Minimal cluster loaded — sign in again if needed", "info"); } finally { if (unloadBtn) unloadBtn.disabled = false; setLoading(false); @@ -5704,14 +5854,18 @@ if (!els.dataPanel || els.dataPanel.dataset.demoBound) return; els.dataPanel.dataset.demoBound = "1"; els.dataPanel.addEventListener("click", (event) => { - const target = event.target.closest("#btn-demo-load, #btn-demo-unload, #btn-demo-refresh"); - if (!target) return; - if (target.id === "btn-demo-load") { - loadDemoData().catch((error) => { + const loadBtn = event.target.closest("[data-demo-size]"); + if (loadBtn) { + const size = loadBtn.getAttribute("data-demo-size") || "large"; + loadDemoData(size).catch((error) => { showError(String(error)); toast("Failed to load demo data", "error"); }); - } else if (target.id === "btn-demo-unload") { + return; + } + const target = event.target.closest("#btn-demo-unload, #btn-demo-refresh"); + if (!target) return; + if (target.id === "btn-demo-unload") { unloadDemoData().catch((error) => { showError(String(error)); toast("Failed to remove demo data", "error"); @@ -6421,9 +6575,11 @@ try { const parsed = JSON.parse(body || "{}"); if (parsed && typeof parsed === "object" && !Array.isArray(parsed)) { + const { inner } = unwrapBodyExample(parsed); for (const field of bodyFields) { - if (Object.prototype.hasOwnProperty.call(parsed, field.name)) { - state.bodyValues[field.name] = String(parsed[field.name] ?? ""); + const value = getByPath(inner, field.name); + if (value !== undefined && value !== null) { + state.bodyValues[field.name] = String(value); } } } @@ -6496,31 +6652,95 @@ return target === "cluster" ? buildClusterUrl(apiPath) : buildEmulatorUrl(apiPath); } + function deepCloneJson(value) { + if (value == null) return value; + return JSON.parse(JSON.stringify(value)); + } + + function getByPath(root, path) { + if (!path) return root; + const parts = String(path).split("."); + let cur = root; + for (const part of parts) { + if (cur == null || typeof cur !== "object") return undefined; + cur = cur[part]; + } + return cur; + } + + function setByPath(root, path, value) { + const parts = String(path).split("."); + let cur = root; + for (let i = 0; i < parts.length - 1; i += 1) { + const part = parts[i]; + const next = parts[i + 1]; + const wantArray = /^\d+$/.test(next); + if (cur[part] == null || typeof cur[part] !== "object") { + cur[part] = wantArray ? [] : {}; + } + cur = cur[part]; + } + cur[parts[parts.length - 1]] = value; + } + + function deleteByPath(root, path) { + const parts = String(path).split("."); + let cur = root; + for (let i = 0; i < parts.length - 1; i += 1) { + if (cur == null || typeof cur !== "object") return; + cur = cur[parts[i]]; + } + if (cur && typeof cur === "object") delete cur[parts[parts.length - 1]]; + } + + function unwrapBodyExample(example) { + if (!example || typeof example !== "object" || Array.isArray(example)) { + return { wrapKey: null, inner: {} }; + } + const keys = Object.keys(example); + if ( + keys.length === 1 + && example[keys[0]] + && typeof example[keys[0]] === "object" + && !Array.isArray(example[keys[0]]) + ) { + return { wrapKey: keys[0], inner: example[keys[0]] }; + } + return { wrapKey: null, inner: example }; + } + function syncBodyFromFields({ syncVisibility = true } = {}) { if (!state.method) return; const inputs = [...(els.bodyFields?.querySelectorAll("input[data-field]") || [])]; - const body = {}; + const example = state.method.body_example; + const { wrapKey, inner } = unwrapBodyExample(example); + const root = deepCloneJson(inner) || {}; + let touched = false; inputs.forEach((input) => { const name = input.dataset.field; + if (!name) return; const raw = input.value.trim(); - if (!raw) return; - if (raw === "true" || raw === "false") body[name] = raw === "true"; - else if (/^-?\d+$/.test(raw)) body[name] = Number(raw); - else if (/^-?\d+\.\d+$/.test(raw)) body[name] = Number(raw); - else body[name] = raw; - }); - // If PARAM fields are empty, fall back to method body_example so the editor - // updates when switching verbs / endpoints. - if (!Object.keys(body).length) { - const example = state.method.body_example; - if (example && typeof example === "object" && !Array.isArray(example)) { - for (const [key, value] of Object.entries(example)) { - if (value === undefined || value === null || value === "") continue; - body[key] = value; - } + const existing = getByPath(root, name); + if (!raw && existing === undefined) return; + touched = true; + if (!raw) { + deleteByPath(root, name); + return; } + let value = raw; + if (raw === "true" || raw === "false") value = raw === "true"; + else if (/^-?\d+$/.test(raw)) value = Number(raw); + else if (/^-?\d+\.\d+$/.test(raw)) value = Number(raw); + setByPath(root, name, value); + }); + // Empty PARAM inputs → keep full body_example; edits merge into the Engine root wrap. + if (!touched && example && typeof example === "object" && !Array.isArray(example)) { + els.body.value = Object.keys(example).length ? JSON.stringify(example, null, 2) : ""; + updateBodyHighlight(); + if (syncVisibility) updateBodyPaneVisibility(state.method); + return; } - // Keep empty object out of the editor — do not show `{}`. + const body = wrapKey ? { [wrapKey]: root } : root; els.body.value = Object.keys(body).length ? JSON.stringify(body, null, 2) : ""; updateBodyHighlight(); if (syncVisibility) { @@ -6748,7 +6968,6 @@ await loadVersions(); await loadCatalog({ major, preserveSelection: true, silent: true }); await refreshOverview(); - await refreshoVirtPack(); toast(`Runtime switched to ${state.runtimeVersion || seriesLabel(major)}`, "ok"); } finally { setLoading(false); @@ -6770,84 +6989,6 @@ applyMethodDetails(payload); } - async function refreshoVirtPack() { - try { - const res = await fetch("/ui/api/ovirt/contracts"); - if (!res.ok) return; - const data = await res.json(); - const active = data.active || {}; - setText(els.statOsSeries, active.series || "—"); - setText(els.statOsOps, String(active.operation_count ?? data.schema_ops_mounted ?? "—")); - setText(els.statOsServices, String(active.service_count ?? "—")); - if (els.osSeriesSelect) { - const available = data.available || []; - els.osSeriesSelect.innerHTML = available.map((s) => - `` - ).join(""); - } - if (els.osMvService) { - const services = (active.services || []).filter((s) => s.max_microversion); - els.osMvService.innerHTML = services.map((s) => - `` - ).join(""); - } - if (els.osPackNote) { - els.osPackNote.textContent = `Pack ${active.series || "—"} · ${active.operation_count || 0} operations · checksum ${(active.checksum || "").slice(0, 12)}…`; - } - } catch (e) { - console.error(e); - } - } - - function bindoVirtPackActions() { - els.btnOsSeriesActivate?.addEventListener("click", async () => { - const series = els.osSeriesSelect?.value; - if (!series) return; - const res = await fetch("/ui/api/ovirt/contracts/activate", { - method: "POST", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify({ series }), - }); - const payload = await res.json().catch(() => ({})); - if (!res.ok) { - toast(payload.detail || `Activate failed: ${res.status}`, "error"); - return; - } - toast(`oVirt pack: ${payload.series} (${payload.operation_count} ops)`, "ok"); - await refreshoVirtPack(); - }); - els.btnOsMvSet?.addEventListener("click", async () => { - const service = els.osMvService?.value; - const version = els.osMvVersion?.value?.trim(); - if (!service || !version) { - toast("Pick a service and microversion", "warn"); - return; - } - const res = await fetch("/ui/api/ovirt/microversions", { - method: "POST", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify({ service, version }), - }); - if (!res.ok) { - toast(`Microversion set failed: ${res.status}`, "error"); - return; - } - toast(`${service} → ${version}`, "ok"); - await refreshoVirtPack(); - }); - els.btnOsMvClear?.addEventListener("click", async () => { - const service = els.osMvService?.value; - if (!service) return; - await fetch("/ui/api/ovirt/microversions", { - method: "POST", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify({ service, version: "default" }), - }); - toast(`${service} microversion reset`, "ok"); - await refreshoVirtPack(); - }); - } - async function refreshOverview() { try { setText( @@ -6856,7 +6997,6 @@ ); await refreshClusterStats(); await refreshCatalogCoverage(); - await refreshoVirtPack(); } catch (e) { console.error(e); } } @@ -7142,7 +7282,6 @@ bindCatalogOptions(); bindHelpNav(); bindDataPanelActions(); - bindoVirtPackActions(); bindModal(); bindTooltips(); bindEndpointTree(); diff --git a/app/web/ovirt_body_examples.py b/app/web/ovirt_body_examples.py new file mode 100644 index 0000000..ccc9b17 --- /dev/null +++ b/app/web/ovirt_body_examples.py @@ -0,0 +1,327 @@ +"""Engine-shaped JSON request-body examples for the Web console. + +Bodies follow the oVirt Engine REST convention: a single root element wrapping +the resource (or ``action``). Field shapes match what this simulator accepts and +what the public Engine API model documents for common create/update/action calls. +""" + +from __future__ import annotations + +from typing import Any + +from app.ovirt.ids import stable_id + +# Minimal-seed stable IDs (see app.ovirt.seed) — usable with `make seed`. +_DC = str(stable_id("dc", "Default")) +_CLUSTER = str(stable_id("cluster", "Default")) +_HOST = str(stable_id("host", "host01")) +_TEMPLATE = str(stable_id("template", "Blank")) +_SD = str(stable_id("sd", "data1")) +_NET = str(stable_id("net", "ovirtmgmt")) +_VNIC = str(stable_id("vnic", "ovirtmgmt")) +_VM = str(stable_id("vm", "lab-vm-01")) +_DISK = str(stable_id("disk", "lab-vm-01")) +_USER = str(stable_id("user", "admin")) +_ROLE = str(stable_id("role", "SuperUser")) +_DOMAIN = str(stable_id("domain", "internal")) + + +def _ref(collection: str, object_id: str, *, name: str | None = None) -> dict[str, Any]: + entity: dict[str, Any] = { + "id": object_id, + "href": f"/ovirt-engine/api/{collection}/{object_id}", + } + if name is not None: + entity["name"] = name + return entity + + +def _wrap(element: str, payload: dict[str, Any]) -> dict[str, Any]: + return {element: payload} + + +def _entity_bodies() -> dict[str, dict[str, Any]]: + """Map contract ``element`` → inner payload (without root wrapper).""" + + return { + "vm": { + "name": "example-vm", + "description": "Example virtual machine", + "type": "server", + "memory": 1073741824, + "cpu": {"topology": {"sockets": 1, "cores": 1, "threads": 1}}, + "os": {"type": "other"}, + "cluster": _ref("clusters", _CLUSTER, name="Default"), + "template": _ref("templates", _TEMPLATE, name="Blank"), + }, + "host": { + "name": "host-02", + "address": "192.168.1.11", + "comment": "Example host", + "cluster": _ref("clusters", _CLUSTER, name="Default"), + }, + "disk": { + "name": "example-disk", + "description": "Example virtual disk", + "provisioned_size": 10737418240, + "format": "cow", + "sparse": True, + "storage_domains": { + "storage_domain": [_ref("storagedomains", _SD, name="data1")], + }, + }, + # Inline disk create — seed disk is already attached to lab-vm-01. + "disk_attachment": { + "interface": "virtio_scsi", + "bootable": False, + "active": True, + "disk": { + "name": "example-attached-disk", + "provisioned_size": 10737418240, + "format": "cow", + "sparse": True, + "storage_domains": { + "storage_domain": [_ref("storagedomains", _SD, name="data1")], + }, + }, + }, + "nic": { + "name": "nic1", + "interface": "virtio", + "linked": True, + "plugged": True, + "vnic_profile": _ref("vnicprofiles", _VNIC, name="ovirtmgmt"), + }, + "network": { + "name": "vlan100", + "description": "Example VLAN network", + "stp": False, + "data_center": _ref("datacenters", _DC, name="Default"), + "vlan": {"id": 100}, + }, + "vnic_profile": { + "name": "example-profile", + "pass_through": {"mode": "disabled"}, + "network": _ref("networks", _NET, name="ovirtmgmt"), + }, + "data_center": { + "name": "example-dc", + "description": "Example data center", + "local": False, + "version": {"major": 4, "minor": 5}, + }, + "cluster": { + "name": "example-cluster", + "description": "Example cluster", + "data_center": _ref("datacenters", _DC, name="Default"), + "cpu": {"type": "Intel Conroe Family"}, + }, + "storage_domain": { + "name": "example-sd", + "type": "data", + "storage": { + "type": "nfs", + "address": "nfs.lab.local", + "path": "/export/example", + }, + "host": _ref("hosts", _HOST, name="host01"), + }, + "storage_connection": { + "type": "nfs", + "address": "nfs.lab.local", + "path": "/export/example", + }, + "template": { + "name": "example-template", + "description": "Example template", + "vm": _ref("vms", _VM, name="lab-vm-01"), + "cluster": _ref("clusters", _CLUSTER, name="Default"), + }, + "snapshot": { + "description": "example-snapshot", + "persist_memorystate": False, + }, + "tag": {"name": "example-tag", "description": "Example tag"}, + "bookmark": {"name": "example-bookmark", "value": "Vms: status=up"}, + "affinity_group": { + "name": "example-affinity", + "description": "Example affinity group", + "enforcing": False, + "hosts_rule": {"enabled": True, "positive": True}, + "vms_rule": {"enabled": True, "positive": True}, + }, + "affinity_label": {"name": "example-label"}, + "permission": { + "role": _ref("roles", _ROLE, name="SuperUser"), + "user": _ref("users", _USER, name="admin"), + }, + "user": { + "user_name": "example@internal", + "name": "example", + "domain": _ref("domains", _DOMAIN, name="internal"), + "password": "secret", + }, + "group": {"name": "example-group", "domain": _ref("domains", _DOMAIN, name="internal")}, + "role": {"name": "ExampleRole", "administrative": False}, + "quota": { + "name": "example-quota", + "description": "Example quota", + "data_center": _ref("datacenters", _DC, name="Default"), + }, + "vm_pool": { + "name": "example-pool", + "description": "Example VM pool", + "size": 1, + "cluster": _ref("clusters", _CLUSTER, name="Default"), + "template": _ref("templates", _TEMPLATE, name="Blank"), + }, + "mac_pool": { + "name": "example-mac-pool", + "allow_duplicates": False, + "ranges": { + "range": [{"from": "00:1A:4A:16:01:00", "to": "00:1A:4A:16:01:FF"}], + }, + }, + "cdrom": {"file": {"id": ""}}, + "graphics_console": {"protocol": "spice"}, + "host_nic": { + "name": "eth1", + "boot_protocol": "none", + "network": _ref("networks", _NET, name="ovirtmgmt"), + }, + "scheduling_policy": {"name": "example-policy", "description": "Example policy"}, + "instance_type": { + "name": "example-instancetype", + "memory": 1073741824, + "cpu": {"topology": {"sockets": 1, "cores": 1, "threads": 1}}, + }, + "image_transfer": { + "disk": _ref("disks", _DISK), + "direction": "upload", + "format": "raw", + }, + "event": { + "description": "Example event", + "severity": 1, + "origin": "ovirt-api-simulator", + }, + "job": {"description": "Example job"}, + "step": {"description": "Example step", "type": "VALIDATING"}, + "icon": {"media_type": "image/png", "data": ""}, + "file": {"name": "example.iso"}, + "cluster_level": {"id": "4.5"}, + "operating_system": {"name": "other"}, + "domain": {"name": "example.local"}, + "external_host_provider": { + "name": "example-foreman", + "url": "https://foreman.example.local", + "username": "admin", + "password": "secret", + }, + "openstack_image_provider": { + "name": "example-glance", + "url": "https://glance.example.local:9292", + "username": "admin", + "password": "secret", + "authentication_url": "https://keystone.example.local:5000/v3", + "tenant_name": "admin", + }, + "openstack_network_provider": { + "name": "example-neutron", + "url": "https://neutron.example.local:9696", + "username": "admin", + "password": "secret", + "authentication_url": "https://keystone.example.local:5000/v3", + "tenant_name": "admin", + "plugin_type": "open_vswitch", + "type": "external", + }, + "openstack_volume_provider": { + "name": "example-cinder", + "url": "https://cinder.example.local:8776/v3", + "username": "admin", + "password": "secret", + "authentication_url": "https://keystone.example.local:5000/v3", + "tenant_name": "admin", + }, + "network_filter": {"name": "example-filter"}, + "engine_option": {"name": "ExampleOption", "value": "true"}, + "katello_erratum": {"id": "example-erratum"}, + "statistic": {"name": "example.stat", "type": "GAUGE", "unit": "NONE"}, + "scheduling_policy_unit": {"name": "example-unit", "type": "filter"}, + } + + +def _action_name(path: str) -> str: + return path.rstrip("/").rsplit("/", 1)[-1].lower() + + +def _action_body(path: str) -> dict[str, Any]: + """Real Engine actions use a root ``action`` element.""" + + name = _action_name(path) + action: dict[str, Any] = {} + if name == "clone": + action["vm"] = {"name": "example-vm-clone"} + elif name == "migrate": + action["host"] = _ref("hosts", _HOST, name="host01") + elif name in {"move", "copy"}: + action["storage_domain"] = _ref("storagedomains", _SD, name="data1") + elif name == "export": + action["storage_domain"] = _ref("storagedomains", _SD, name="data1") + action["exclusive"] = False + elif name == "import": + action["cluster"] = _ref("clusters", _CLUSTER, name="Default") + action["storage_domain"] = _ref("storagedomains", _SD, name="data1") + elif name == "attach": + action["disk"] = _ref("disks", _DISK) + elif name == "detach": + action["detach_only"] = True + elif name in {"start", "stop", "shutdown", "reboot", "suspend", "activate", "deactivate"}: + action["async"] = True + elif name == "ticket": + action["ticket"] = {"value": ""} + elif name == "preview_snapshot": + action["restore_memory"] = False + return {"action": action} + + +def _generic_entity(element: str) -> dict[str, Any]: + return { + "name": f"example-{element.replace('_', '-')}", + "description": f"Example {element.replace('_', ' ')}", + } + + +def body_example_for( + *, + method: str, + kind: str, + element: str, + path: str, +) -> dict[str, Any] | None: + """Return a full JSON request body example, or ``None`` when no body is used.""" + + method_u = method.upper() + kind_l = (kind or "").lower() + element_l = (element or "").strip() + if method_u not in {"POST", "PUT"}: + return None + if kind_l == "action": + return _action_body(path) + if kind_l not in {"collection", "item"}: + return None + if not element_l: + return None + bodies = _entity_bodies() + inner = dict(bodies.get(element_l) or _generic_entity(element_l)) + if method_u == "PUT": + # Partial update: avoid renaming path-param seed entities via console Try-it. + inner.pop("name", None) + if "description" in inner or element_l not in {"cdrom", "graphics_console", "permission"}: + inner["description"] = f"Updated {element_l.replace('_', ' ')}" + if element_l == "vm" and "memory" in inner: + inner["memory"] = 2147483648 + if element_l == "disk" and "provisioned_size" in inner: + inner["provisioned_size"] = 21474836480 + return _wrap(element_l, inner) diff --git a/app/web/ovirt_catalog.py b/app/web/ovirt_catalog.py index f95da0d..f170282 100644 --- a/app/web/ovirt_catalog.py +++ b/app/web/ovirt_catalog.py @@ -11,30 +11,42 @@ from app.ovirt.contract_loader import ( load_series_pack, series_for_major, ) +from app.ovirt.ids import stable_id +from app.web.ovirt_body_examples import body_example_for _PATH_PARAM = re.compile(r"\{([^{}]+)\}") +# Prefer minimal-seed UUIDs so console Try-it requests resolve against `make seed`. _PATH_PARAM_EXAMPLES: dict[str, object] = { - "vm": "vm-001", - "vmId": "00000000-0000-0000-0000-000000000001", - "host": "host-01", - "hostId": "00000000-0000-0000-0000-000000000011", + "vm": "lab-vm-01", + "vm_id": str(stable_id("vm", "lab-vm-01")), + "vmId": str(stable_id("vm", "lab-vm-01")), + "host": "host01", + "host_id": str(stable_id("host", "host01")), + "hostId": str(stable_id("host", "host01")), "cluster": "Default", - "clusterId": "00000000-0000-0000-0000-000000000021", + "cluster_id": str(stable_id("cluster", "Default")), + "clusterId": str(stable_id("cluster", "Default")), + "datacenter_id": str(stable_id("dc", "Default")), "dataCenter": "Default", - "dataCenterId": "00000000-0000-0000-0000-000000000031", - "disk": "disk-001", - "diskId": "00000000-0000-0000-0000-000000000041", + "dataCenterId": str(stable_id("dc", "Default")), + "disk": "lab-vm-01-disk", + "disk_id": str(stable_id("disk", "lab-vm-01")), + "diskId": str(stable_id("disk", "lab-vm-01")), "network": "ovirtmgmt", - "networkId": "00000000-0000-0000-0000-000000000051", - "storageDomain": "data", - "storageDomainId": "00000000-0000-0000-0000-000000000061", + "network_id": str(stable_id("net", "ovirtmgmt")), + "networkId": str(stable_id("net", "ovirtmgmt")), + "storagedomain_id": str(stable_id("sd", "data1")), + "storageDomain": "data1", + "storageDomainId": str(stable_id("sd", "data1")), "template": "Blank", - "templateId": "00000000-0000-0000-0000-000000000071", + "template_id": str(stable_id("template", "Blank")), + "templateId": str(stable_id("template", "Blank")), "user": "admin@internal", - "userId": "00000000-0000-0000-0000-000000000081", + "user_id": str(stable_id("user", "admin")), + "userId": str(stable_id("user", "admin")), "jobId": "00000000-0000-0000-0000-000000000091", - "id": "00000000-0000-0000-0000-000000000001", + "id": str(stable_id("vm", "lab-vm-01")), } @@ -43,6 +55,65 @@ def path_param_example(name: str) -> object | None: return _PATH_PARAM_EXAMPLES.get(name) + +def _body_fields_from_example( + body_example: dict[str, Any] | None, *, element: str +) -> list[dict[str, Any]]: + """PARAM inputs derived from body_example, including nested scalar paths.""" + + if not isinstance(body_example, dict) or not body_example: + return [] + inner: Any = body_example + if ( + element + and element in body_example + and isinstance(body_example[element], dict) + ): + inner = body_example[element] + elif len(body_example) == 1: + only = next(iter(body_example.values())) + if isinstance(only, dict): + inner = only + if not isinstance(inner, dict): + return [] + + fields: list[dict[str, Any]] = [] + + def _leaf_type(value: Any) -> str: + if isinstance(value, bool): + return "boolean" + if isinstance(value, int) and not isinstance(value, bool): + return "integer" + if isinstance(value, float): + return "number" + return "string" + + def _walk(prefix: str, value: Any) -> None: + if isinstance(value, dict): + for key, child in value.items(): + path = f"{prefix}.{key}" if prefix else str(key) + _walk(path, child) + return + if isinstance(value, list): + for index, child in enumerate(value): + path = f"{prefix}.{index}" if prefix else str(index) + _walk(path, child) + return + desc = f"{element}.{prefix}" if element else prefix + fields.append( + { + "name": prefix, + "type": _leaf_type(value), + "description": desc, + "optional": True, + "enum": [], + "example": value, + } + ) + + _walk("", inner) + return fields + _SERIES_LABELS = { "3.0": "Engine 3.0", "3.1": "Engine 3.1", @@ -146,18 +217,16 @@ def ovirt_method_payload( } for name in path_params ] - body_fields: list[dict[str, Any]] = [] - if op.method in {"POST", "PUT"} and op.kind in {"collection", "item", "action"}: - body_fields.append( - { - "name": op.element, - "type": "object", - "description": f"{op.element} payload (XML or JSON)", - "optional": op.kind == "action", - "enum": [], - "example": {op.element: {"name": "example"}}, - } - ) + # Full Engine-shaped JSON lives in body_example (root-wrapped entity / action). + # PARAM drawer flattens nested scalars from that example (dotted paths). + body_example = body_example_for( + method=op.method, + kind=op.kind, + element=op.element, + path=op.path, + ) + # Scalar fields for the PARAMS drawer; full nested JSON stays in body_example. + body_fields = _body_fields_from_example(body_example, element=op.element or "") query_fields = [] if op.search: query_fields.extend( @@ -200,6 +269,7 @@ def ovirt_method_payload( "path_fields": path_fields, "query_fields": query_fields, "body_fields": body_fields, + "body_example": body_example, "runtime_version": runtime_version, } return { @@ -214,6 +284,7 @@ def ovirt_method_payload( "path_fields": [], "query_fields": [], "body_fields": [], + "body_example": None, "runtime_version": runtime_version, } diff --git a/app/web/routes.py b/app/web/routes.py index 14040e0..63c623e 100644 --- a/app/web/routes.py +++ b/app/web/routes.py @@ -10,7 +10,7 @@ from fastapi.responses import HTMLResponse, JSONResponse from app.db.pool import AsyncpgDatabase from app.dependencies import get_database -from app.ovirt.demo_datacenter import seed_ovirt_demo +from app.ovirt.demo_datacenter import CLUSTER_SIZES, normalize_cluster_size, seed_ovirt_demo from app.ovirt.seed import clear_ovirt_state, ovirt_demo_summary, seed_ovirt from app.web.assets import console_html @@ -175,13 +175,29 @@ async def ui_ovirt_contracts_activate(request: Request) -> JSONResponse: @router.post("/ui/api/demo/load", include_in_schema=False) async def ui_demo_load(request: Request) -> JSONResponse: - """Load synthetic oVirt datacenter (~1000 VMs + full inventory).""" + """Load a sized demo cluster: small (3h/50vm), large (10h/1000vm), big (30h/2000vm).""" + + size_raw = request.query_params.get("size") or request.query_params.get("profile") + if size_raw is None: + try: + body = await request.json() + except Exception: + body = {} + if isinstance(body, dict): + size_raw = body.get("size") or body.get("profile") + try: + size = normalize_cluster_size(str(size_raw) if size_raw else "large") + except ValueError as error: + raise HTTPException( + status_code=400, + detail=f"{error}; sizes: {', '.join(sorted(CLUSTER_SIZES))}", + ) from error pool = _database_pool(request) try: async with pool.acquire() as connection: async with connection.transaction(): - result = await seed_ovirt_demo(connection) + result = await seed_ovirt_demo(connection, size=size) summary = await ovirt_demo_summary(connection) except Exception as error: raise HTTPException( diff --git a/docs/getting-started.md b/docs/getting-started.md index a8dcb50..3010269 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -66,6 +66,9 @@ curl -skf https://127.0.0.1/health/ready curl -sf http://127.0.0.1:5000/health/live ``` +Open the console at [http://127.0.0.1:5000/](http://127.0.0.1:5000/) — see +[Web UI](web-ui.md) for screenshots of Try-it, catalog, and data drawers. + `/health/ready` returns HTTP 503 until PostgreSQL is reachable **and** the latest packaged migration is applied. diff --git a/docs/images/web-ui/api-catalog.png b/docs/images/web-ui/api-catalog.png new file mode 100644 index 0000000000000000000000000000000000000000..0615282a1de83934ffb73622398777fc8979f46d GIT binary patch literal 45203 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 literal 0 HcmV?d00001 diff --git a/docs/images/web-ui/authentication.png b/docs/images/web-ui/authentication.png new file mode 100644 index 0000000000000000000000000000000000000000..fb85975abf0d8fc3fc1bc152906a6b88d7b1c505 GIT binary patch literal 31481 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 B4z&OP literal 0 HcmV?d00001 diff --git a/docs/images/web-ui/console.png b/docs/images/web-ui/console.png new file mode 100644 index 0000000000000000000000000000000000000000..1b9dadf5cc602fe4565e5e91ef193e9002a0a26e GIT binary patch literal 24646 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 literal 0 HcmV?d00001 diff --git a/docs/images/web-ui/data.png b/docs/images/web-ui/data.png new file mode 100644 index 0000000000000000000000000000000000000000..f2b1be37f5ccd2bb25872a17d97d5ce061378fd1 GIT binary patch literal 72387 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 literal 0 HcmV?d00001 diff --git a/docs/images/web-ui/environment.png b/docs/images/web-ui/environment.png new file mode 100644 index 0000000000000000000000000000000000000000..80ac62208277ea5a9a64421d23a13871e6d1c2cb GIT binary patch literal 61008 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

9XS>q06X2pf<^=!SXl&9efDX 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 E0d|{a6aWAK literal 0 HcmV?d00001 diff --git a/docs/images/web-ui/help-compatibility.png b/docs/images/web-ui/help-compatibility.png new file mode 100644 index 0000000000000000000000000000000000000000..7edc2f1fa1bca6add6b360c6920c142c7d7cff29 GIT binary patch literal 56527 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

kTrW+;H2L&psk)}km0*%@B4ztk$3$R#WC0R9 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 L_aN89KZpJgVeT`p literal 0 HcmV?d00001 diff --git a/docs/operations.md b/docs/operations.md index d4f310f..0d3e15e 100644 --- a/docs/operations.md +++ b/docs/operations.md @@ -46,7 +46,7 @@ make seed-demo OVIRT_SERIES=4.4 make restart ``` -**Hot-swap** (in-memory, no rebuild) — Web UI Environment → Apply pack, or: +**Hot-swap** (in-memory, no rebuild) — Web UI **API catalog** → **Apply as runtime**, or: ```bash curl -s http://127.0.0.1:5000/ui/api/ovirt/contracts/activate \ diff --git a/docs/ru/getting-started.md b/docs/ru/getting-started.md index 0f3645d..7876470 100644 --- a/docs/ru/getting-started.md +++ b/docs/ru/getting-started.md @@ -66,6 +66,9 @@ curl -skf https://127.0.0.1/health/ready curl -sf http://127.0.0.1:5000/health/live ``` +Консоль: [http://127.0.0.1:5000/](http://127.0.0.1:5000/) — скриншоты Try-it, +каталога и ящиков Data см. в [Web UI](web-ui.md). + `/health/ready` возвращает HTTP 503, пока PostgreSQL недоступен **или** не применена последняя упакованная миграция. diff --git a/docs/ru/operations.md b/docs/ru/operations.md index 329fa89..115d129 100644 --- a/docs/ru/operations.md +++ b/docs/ru/operations.md @@ -46,7 +46,7 @@ make seed-demo OVIRT_SERIES=4.4 make restart ``` -**Hot-swap** (in-memory, без пересборки) — Web UI Environment → Apply pack, или: +**Hot-swap** (in-memory, без пересборки) — Web UI **API catalog** → **Apply as runtime**, или: ```bash curl -s http://127.0.0.1:5000/ui/api/ovirt/contracts/activate \ diff --git a/docs/ru/seed-profiles.md b/docs/ru/seed-profiles.md index 2c30569..739dcc0 100644 --- a/docs/ru/seed-profiles.md +++ b/docs/ru/seed-profiles.md @@ -4,38 +4,38 @@ | Профиль | Как загрузить | Содержимое | |---|---|---| -| `minimal` | Startup симулятора (если БД ещё не `demo`) / `make seed` / `python -m app.ovirt.seed_cli --profile minimal` / Helm seed Job | 1 datacenter, 1 cluster, 1 host, Blank template, 4 пользователя, небольшой sample инвентаря | -| `demo` | `make seed-demo` / ящик Data в UI / Helm `seed.profile=demo` / `--profile demo` | ~1000 ВМ, multi-host DC, сети, storage domains, диски, nested samples | +| `minimal` | Старт (если БД не sized-demo) / `make seed` / `--profile minimal` | 1 DC, 1 cluster, 1 host, Blank, 4 пользователя | +| `small` | `make seed-small` / DATA → **Load small** / `--profile small` | **3 host · 50 ВМ** · 1 DC · 1 cluster · 2 сети · 2 SD | +| `large` | `make seed-large` / DATA → **Load large** / `--profile large` | **10 host · 1000 ВМ** · 2 DC · 2 cluster · пропорциональный инвентарь | +| `big` | `make seed-big` / DATA → **Load big** / `--profile big` | **30 host · 2000 ВМ** · 3 DC · 6 cluster · больше tags/events/jobs | +| `demo` | `make seed-demo` (alias) / `--profile demo` | То же, что **`large`** (старое имя) | -В Compose lifespan FastAPI загружает **`minimal`**, если БД пуста или не -помечена как `demo`. Для большого профиля — `make seed-demo` (или ящик Data в -UI). Helm дополнительно может запускать seed Job (`seed.enabled`). +Sized-demo масштабируют DC, clusters, hosts, VMs, сети, storage domains, +templates, tags, events, jobs и nested samples вместе. Lifespan сохраняет +`small` / `large` / `big` / `demo` при рестарте. -Пароль для всех пользователей: **`secret`**. Домен: **`internal`**. - -Principals: `admin@internal`, `ops@internal`, `developer@internal`, -`demo@internal`. +Пароль всех пользователей: **`secret`**. Домен: **`internal`**. ## CLI ```bash make seed -make seed-demo - -# эквивалент -docker compose run --rm --entrypoint python simulator \ - -m app.ovirt.seed_cli --profile demo +make seed-small +make seed-large # или: make seed-demo +make seed-big ``` +## UI + +Ящик **DATA** → **Load small** / **Load large** / **Load big**, либо +**Reset to minimal**. + +API: `POST /ui/api/demo/load?size=small|large|big` + ## Helm ```yaml seed: enabled: true - profile: demo # или minimal + profile: large # minimal | small | large | big | demo ``` - -## Поведение - -Оба профиля **очищают** (truncate) лабораторные таблицы oVirt и загружают данные -заново. `demo` — для плотности и nested GET; `minimal` — для быстрого CI. diff --git a/docs/ru/web-ui.md b/docs/ru/web-ui.md index 371ca2c..1bae528 100644 --- a/docs/ru/web-ui.md +++ b/docs/ru/web-ui.md @@ -2,32 +2,74 @@ # Web UI -URL консоли (Compose по умолчанию): [http://127.0.0.1:5000/](http://127.0.0.1:5000/) +Интерактивная консоль: обзор операций контракта Engine, лабораторные токены, +Try-it запросы и управление seed-данными. -UX ящиков совпадает с другими лабораторными симуляторами этого семейства: +URL по умолчанию (Compose): [http://127.0.0.1:5000/](http://127.0.0.1:5000/) +(При `make up-local` — локальный UI-порт из `.env`, например `6080` / `7080`.) + +![Консоль](../images/web-ui/console.png) + +## Рабочая область | Область | Назначение | |---|---| -| Auth | Выдача лабораторных токенов / показ principal | -| API catalog | Обзор операций контракта активного series | -| Coverage | Сводка покрытия pack / handlers | -| Help | Краткие заметки оператора | -| Data | Reseed `minimal` / `demo` | -| Environment | Активный series, runtime-подсказки, hot-swap **Apply pack** | +| Выбор endpoint | Поиск по путям контракта (series pack Engine) | +| Вкладки методов | `GET` / `POST` / `PUT` / `DELETE` для выбранного пути | +| Request body | JSON-пример в форме Engine для create/update/action | +| Params | Плоские path/body-поля для быстрых правок | +| Response | Статус + JSON-дерево последнего ответа | +| History | Недавние Try-it запросы (повтор / восстановление) | + +![Ящик Endpoints](../images/web-ui/endpoints.png) + +![POST /vms с телом в форме Engine](../images/web-ui/request-body.png) + +![Параметры запроса](../images/web-ui/request-params.png) + +Тела запросов соответствуют соглашению Engine (root-wrapper сущности или +`action`). В примерах — вложенные ссылки (`cluster`, `template`, CPU topology, +storage domains) под seed-инвентарь лаборатории, а не однополевой stub. + +![History](../images/web-ui/history.png) + +## Ящики (drawers) + +| Ящик | Назначение | +|---|---| +| Authentication | SSO password grant / вставка Bearer-токена | +| API catalog | Обзор series packs; **Apply as runtime** — hot-swap | +| Help → Compatibility | Сводка declared / implemented / verified | +| Data | Reseed `minimal` / `small` / `large` / `big` | +| Environment | Runtime series + обзор инвентаря datacenter | + +![Authentication](../images/web-ui/authentication.png) + +Лабораторные учётки: `admin@internal`, `ops@internal`, `developer@internal`, +`demo@internal` / `secret`. Scope: `ovirt-app-api`. + +![API catalog](../images/web-ui/api-catalog.png) + +![Help / compatibility](../images/web-ui/help-compatibility.png) + +![Пресеты Data](../images/web-ui/data.png) + +![Environment](../images/web-ui/environment.png) ## Hot-swap series -Из Environment (или UI API): +Из **API catalog** → **Apply as runtime** (или UI API): - `POST /ui/api/ovirt/contracts/activate` с `{"series":"4.4"}` - `POST /ui/api/contract/apply?major=N` Перемонтирует in-memory контрактные маршруты без пересборки образа. Рестарт -процесса возвращает cold-start значение `OVIRT_SERIES`. См. -[Версии API](api-versions.md). +процесса возвращает cold-start `OVIRT_SERIES`. См. [Версии API](api-versions.md). -Брендинг: oVirt blue `#0076B6` и charcoal `#1D2226`. +## Заметки -UI обращается к тому же процессу симулятора, что и Engine API; отличается только -опубликованный listener ([ports.md](ports.md)). Схема OpenAPI: -[http://127.0.0.1:5000/docs](http://127.0.0.1:5000/docs) (также на порту Engine). +- Брендинг: oVirt blue `#0076B6` и charcoal `#1D2226`. +- UI ходит в тот же процесс симулятора, что и Engine API; отличается только + опубликованный listener ([порты](ports.md)). +- OpenAPI: [http://127.0.0.1:5000/docs](http://127.0.0.1:5000/docs) + (также на HTTPS-порту Engine). diff --git a/docs/seed-profiles.md b/docs/seed-profiles.md index a5cbc03..c8ed6fc 100644 --- a/docs/seed-profiles.md +++ b/docs/seed-profiles.md @@ -4,12 +4,16 @@ | Profile | How to load | Contents | |---|---|---| -| `minimal` | Simulator startup (if DB is not already `demo`) / `make seed` / `python -m app.ovirt.seed_cli --profile minimal` / Helm seed Job | 1 datacenter, 1 cluster, 1 host, Blank template, 4 users, small inventory sample | -| `demo` | `make seed-demo` / UI Data drawer / Helm `seed.profile=demo` / `--profile demo` | ~1000 VMs, multi-host DC, networks, storage domains, disks, nested samples | +| `minimal` | Startup (if DB is not a sized demo) / `make seed` / `--profile minimal` | 1 DC, 1 cluster, 1 host, Blank template, 4 users | +| `small` | `make seed-small` / DATA → **Load small** / `--profile small` | **3 hosts · 50 VMs** · 1 DC · 1 cluster · 2 networks · 2 SD | +| `large` | `make seed-large` / DATA → **Load large** / `--profile large` | **10 hosts · 1000 VMs** · 2 DC · 2 clusters · proportional inventory | +| `big` | `make seed-big` / DATA → **Load big** / `--profile big` | **30 hosts · 2000 VMs** · 3 DC · 6 clusters · denser tags/events/jobs | +| `demo` | `make seed-demo` (alias) / `--profile demo` | Same as **`large`** (legacy name) | -On Compose, the FastAPI lifespan loads **`minimal`** automatically when the DB -is empty or not marked as `demo`. Use `make seed-demo` (or the UI Data drawer) -for the large profile. Helm can also run a seed Job (`seed.enabled`). +Sized demos scale datacenters, clusters, hosts, VMs, networks, storage domains, +templates, tags, events, jobs, and nested samples together. On Compose, lifespan +keeps any of `small` / `large` / `big` / `demo` across restarts (does not wipe to +minimal). Password for all users: **`secret`**. Domain: **`internal`**. @@ -20,22 +24,30 @@ Principals: `admin@internal`, `ops@internal`, `developer@internal`, ```bash make seed -make seed-demo +make seed-small +make seed-large # or: make seed-demo +make seed-big -# equivalent docker compose run --rm --entrypoint python simulator \ - -m app.ovirt.seed_cli --profile demo + -m app.ovirt.seed_cli --profile large ``` +## UI + +Open the **DATA** drawer → **Load small** / **Load large** / **Load big**, or +**Reset to minimal**. + +API: `POST /ui/api/demo/load?size=small|large|big` + ## Helm ```yaml seed: enabled: true - profile: demo # or minimal + profile: large # minimal | small | large | big | demo ``` ## Behaviour -Both profiles **truncate** oVirt lab tables then reload. Prefer `demo` for -density and nested GET probes; `minimal` for fast CI. +All profiles **truncate** oVirt lab tables then reload. Prefer `large`/`big` for +density; `minimal` / `small` for fast CI and light labs. diff --git a/docs/web-ui.md b/docs/web-ui.md index 0d321c0..82a7e97 100644 --- a/docs/web-ui.md +++ b/docs/web-ui.md @@ -2,22 +2,63 @@ # Web UI -Console URL (Compose default): [http://127.0.0.1:5000/](http://127.0.0.1:5000/) +Interactive console for browsing Engine contract operations, issuing lab tokens, +sending Try-it requests, and managing seed data. -Drawer UX matches the other laboratory simulators in this family: +Compose default URL: [http://127.0.0.1:5000/](http://127.0.0.1:5000/) +(With `make up-local`, use the local UI port from your `.env`, e.g. `6080` / `7080`.) + +![Console](images/web-ui/console.png) + +## Workspace | Area | Purpose | |---|---| -| Auth | Issue lab tokens / show principal | -| API catalog | Browse contract operations for the active series | -| Coverage | Pack / handler coverage summary | -| Help | Short operator notes | -| Data | Reseed `minimal` / `demo` | -| Environment | Active series, runtime hints, **Apply pack** hot-swap | +| Endpoint picker | Searchable catalog of contract paths (Engine series pack) | +| Method tabs | `GET` / `POST` / `PUT` / `DELETE` for the selected path | +| Request body | Engine-shaped JSON sample for create/update/action | +| Params | Flattened path + body fields for quick edits | +| Response | Status + JSON tree for the last call | +| History | Recent Try-it requests (replay / restore) | + +![Endpoints drawer](images/web-ui/endpoints.png) + +![POST /vms with Engine-shaped body](images/web-ui/request-body.png) + +![Request parameters](images/web-ui/request-params.png) + +Request bodies follow the real Engine convention (root-wrapped entity or +`action`). Samples include nested refs (`cluster`, `template`, CPU topology, +storage domains) aligned with the seeded lab inventory — not a one-field stub. + +![History](images/web-ui/history.png) + +## Drawers + +| Drawer | Purpose | +|---|---| +| Authentication | Engine SSO password grant / paste Bearer token | +| API catalog | Browse series packs; **Apply as runtime** hot-swap | +| Help → Compatibility | Declared / implemented / verified surface summary | +| Data | Reseed `minimal` / `small` / `large` / `big` | +| Environment | Runtime series + datacenter inventory overview | + +![Authentication](images/web-ui/authentication.png) + +Default lab principals: `admin@internal`, `ops@internal`, `developer@internal`, +`demo@internal` / `secret`. Scope: `ovirt-app-api`. + +![API catalog](images/web-ui/api-catalog.png) + +![Help / compatibility](images/web-ui/help-compatibility.png) + +![Data presets](images/web-ui/data.png) + +![Environment](images/web-ui/environment.png) ## Series hot-swap -From Environment (or UI API): +From **API catalog** → **Apply as runtime** (or UI API): - `POST /ui/api/ovirt/contracts/activate` with `{"series":"4.4"}` - `POST /ui/api/contract/apply?major=N` @@ -26,8 +67,10 @@ This remounts the in-memory contract routes without rebuilding the image. A process restart restores the cold-start `OVIRT_SERIES` value. See [API versions](api-versions.md). -Branding uses oVirt blue `#0076B6` and charcoal `#1D2226`. +## Notes -The UI talks to the same simulator process as the Engine API; only the published -listener differs ([ports.md](ports.md)). OpenAPI schema: -[http://127.0.0.1:5000/docs](http://127.0.0.1:5000/docs) (also on Engine port). +- Branding uses oVirt blue `#0076B6` and charcoal `#1D2226`. +- The UI talks to the same simulator process as the Engine API; only the + published listener differs ([ports.md](ports.md)). +- OpenAPI schema: [http://127.0.0.1:5000/docs](http://127.0.0.1:5000/docs) + (also available on the Engine HTTPS port). diff --git a/pulumi-tests/README.md b/pulumi-tests/README.md index 3b5ef8b..41c86a8 100644 --- a/pulumi-tests/README.md +++ b/pulumi-tests/README.md @@ -2,10 +2,10 @@ # oVirt Pulumi contract-coverage lab -Pulumi Automation API suite that exercises **every operation** declared in -`contracts/ovirt//api.json` across **all Engine series packs**, plus a -**synthetic HEAD** request for each GET path (contracts omit HEAD; the Engine -accepts it). +**100% coverage** here means the **HTTP contract matrix**: every operation +declared in `contracts/ovirt//api.json` for **all Engine series packs**, +plus a **synthetic HEAD** for each GET path (contracts omit HEAD; the Engine +accepts it). It is **not** a count of Pulumi provider resources. | Series | Ops (approx.) | |--------|--------------:| @@ -16,10 +16,22 @@ make test-pulumi-smoke # 3.6 + 4.5 sample (fast) make pulumi-tests # full matrix (alias: make test-pulumi) ``` +Layer B (optional): provider lifecycle smoke only — do not treat it as API +parity. + Reports (written under `reports/`): -- `pulumi-contract-coverage.html` — human-readable summary (includes methods histogram) -- `pulumi-contract-coverage.json` — machine-readable results +- `pulumi-contract-coverage.html` — human-readable summary (method histogram + includes GET/PUT/POST/DELETE/HEAD) +- `pulumi-contract-coverage.json` — machine-readable results + `coverage` + (`probed/declared`, `critical`) + +Pass line example: + +```text +COVERAGE 9150/9150 (critical=0) +METHODS {"DELETE":1146,"GET":2314,"HEAD":2314,"POST":2230,"PUT":1146} +``` Optional filters: @@ -29,11 +41,14 @@ OVIRT_METHODS_FILTER=GET make pulumi-tests SMOKE_ONLY=1 make test-pulumi-smoke ``` -All suites run **only in Docker**. Pass criteria: +All suites run **only in Docker** (lab compose seeds **minimal** inventory). +Pass criteria: - The Engine route is reachable and returns a handled status (`200`/`201`/`202`/`204`, `400`/`403`/`404`/`405`/`409`/`415`/`422`/`501`) — **not** `401` (the suite re-authenticates after each series unload) and not a transport/`5xx` failure. - For `200`/`201`/`202` the response body must be non-empty (HEAD exempt). -- Full runs must exercise **GET, POST, PUT, DELETE, and HEAD**; any failures or - missing methods fail the suite. +- Successful **collection** GETs must return a **non-empty** list with `id` + (empty `[]` is a seed/`ov_api_objects` gap — fix data, do not skip). +- Full runs must exercise **GET, POST, PUT, DELETE, and HEAD**; any failures, + missing methods, or `probed != declared` fail the suite (`critical=0` required). diff --git a/pulumi-tests/README.ru.md b/pulumi-tests/README.ru.md index 8640528..8ff5fc3 100644 --- a/pulumi-tests/README.ru.md +++ b/pulumi-tests/README.ru.md @@ -2,10 +2,10 @@ # Лаборатория Pulumi: покрытие контрактов oVirt -Suite на Pulumi Automation API, который вызывает **каждую операцию** из +**100% coverage** здесь — это **HTTP contract matrix**: каждая операция из `contracts/ovirt//api.json` для **всех series packs** Engine, плюс **синтетический HEAD** для каждого GET-пути (в contracts нет HEAD; Engine его -принимает). +принимает). Это **не** число ресурсов Pulumi provider. | Series | Операций (примерно) | |--------|--------------------:| @@ -16,10 +16,22 @@ make test-pulumi-smoke # выборка 3.6 + 4.5 (быстро) make pulumi-tests # полная матрица (alias: make test-pulumi) ``` +Layer B (опционально): только smoke lifecycle провайдера — не выдавать за +полноту API. + Отчёты (в `reports/`): -- `pulumi-contract-coverage.html` — сводка для человека (включая гистограмму методов) -- `pulumi-contract-coverage.json` — машиночитаемый результат +- `pulumi-contract-coverage.html` — сводка (гистограмма методов: + GET/PUT/POST/DELETE/HEAD) +- `pulumi-contract-coverage.json` — результат + `coverage` + (`probed/declared`, `critical`) + +Пример pass-строки: + +```text +COVERAGE 9150/9150 (critical=0) +METHODS {"DELETE":1146,"GET":2314,"HEAD":2314,"POST":2230,"PUT":1146} +``` Фильтры: @@ -29,11 +41,14 @@ OVIRT_METHODS_FILTER=GET make pulumi-tests SMOKE_ONLY=1 make test-pulumi-smoke ``` -Все suites — **только в Docker**. Критерии pass: +Все suites — **только в Docker** (lab compose сидит **minimal** seed). +Критерии pass: - Маршрут Engine достижим и возвращает обработанный статус (`200`/`201`/`202`/`204`, `400`/`403`/`404`/`405`/`409`/`415`/`422`/`501`) — **не** `401` (после unload каждой series suite заново логинится) и не транспортную / `5xx` ошибку. - Для `200`/`201`/`202` тело ответа должно быть непустым (HEAD исключён). -- Полный прогон должен покрыть **GET, POST, PUT, DELETE и HEAD**; любые failures - или отсутствующие методы валят suite. +- Успешные **collection** GET должны возвращать **непустой** список с `id` + (пустой `[]` — дыра seed/`ov_api_objects`, чинить данные, не skip). +- Полный прогон должен покрыть **GET, POST, PUT, DELETE и HEAD**; любые failures, + отсутствующие методы или `probed != declared` валят suite (`critical=0`). diff --git a/pulumi-tests/docker-compose.yml b/pulumi-tests/docker-compose.yml index da4c69d..d685032 100644 --- a/pulumi-tests/docker-compose.yml +++ b/pulumi-tests/docker-compose.yml @@ -51,7 +51,7 @@ services: depends_on: simulator: condition: service_healthy - entrypoint: ["python", "-m", "app.ovirt.seed_cli", "--profile", "demo"] + entrypoint: ["python", "-m", "app.ovirt.seed_cli", "--profile", "minimal"] api-gateway: image: nginx:1.28.0-alpine diff --git a/pulumi-tests/pulumi/coverage/executor.py b/pulumi-tests/pulumi/coverage/executor.py index e2ff9c0..9a3efad 100644 --- a/pulumi-tests/pulumi/coverage/executor.py +++ b/pulumi-tests/pulumi/coverage/executor.py @@ -42,7 +42,7 @@ def _value_empty(value: Any) -> bool: return value is None or value == "" or value == [] or value == {} -def _payload_nonempty(response: Any, *, method: str) -> tuple[bool, str]: +def _payload_nonempty(response: Any, *, method: str, kind: str = "") -> tuple[bool, str]: """Require non-empty response data for successful body-bearing statuses.""" # HEAD has no body; DELETE often returns 200 with an empty body (Engine-style). if method in {"HEAD", "DELETE"}: @@ -61,10 +61,17 @@ def _payload_nonempty(response: Any, *, method: str) -> tuple[bool, str]: return False, "null JSON body" if isinstance(data, (list, dict)) and len(data) == 0: return False, "empty JSON body" + # Declared collection GETs must return durable lab samples (not []). + if method == "GET" and kind == "collection" and isinstance(data, dict): + for value in data.values(): + if isinstance(value, list): + if len(value) == 0: + return False, "empty collection list" + first = value[0] + if isinstance(first, dict) and not first.get("id"): + return False, "collection item missing id" + break if isinstance(data, dict) and all(_value_empty(v) for v in data.values()): - # Allow Engine empty collections: {"vms": []} has structure but no rows. - if len(data) == 1 and isinstance(next(iter(data.values())), list): - return True, "" return False, "JSON body has only empty fields" return True, "" @@ -146,7 +153,47 @@ def synthesize_head_ops(ops: list[dict[str, Any]]) -> list[dict[str, Any]]: class Inventory: - """Cache of collection → first entity id for path placeholder expansion.""" + """Cache of collection → entity ids for path placeholder expansion. + + PUT/DELETE resolve to *disposable* entities created for the op so the + minimal seed (lab-vm-01, Default DC/cluster, …) is not wiped before later + collection GETs run in contract order. + """ + + _ELEMENT = { + "vms": "vm", + "hosts": "host", + "clusters": "cluster", + "datacenters": "data_center", + "networks": "network", + "disks": "disk", + "templates": "template", + "storagedomains": "storage_domain", + "storageconnections": "storage_connection", + "vnicprofiles": "vnic_profile", + "users": "user", + "groups": "group", + "roles": "role", + "tags": "tag", + "bookmarks": "bookmark", + "affinitylabels": "affinity_label", + "instancetypes": "instance_type", + "macpools": "mac_pool", + "schedulingpolicies": "scheduling_policy", + "vmpools": "vm_pool", + "permissions": "permission", + "domains": "domain", + "icons": "icon", + "jobs": "job", + "events": "event", + "nics": "nic", + "snapshots": "snapshot", + "diskattachments": "disk_attachment", + "cdroms": "cdrom", + "graphicsconsoles": "graphics_console", + "quotas": "quota", + "affinitygroups": "affinity_group", + } def __init__(self, client: OVirtClient, version: str) -> None: self.client = client @@ -154,8 +201,12 @@ class Inventory: self._ids: dict[str, str] = {} self._listed: set[str] = set() - def id_for(self, collection: str) -> str | None: + def id_for(self, collection: str, *, method: str = "GET") -> str | None: collection = collection.strip("/") + if method in {"DELETE", "PUT"}: + created = self.create_disposable(collection) + if created: + return created if collection in self._ids: return self._ids[collection] if collection in self._listed: @@ -172,7 +223,6 @@ class Inventory: body = r.json() except Exception: return None - # Engine collections are usually { "": [ {...}, ... ] } for value in body.values() if isinstance(body, dict) else []: if isinstance(value, list) and value: first = value[0] @@ -184,6 +234,129 @@ class Inventory: return self._ids[collection] return None + def create_disposable(self, collection: str) -> str | None: + """POST a throwaway entity and return its id (best-effort).""" + + element = self._ELEMENT.get(collection) or collection.rstrip("s") or "object" + name = f"pulumi-{uuid4().hex[:8]}" + payload: dict[str, Any] = { + "name": name, + "description": "pulumi disposable", + } + if collection == "clusters": + dc = self.id_for("datacenters", method="GET") + if dc: + payload["data_center"] = {"id": dc} + elif collection == "hosts": + cl = self.id_for("clusters", method="GET") + if cl: + payload["cluster"] = {"id": cl} + payload["address"] = "127.0.0.1" + elif collection == "networks": + dc = self.id_for("datacenters", method="GET") + if dc: + payload["data_center"] = {"id": dc} + elif collection == "vms": + cl = self.id_for("clusters", method="GET") + if cl: + payload["cluster"] = {"id": cl} + tpl = self.id_for("templates", method="GET") + if tpl: + payload["template"] = {"id": tpl} + elif collection == "disks": + sd = self.id_for("storagedomains", method="GET") + if sd: + payload["storage_domains"] = {"storage_domain": [{"id": sd}]} + payload["provisioned_size"] = 1073741824 + elif collection == "vnicprofiles": + net = self.id_for("networks", method="GET") + if net: + payload["network"] = {"id": net} + elif collection == "templates": + cl = self.id_for("clusters", method="GET") + if cl: + payload["cluster"] = {"id": cl} + elif collection == "storageconnections": + payload = { + "type": "nfs", + "address": "nfs.pulumi.local", + "path": f"/export/{name}", + } + elif collection == "storagedomains": + payload["type"] = "data" + payload["storage"] = { + "type": "nfs", + "address": "nfs.pulumi.local", + "path": f"/export/{name}", + } + elif collection == "users": + payload = { + "user_name": f"{name}@internal", + "name": name, + "password": "secret", + } + domain = self.id_for("domains", method="GET") + if domain: + payload["domain"] = {"id": domain} + elif collection == "bookmarks": + payload["value"] = "Vms:" + + path = f"/ovirt-engine/api/{collection}" + return self._post_for_id(path, element, payload) + + def create_disposable_at(self, collection_path: str, collection: str) -> str | None: + """POST under an already-resolved collection path (nested resources).""" + + element = self._ELEMENT.get(collection) or collection.rstrip("s") or "object" + name = f"pulumi-{uuid4().hex[:8]}" + payload: dict[str, Any] = {"name": name, "description": "pulumi disposable"} + if collection == "snapshots": + payload = {"description": name} + elif collection == "diskattachments": + payload = { + "interface": "virtio_scsi", + "bootable": False, + "active": True, + "disk": { + "name": f"{name}-disk", + "provisioned_size": 1073741824, + "format": "cow", + }, + } + elif collection == "cdroms": + payload = {"file": {"id": ""}} + elif collection == "graphicsconsoles": + payload = {"protocol": "spice"} + elif collection == "nics": + payload = {"name": name, "interface": "virtio"} + return self._post_for_id(collection_path, element, payload) + + def _post_for_id( + self, path: str, element: str, payload: dict[str, Any] + ) -> str | None: + try: + r = self.client.request( + "POST", + path, + headers=self.client.headers(version=self.version), + json={element: payload}, + ) + except Exception: + return None + if r.status_code not in {200, 201, 202}: + return None + try: + body = r.json() + except Exception: + return None + entity = body.get(element) if isinstance(body, dict) else None + if isinstance(entity, dict) and entity.get("id"): + return str(entity["id"]) + for value in body.values() if isinstance(body, dict) else []: + if isinstance(value, dict) and value.get("id"): + return str(value["id"]) + return None + def _collection_before_param(parts: list[str], index: int) -> str | None: # /ovirt-engine/api/vms/{id}/nics/{id} → for first {id} use vms, for second use nics @@ -195,10 +368,11 @@ def _collection_before_param(parts: list[str], index: int) -> str | None: return prev -def resolve_path(template: str, inventory: Inventory) -> tuple[str, bool]: +def resolve_path(template: str, inventory: Inventory, *, method: str = "GET") -> tuple[str, bool]: """Return resolved path and whether every placeholder was satisfied from inventory.""" parts = template.strip("/").split("/") + param_indices = [i for i, part in enumerate(parts) if _PATH_PARAM.fullmatch(part)] resolved: list[str] = [] complete = True for i, part in enumerate(parts): @@ -207,7 +381,29 @@ def resolve_path(template: str, inventory: Inventory) -> tuple[str, bool]: resolved.append(part) continue collection = _collection_before_param(parts, i) - entity_id = inventory.id_for(collection) if collection else None + is_leaf = bool(param_indices) and i == param_indices[-1] + entity_id = None + if collection: + if method in {"DELETE", "PUT"} and is_leaf: + # Only the leaf id is disposable — parents keep seed inventory. + # Never fall back to seed ids for DELETE (would wipe minimal lab). + if collection in Inventory._ELEMENT and collection not in { + "nics", + "snapshots", + "diskattachments", + "cdroms", + "graphicsconsoles", + "quotas", + "affinitygroups", + }: + entity_id = inventory.create_disposable(collection) + else: + parent_path = "/" + "/".join(resolved) + entity_id = inventory.create_disposable_at(parent_path, collection) + if not entity_id and method == "PUT": + entity_id = inventory.id_for(collection, method="GET") + else: + entity_id = inventory.id_for(collection, method="GET") if entity_id: resolved.append(entity_id) else: @@ -242,7 +438,7 @@ def execute_operation( expected = int(op.get("create_status") or op.get("status_code") or 200) if method == "POST" else int( op.get("status_code") or 200 ) - path, _complete = resolve_path(template, inventory) + path, _complete = resolve_path(template, inventory, method=method) body = _minimal_body(op) started = time.perf_counter() try: @@ -254,7 +450,9 @@ def execute_operation( ok = response.status_code in _PASS_STATUSES detail = "" if ok: - body_ok, body_detail = _payload_nonempty(response, method=method) + body_ok, body_detail = _payload_nonempty( + response, method=method, kind=kind + ) if not body_ok: ok = False detail = body_detail @@ -400,11 +598,32 @@ def run_coverage(cfg: SuiteConfig) -> CoverageReport: def report_to_dict(report: CoverageReport) -> dict[str, Any]: + totals = report.totals + declared = totals["total"] + probed = totals["passed"] + totals["failed"] + totals["skipped"] + critical = totals["failed"] + series_coverage = [] + for s in report.series: + series_coverage.append( + { + "series": s.series, + "declared": s.total, + "probed": s.passed + s.failed + s.skipped, + "critical": s.failed, + } + ) return { "generated_at": report.generated_at, "engine_url": report.engine_url, - "totals": report.totals, + "totals": totals, "methods": report.methods, + "coverage": { + "declared": declared, + "probed": probed, + "critical": critical, + "line": f"{probed}/{declared}", + "series": series_coverage, + }, "series": [asdict(s) for s in report.series], "results": [asdict(r) for r in report.results], } diff --git a/pulumi-tests/pulumi/coverage/report.py b/pulumi-tests/pulumi/coverage/report.py index 29e1bff..dda7686 100644 --- a/pulumi-tests/pulumi/coverage/report.py +++ b/pulumi-tests/pulumi/coverage/report.py @@ -121,10 +121,10 @@ def render_html(payload: dict[str, Any]) -> str: · Engine {html.escape(str(payload.get('engine_url')))}

-
Total
{totals.get('total', 0)}
+
Total / Declared
{totals.get('total', 0)}
Passed
{totals.get('passed', 0)}
-
Failed
{totals.get('failed', 0)}
-
Skipped
{totals.get('skipped', 0)}
+
Critical
{(payload.get('coverage') or {}).get('critical', totals.get('failed', 0))}
+
Coverage
{html.escape(str((payload.get('coverage') or {}).get('line', f"{totals.get('total', 0)}/{totals.get('total', 0)}")))}

By HTTP method

diff --git a/pulumi-tests/pulumi/run_suite.py b/pulumi-tests/pulumi/run_suite.py index d66bdb7..df0cf61 100644 --- a/pulumi-tests/pulumi/run_suite.py +++ b/pulumi-tests/pulumi/run_suite.py @@ -52,6 +52,7 @@ def main() -> int: "passed": totals["passed"], "failed": totals["failed"], "skipped": totals["skipped"], + "coverage": payload.get("coverage"), "methods": methods, "series": series_names, "report_json": str(json_path), @@ -86,7 +87,12 @@ def main() -> int: failed = int(outputs.get("failed") or totals["failed"]) total = int(outputs.get("total") or totals["total"]) passed = int(outputs.get("passed") or totals["passed"]) + coverage = payload.get("coverage") or {} + declared = int(coverage.get("declared") or total) + probed = int(coverage.get("probed") or (passed + failed + int(totals.get("skipped") or 0))) + critical = int(coverage.get("critical") or failed) print(f"SUMMARY total={total} passed={passed} failed={failed}", flush=True) + print(f"COVERAGE {probed}/{declared} (critical={critical})", flush=True) print(f"METHODS {json.dumps(methods, sort_keys=True)}", flush=True) print(f"HTML report: {html_path}", flush=True) @@ -94,7 +100,9 @@ def main() -> int: missing_methods = sorted(_FULL_RUN_METHODS - set(methods)) if full_run else [] if missing_methods: print(f"MISSING METHODS on full run: {', '.join(missing_methods)}", flush=True) - if failed or missing_methods: + if probed != declared: + print(f"COVERAGE MISMATCH probed={probed} declared={declared}", flush=True) + if failed or missing_methods or critical or probed != declared: return 1 return 0 diff --git a/pulumi-tests/reports/pulumi-contract-coverage.html b/pulumi-tests/reports/pulumi-contract-coverage.html index 0d8228f..d222cb7 100644 --- a/pulumi-tests/reports/pulumi-contract-coverage.html +++ b/pulumi-tests/reports/pulumi-contract-coverage.html @@ -40,14 +40,14 @@

oVirt Pulumi contract coverage

- Generated 2026-07-17T12:32:43Z + Generated 2026-07-18T03:44:48Z · Engine https://api-gateway
-
Total
9150
+
Total / Declared
9150
Passed
9150
-
Failed
0
-
Skipped
0
+
Critical
0
+
Coverage
9150/9150

By HTTP method

@@ -62,7 +62,7 @@ - +
SeriesAPITotalPassedFailedSkippedDuration
3.03622622002644 ms
3.13664664001948 ms
3.23672672001247 ms
3.33770770001479 ms
3.43800800001310 ms
3.53858858001346 ms
3.63918918001703 ms
4.34948948002405 ms
4.44966966002158 ms
4.54966966001786 ms
master4966966001800 ms
3.03622622008035 ms
3.13664664006773 ms
3.23672672008861 ms
3.33770770003246 ms
3.43800800006870 ms
3.53858858007908 ms
3.63918918005844 ms
4.34948948004215 ms
4.44966966007970 ms
4.54966966008528 ms
master49669660010957 ms
@@ -78,7 +78,7 @@ - +
SeriesOperationMethodHTTPms
3.0api.getGET2006.46
3.0bookmarks.listGET2003.29
3.0bookmarks.addPOST2012.94
3.0bookmarks.getGET2002.19
3.0bookmarks.updatePUT2003.34
3.0bookmarks.removeDELETE2001.73
3.0clusters.listGET2001.91
3.0clusters.addPOST2012.69
3.0clusters.getGET2001.61
3.0clusters.updatePUT2002.26
3.0clusters.removeDELETE2002.58
3.0clusters.resetemulatedmachinePOST2003.11
3.0clusters.syncallnetworksPOST2003.36
3.0clusters.refreshglusterhealstatusPOST2004.67
3.0datacenters.listGET2002.66
3.0datacenters.addPOST2013.26
3.0datacenters.getGET2001.88
3.0datacenters.updatePUT2003.12
3.0datacenters.removeDELETE2002.8
3.0datacenters.cleanfinishedtasksPOST2002.45
3.0disks.listGET2002.03
3.0disks.addPOST2013.03
3.0disks.getGET2001.37
3.0disks.updatePUT2001.78
3.0disks.removeDELETE2001.79
3.0disks.copyPOST2002.31
3.0disks.movePOST2003.44
3.0disks.sparsifyPOST2003.76
3.0domains.listGET2002.14
3.0domains.addPOST4042.59
3.0domains.getGET2001.68
3.0domains.updatePUT4041.66
3.0domains.removeDELETE4041.67
3.0events.listGET2001.99
3.0events.addPOST4041.65
3.0events.getGET2002.97
3.0events.updatePUT4042.24
3.0events.removeDELETE4041.44
3.0groups.listGET2001.63
3.0groups.addPOST2012.67
3.0groups.getGET2001.65
3.0groups.updatePUT2002.04
3.0groups.removeDELETE2001.98
3.0hosts.listGET2001.85
3.0hosts.addPOST4003.39
3.0hosts.getGET4044.18
3.0hosts.updatePUT4044.38
3.0hosts.removeDELETE2002.83
3.0hosts.activatePOST2005.51
3.0hosts.deactivatePOST2005.01
3.0hosts.approvePOST2004.2
3.0hosts.installPOST2003.14
3.0hosts.fencePOST2002.58
3.0hosts.iscsidiscoverPOST2004.61
3.0hosts.iscsiloginPOST2003.89
3.0hosts.commitnetconfigPOST2003.14
3.0hosts.refreshPOST2003.82
3.0hosts.upgradeCheckPOST2005.25
3.0networks.listGET2002.01
3.0networks.addPOST2012.62
3.0networks.getGET2002.55
3.0networks.updatePUT2004.08
3.0networks.removeDELETE2003.71
3.0permissions.listGET2002.62
3.0permissions.addPOST4041.77
3.0permissions.getGET2001.92
3.0permissions.updatePUT4041.53
3.0permissions.removeDELETE4041.28
3.0roles.listGET2001.37
3.0roles.addPOST2012.4
3.0roles.getGET2001.41
3.0roles.updatePUT2001.64
3.0roles.removeDELETE2001.47
3.0storageconnections.listGET2001.62
3.0storageconnections.addPOST2012.04
3.0storageconnections.getGET2001.29
3.0storageconnections.updatePUT4041.15
3.0storageconnections.removeDELETE2001.45
3.0storagedomains.listGET2001.5
3.0storagedomains.addPOST2011.98
3.0storagedomains.getGET2001.3
3.0storagedomains.updatePUT2001.55
3.0storagedomains.removeDELETE2001.58
3.0storagedomains.refreshlunsPOST2002.35
3.0storagedomains.updateovfstorePOST2001.74
3.0tags.listGET2001.33
3.0tags.addPOST2011.54
3.0tags.getGET2002.19
3.0tags.updatePUT2001.72
3.0tags.removeDELETE2001.62
3.0templates.listGET2001.47
3.0templates.addPOST2011.94
3.0templates.getGET2001.33
3.0templates.updatePUT4041.21
3.0templates.removeDELETE2001.46
3.0users.listGET2001.35
3.0users.addPOST4041.16
3.0users.getGET2001.38
3.0users.updatePUT4041.18
3.0users.removeDELETE4041.19
3.0api.getGET20012.45
3.0bookmarks.listGET2006.41
3.0bookmarks.addPOST20124.47
3.0bookmarks.getGET2006.88
3.0bookmarks.updatePUT2006.52
3.0bookmarks.removeDELETE2005.98
3.0clusters.listGET2004.74
3.0clusters.addPOST2017.89
3.0clusters.getGET2004.64
3.0clusters.updatePUT2005.47
3.0clusters.removeDELETE2004.79
3.0clusters.resetemulatedmachinePOST20014.12
3.0clusters.syncallnetworksPOST20010.67
3.0clusters.refreshglusterhealstatusPOST2006.88
3.0datacenters.listGET2003.76
3.0datacenters.addPOST2014.97
3.0datacenters.getGET2006.75
3.0datacenters.updatePUT2006.86
3.0datacenters.removeDELETE2006.78
3.0datacenters.cleanfinishedtasksPOST20010.69
3.0disks.listGET2004.6
3.0disks.addPOST20113.34
3.0disks.getGET2004.72
3.0disks.updatePUT20012.02
3.0disks.removeDELETE20010.3
3.0disks.copyPOST2009.06
3.0disks.movePOST20013.13
3.0disks.sparsifyPOST2008.98
3.0domains.listGET2005.59
3.0domains.addPOST4047.48
3.0domains.getGET2008.95
3.0domains.updatePUT4044.65
3.0domains.removeDELETE4044.24
3.0events.listGET2004.74
3.0events.addPOST4047.43
3.0events.getGET2005.28
3.0events.updatePUT4044.28
3.0events.removeDELETE4044.45
3.0groups.listGET2005.45
3.0groups.addPOST20110.29
3.0groups.getGET2006.58
3.0groups.updatePUT2007.69
3.0groups.removeDELETE2006.95
3.0hosts.listGET2006.53
3.0hosts.addPOST2018.37
3.0hosts.getGET2005.46
3.0hosts.updatePUT2006.37
3.0hosts.removeDELETE2005.59
3.0hosts.activatePOST2006.68
3.0hosts.deactivatePOST2006.25
3.0hosts.approvePOST2006.34
3.0hosts.installPOST2007.55
3.0hosts.fencePOST2006.5
3.0hosts.iscsidiscoverPOST2008.74
3.0hosts.iscsiloginPOST2009.08
3.0hosts.commitnetconfigPOST20011.43
3.0hosts.refreshPOST2006.12
3.0hosts.upgradeCheckPOST2006.29
3.0networks.listGET2003.53
3.0networks.addPOST2014.77
3.0networks.getGET2003.32
3.0networks.updatePUT2003.36
3.0networks.removeDELETE2003.65
3.0permissions.listGET2003.8
3.0permissions.addPOST4043.43
3.0permissions.getGET2003.12
3.0permissions.updatePUT4042.44
3.0permissions.removeDELETE4042.11
3.0roles.listGET2002.95
3.0roles.addPOST2015.14
3.0roles.getGET2005.29
3.0roles.updatePUT2004.36
3.0roles.removeDELETE2004.57
3.0storageconnections.listGET2003.89
3.0storageconnections.addPOST2016.8
3.0storageconnections.getGET2003.98
3.0storageconnections.updatePUT4043.68
3.0storageconnections.removeDELETE2004.31
3.0storagedomains.listGET2004.19
3.0storagedomains.addPOST2017.07
3.0storagedomains.getGET2005.58
3.0storagedomains.updatePUT2007.31
3.0storagedomains.removeDELETE2006.37
3.0storagedomains.refreshlunsPOST2007.2
3.0storagedomains.updateovfstorePOST2006.33
3.0tags.listGET2006.2
3.0tags.addPOST2017.6
3.0tags.getGET2004.89
3.0tags.updatePUT2005.46
3.0tags.removeDELETE2005.65
3.0templates.listGET2005.81
3.0templates.addPOST2016.39
3.0templates.getGET2004.82
3.0templates.updatePUT4042.55
3.0templates.removeDELETE2003.26
3.0users.listGET2003.26
3.0users.addPOST4042.61
3.0users.getGET2002.99
3.0users.updatePUT4044.96
3.0users.removeDELETE4043.31
diff --git a/pulumi-tests/reports/pulumi-contract-coverage.json b/pulumi-tests/reports/pulumi-contract-coverage.json index 971db81..f37c910 100644 --- a/pulumi-tests/reports/pulumi-contract-coverage.json +++ b/pulumi-tests/reports/pulumi-contract-coverage.json @@ -1,5 +1,5 @@ { - "generated_at": "2026-07-17T12:32:43Z", + "generated_at": "2026-07-18T03:44:48Z", "engine_url": "https://api-gateway", "totals": { "total": 9150, @@ -14,6 +14,80 @@ "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", @@ -22,7 +96,7 @@ "passed": 622, "failed": 0, "skipped": 0, - "duration_ms": 2644.44 + "duration_ms": 8034.59 }, { "series": "3.1", @@ -31,7 +105,7 @@ "passed": 664, "failed": 0, "skipped": 0, - "duration_ms": 1947.74 + "duration_ms": 6773.11 }, { "series": "3.2", @@ -40,7 +114,7 @@ "passed": 672, "failed": 0, "skipped": 0, - "duration_ms": 1246.57 + "duration_ms": 8861.32 }, { "series": "3.3", @@ -49,7 +123,7 @@ "passed": 770, "failed": 0, "skipped": 0, - "duration_ms": 1479.44 + "duration_ms": 3246.5 }, { "series": "3.4", @@ -58,7 +132,7 @@ "passed": 800, "failed": 0, "skipped": 0, - "duration_ms": 1310.2 + "duration_ms": 6869.9 }, { "series": "3.5", @@ -67,7 +141,7 @@ "passed": 858, "failed": 0, "skipped": 0, - "duration_ms": 1345.95 + "duration_ms": 7907.98 }, { "series": "3.6", @@ -76,7 +150,7 @@ "passed": 918, "failed": 0, "skipped": 0, - "duration_ms": 1703.28 + "duration_ms": 5843.7 }, { "series": "4.3", @@ -85,7 +159,7 @@ "passed": 948, "failed": 0, "skipped": 0, - "duration_ms": 2404.56 + "duration_ms": 4215.12 }, { "series": "4.4", @@ -94,7 +168,7 @@ "passed": 966, "failed": 0, "skipped": 0, - "duration_ms": 2157.68 + "duration_ms": 7970.02 }, { "series": "4.5", @@ -103,7 +177,7 @@ "passed": 966, "failed": 0, "skipped": 0, - "duration_ms": 1785.88 + "duration_ms": 8528.25 }, { "series": "master", @@ -112,7 +186,7 @@ "passed": 966, "failed": 0, "skipped": 0, - "duration_ms": 1799.62 + "duration_ms": 10956.57 } ], "results": [ @@ -126,7 +200,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.46, + "duration_ms": 12.45, "detail": "" }, { @@ -139,7 +213,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.29, + "duration_ms": 6.41, "detail": "" }, { @@ -152,7 +226,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.94, + "duration_ms": 24.47, "detail": "" }, { @@ -165,7 +239,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.19, + "duration_ms": 6.88, "detail": "" }, { @@ -173,12 +247,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/968673bc-18e3-4b3a-8fd1-be802d416a07", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.34, + "duration_ms": 6.52, "detail": "" }, { @@ -186,12 +260,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/65bc92a7-021f-452b-bf35-db84bb8e9241", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 5.98, "detail": "" }, { @@ -204,7 +278,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.91, + "duration_ms": 4.74, "detail": "" }, { @@ -217,7 +291,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.69, + "duration_ms": 7.89, "detail": "" }, { @@ -230,7 +304,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 4.64, "detail": "" }, { @@ -238,12 +312,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/1a64aa99-a5c1-42af-8cbe-bd8077514095", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.26, + "duration_ms": 5.47, "detail": "" }, { @@ -251,12 +325,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/aa43ef20-be0d-4457-9f2a-1eba57abaa57", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.58, + "duration_ms": 4.79, "detail": "" }, { @@ -269,7 +343,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.11, + "duration_ms": 14.12, "detail": "" }, { @@ -282,7 +356,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.36, + "duration_ms": 10.67, "detail": "" }, { @@ -295,7 +369,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 4.67, + "duration_ms": 6.88, "detail": "" }, { @@ -308,7 +382,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.66, + "duration_ms": 3.76, "detail": "" }, { @@ -321,7 +395,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.26, + "duration_ms": 4.97, "detail": "" }, { @@ -334,7 +408,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.88, + "duration_ms": 6.75, "detail": "" }, { @@ -342,12 +416,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/2257b27c-2d18-45d4-9a9f-9e1d93fd628a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.12, + "duration_ms": 6.86, "detail": "" }, { @@ -355,12 +429,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/56f43e70-d017-4e02-9a2b-dcad1575f794", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.8, + "duration_ms": 6.78, "detail": "" }, { @@ -373,7 +447,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.45, + "duration_ms": 10.69, "detail": "" }, { @@ -386,7 +460,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 4.6, "detail": "" }, { @@ -399,7 +473,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.03, + "duration_ms": 13.34, "detail": "" }, { @@ -412,7 +486,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 4.72, "detail": "" }, { @@ -420,12 +494,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/bf3c61b6-9030-4d31-b210-241a361747b0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 12.02, "detail": "" }, { @@ -433,12 +507,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/8e1f2903-0cbe-44bf-b721-05b16dcdce2e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 10.3, "detail": "" }, { @@ -451,7 +525,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.31, + "duration_ms": 9.06, "detail": "" }, { @@ -464,7 +538,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.44, + "duration_ms": 13.13, "detail": "" }, { @@ -477,7 +551,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.76, + "duration_ms": 8.98, "detail": "" }, { @@ -490,7 +564,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.14, + "duration_ms": 5.59, "detail": "" }, { @@ -503,7 +577,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 2.59, + "duration_ms": 7.48, "detail": "" }, { @@ -516,7 +590,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 8.95, "detail": "" }, { @@ -529,7 +603,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 4.65, "detail": "" }, { @@ -537,12 +611,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/domains/{id}", - "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/domains/8ba6ebbc-9670-48f8-b3d8-d533d6742c52", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 4.24, "detail": "" }, { @@ -555,7 +629,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.99, + "duration_ms": 4.74, "detail": "" }, { @@ -568,7 +642,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.65, + "duration_ms": 7.43, "detail": "" }, { @@ -576,12 +650,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1105", + "path_resolved": "/ovirt-engine/api/events/48", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.97, + "duration_ms": 5.28, "detail": "" }, { @@ -589,12 +663,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1105", + "path_resolved": "/ovirt-engine/api/events/48", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.24, + "duration_ms": 4.28, "detail": "" }, { @@ -602,12 +676,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1105", + "path_resolved": "/ovirt-engine/api/events/cafb93b5-20f8-471c-95ef-09887f518e81", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 4.45, "detail": "" }, { @@ -620,7 +694,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 5.45, "detail": "" }, { @@ -633,7 +707,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.67, + "duration_ms": 10.29, "detail": "" }, { @@ -646,7 +720,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 6.58, "detail": "" }, { @@ -654,12 +728,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/d2e932a6-797d-4d8c-93ed-c1610aad8235", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 7.69, "detail": "" }, { @@ -667,12 +741,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/4e9c4db2-a3e0-44b9-80d3-d0f6d646a053", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 6.95, "detail": "" }, { @@ -685,7 +759,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 6.53, "detail": "" }, { @@ -696,9 +770,9 @@ "path_resolved": "/ovirt-engine/api/hosts", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 3.39, + "duration_ms": 8.37, "detail": "" }, { @@ -706,12 +780,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/9f07b101-32f5-4510-926e-c285822454d6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.18, + "duration_ms": 5.46, "detail": "" }, { @@ -719,12 +793,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/be7cc03a-1309-45a8-8914-4d115f90b896", + "path_resolved": "/ovirt-engine/api/hosts/5f835f47-bfc6-4410-95d0-5da69e5c3bc8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.38, + "duration_ms": 6.37, "detail": "" }, { @@ -732,12 +806,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/fa9c0726-53fc-4ec1-91e9-bb4f0d9b6826", + "path_resolved": "/ovirt-engine/api/hosts/014d7791-22a7-45ae-9814-0f711259d56b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.83, + "duration_ms": 5.59, "detail": "" }, { @@ -745,12 +819,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/hosts/726103ee-f5c8-4040-aa50-8dae5daf16ee/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": 5.51, + "duration_ms": 6.68, "detail": "" }, { @@ -758,12 +832,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/hosts/66f1edd7-1b34-4c55-8744-651b280b260e/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": 5.01, + "duration_ms": 6.25, "detail": "" }, { @@ -771,12 +845,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/hosts/ffbb3ace-d66f-4d0f-be50-230eac29a2b9/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.2, + "duration_ms": 6.34, "detail": "" }, { @@ -784,12 +858,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/hosts/791f16c2-b2a9-4629-a174-e0be976bdb13/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": 3.14, + "duration_ms": 7.55, "detail": "" }, { @@ -797,12 +871,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/hosts/505e2f2e-78e7-4f96-a897-32ee57d2a48e/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.58, + "duration_ms": 6.5, "detail": "" }, { @@ -810,12 +884,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/hosts/269d16e6-e725-49b7-8245-e546b705f725/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": 4.61, + "duration_ms": 8.74, "detail": "" }, { @@ -823,12 +897,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/hosts/0ed797ed-ac05-4825-a16c-e75a39d865aa/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.89, + "duration_ms": 9.08, "detail": "" }, { @@ -836,12 +910,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/hosts/738122ab-88b9-4195-89d1-86522a03566b/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.14, + "duration_ms": 11.43, "detail": "" }, { @@ -849,12 +923,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/hosts/c82269e7-da18-4304-bec4-3a6f0ad86775/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.82, + "duration_ms": 6.12, "detail": "" }, { @@ -862,12 +936,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/hosts/b9d5fc6d-2c1a-4e4c-b47c-936e408ff6b6/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.25, + "duration_ms": 6.29, "detail": "" }, { @@ -880,7 +954,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.01, + "duration_ms": 3.53, "detail": "" }, { @@ -893,7 +967,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.62, + "duration_ms": 4.77, "detail": "" }, { @@ -901,12 +975,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.55, + "duration_ms": 3.32, "detail": "" }, { @@ -914,12 +988,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/networks/5bb90b0e-2366-4151-8089-ae986471fae0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.08, + "duration_ms": 3.36, "detail": "" }, { @@ -927,12 +1001,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/networks/8180fba5-ec3f-432a-a522-fbc14cd44d92", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.71, + "duration_ms": 3.65, "detail": "" }, { @@ -945,7 +1019,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.62, + "duration_ms": 3.8, "detail": "" }, { @@ -958,7 +1032,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 3.43, "detail": "" }, { @@ -971,7 +1045,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.92, + "duration_ms": 3.12, "detail": "" }, { @@ -984,7 +1058,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 2.44, "detail": "" }, { @@ -992,12 +1066,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/permissions/{id}", - "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/permissions/3d05f72f-ed5d-40cb-b8a8-cde6df350d11", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 2.11, "detail": "" }, { @@ -1010,7 +1084,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.95, "detail": "" }, { @@ -1023,7 +1097,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.4, + "duration_ms": 5.14, "detail": "" }, { @@ -1036,7 +1110,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 5.29, "detail": "" }, { @@ -1044,12 +1118,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/c42bcbe8-af91-4470-b453-e2f9a71c24cd", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 4.36, "detail": "" }, { @@ -1057,12 +1131,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/b6e4e4b9-6cbe-4e1e-84c4-f092964bee41", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 4.57, "detail": "" }, { @@ -1075,7 +1149,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 3.89, "detail": "" }, { @@ -1088,7 +1162,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.04, + "duration_ms": 6.8, "detail": "" }, { @@ -1096,12 +1170,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/b2886cc2-c906-49fc-9822-10054cd6e788", + "path_resolved": "/ovirt-engine/api/storageconnections/9f3bce26-1442-447b-941e-bc70e0c58a4a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 3.98, "detail": "" }, { @@ -1109,12 +1183,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/b2886cc2-c906-49fc-9822-10054cd6e788", + "path_resolved": "/ovirt-engine/api/storageconnections/d73fde48-0d28-4201-9d93-ba53140a3177", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 3.68, "detail": "" }, { @@ -1122,12 +1196,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/b2886cc2-c906-49fc-9822-10054cd6e788", + "path_resolved": "/ovirt-engine/api/storageconnections/c6114e6b-4069-46d9-8936-e66d9423d9cb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 4.31, "detail": "" }, { @@ -1140,7 +1214,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 4.19, "detail": "" }, { @@ -1153,7 +1227,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.98, + "duration_ms": 7.07, "detail": "" }, { @@ -1166,7 +1240,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.58, "detail": "" }, { @@ -1174,12 +1248,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/f0dd4e68-642c-4869-b175-7d088602c70a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 7.31, "detail": "" }, { @@ -1187,12 +1261,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/93d6e3a6-f7f5-438a-93ee-c26428748e15", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 6.37, "detail": "" }, { @@ -1205,7 +1279,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.35, + "duration_ms": 7.2, "detail": "" }, { @@ -1218,7 +1292,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 6.33, "detail": "" }, { @@ -1231,7 +1305,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 6.2, "detail": "" }, { @@ -1244,7 +1318,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.54, + "duration_ms": 7.6, "detail": "" }, { @@ -1257,7 +1331,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.19, + "duration_ms": 4.89, "detail": "" }, { @@ -1265,12 +1339,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/212394f9-c556-46f0-b8a1-c6d344fe7568", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 5.46, "detail": "" }, { @@ -1278,12 +1352,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/a5fcd414-2547-4f33-aef9-5db3e963ad7e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 5.65, "detail": "" }, { @@ -1296,7 +1370,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 5.81, "detail": "" }, { @@ -1309,7 +1383,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.94, + "duration_ms": 6.39, "detail": "" }, { @@ -1322,7 +1396,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 4.82, "detail": "" }, { @@ -1330,12 +1404,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/79fd397e-ceff-47a1-a8c4-bdbc57f4be43", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 2.55, "detail": "" }, { @@ -1343,12 +1417,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/dc3145e2-be3a-4fa7-89ab-0e541293bf17", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 3.26, "detail": "" }, { @@ -1361,7 +1435,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 3.26, "detail": "" }, { @@ -1374,7 +1448,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 2.61, "detail": "" }, { @@ -1387,7 +1461,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 2.99, "detail": "" }, { @@ -1400,7 +1474,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 4.96, "detail": "" }, { @@ -1408,12 +1482,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/users/{id}", - "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/users/b38f70d5-0c5f-44c6-ba82-eea93a193ee8", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 3.31, "detail": "" }, { @@ -1426,7 +1500,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 6.29, "detail": "" }, { @@ -1439,7 +1513,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.69, + "duration_ms": 7.74, "detail": "" }, { @@ -1452,7 +1526,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 3.68, "detail": "" }, { @@ -1460,12 +1534,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/527c1eac-db6b-4109-85a8-b857747ab302", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.25, + "duration_ms": 8.23, "detail": "" }, { @@ -1473,12 +1547,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/418c37f3-3f58-473e-8355-ead1447b0e9e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 5.28, "detail": "" }, { @@ -1491,7 +1565,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 4.89, "detail": "" }, { @@ -1502,9 +1576,9 @@ "path_resolved": "/ovirt-engine/api/vms", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.47, + "duration_ms": 9.63, "detail": "" }, { @@ -1512,789 +1586,9 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/a2200a4b-b7b8-49ad-8351-76be64caeb5d", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.48, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/d6dab54b-6165-4efe-b1b9-8dfd67967363", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.43, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/1b7a1579-a8b9-4f59-9729-92501e2f8778", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.59, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.start", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/vms/e82eb709-48e3-4d98-98a8-e9fade61f458/start", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.44, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.stop", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/vms/d6fe983b-c4df-4374-a087-a15b569164de/stop", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.27, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.shutdown", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/vms/a16658a9-565b-4af7-bea6-d089cdf99174/shutdown", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.67, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.reboot", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/vms/cbe7521f-7fc8-4362-83ea-065031192bed/reboot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 3.74, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.suspend", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/vms/f90cd3c0-548c-4cd5-b8f6-36beb02e76b6/suspend", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.5, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.migrate", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/vms/61a96ab3-cada-449c-9406-b4c4c04cc269/migrate", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.25, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.cancelmigration", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/vms/a328f568-2fdf-460e-904a-1ac18ecee5ca/cancelmigration", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.37, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.clone", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/vms/d11fb056-7cbd-4e0e-8c48-a61a937de621/clone", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.32, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.detach", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/vms/f9d99dd1-1aa8-4242-a551-c751afa29fd7/detach", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.4, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.screenthumbnail", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/vms/aa240126-5cf8-445b-b0d7-3de777a734cd/screenthumbnail", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.78, - "detail": "" - }, - { - "series": "3.0", - "operation_id": "vms.ticket", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/vms/a9726fb7-9383-4092-bbf1-f33ce4ced3ae/ticket", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.85, - "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/d6d28160-8e9e-4df4-b33f-5b35f74d11a3/preview_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.6, - "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/c49feb42-5ee2-4392-9751-b5d8305655ab/commit_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.39, - "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/d7193f3b-53b0-4d79-b714-1a6ffafb18e4/undo_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.28, - "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/97eaba26-473e-44bb-8336-2d75ca2ff98d/freeze_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.99, - "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/e173aac9-8766-4363-b370-bf517bfd2177/thaw_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.64, - "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/913e6e63-7d5a-41f4-8121-94383e28b637/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.9, - "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/4bedc6f8-348d-438f-80e3-65c9a48b7112/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 2.98, - "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/1e41c6dd-e458-4111-a61a-7ad3bb2a7511/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.59, - "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/a7bedcd9-955e-4951-a940-7397cea5413f/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.38, - "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/66b0e2b6-3ee0-4f1b-a3c7-3f73b42b9753/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.48, - "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/6b54546d-79cc-4c70-8c19-2768cd19faed/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.38, - "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/2c5df625-7d45-4194-9c2a-f153f2d41bfa/nics", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 1.94, - "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/64cfdf28-46a3-455b-a239-3bb58fae9eb3/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.41, - "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/8ef40507-b6a1-473b-924c-31ddf724a0bf/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.6, - "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/ff69a13c-d054-48e3-af75-eab0d5fa9170/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.06, - "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/e073d678-2288-4021-90fd-72712226d17d/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.92, - "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/3a90d8ca-65b3-4cc8-a21e-33122f48013c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 1.98, - "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/15045d5c-25d6-43cb-8461-553a1c971d63/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.52, - "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/3ceda7ff-fdbd-449e-a782-fb1dfe89020c/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.95, - "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/ebbafe17-d261-417d-821f-405739fce918/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.21, - "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/15ab475d-7abb-4d52-9871-b24c6b9b583d/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.92, - "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/6d3fe8ab-3258-4807-904e-c71075a5596a/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.47, - "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/53ad8038-ac93-467a-820a-bed39d7c1895/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.52, - "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/c712b948-93b9-4768-8e49-f9588293d1b3/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 1.75, - "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/a021370c-54f0-4a95-99cd-ebb5522eb01b/snapshots/b9b10a7f-0423-4deb-b146-093443bc910e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.29, - "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/63a06d93-378f-47a3-a68b-3aa649d18a96/snapshots/de078285-9bfd-4a23-b57a-03d6968f7d01", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.55, - "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/1afffe5a-136d-4494-914a-238deea073b8/snapshots/b81e26a9-c02e-432e-969c-dea82c3bf405", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.84, - "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/c7488cc9-ec21-47e1-bb79-2cdb0dfb7ccb/snapshots/58fb9f9f-31e0-4853-a3d2-535cd1c109db/restore", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.86, - "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/8be27906-cdb2-426a-a12d-6004577b0181/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.82, - "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/bbbb34b7-ce27-40a7-bdc4-945bdea046d8/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.85, - "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/a034d8ea-10d1-4acd-9fc8-e341a1e3f102/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.88, - "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/fc215039-d4e6-46bb-aaca-441b5a496fb8/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.49, - "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/16ac9a64-4fd8-4296-9e83-27bd8f1e84ee/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.35, - "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/c6d94472-f2a9-4180-91da-a62af57eccae/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.06, - "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/e329eb7c-7663-4624-a2c4-75944a9a4251/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 3.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/f82daef3-de37-45fe-941f-5c4023bb4de5/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.93, - "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/376ba5ad-04cc-4f3a-b550-b0d93dd2e3ef/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.98, - "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/9cdb04e5-03c0-4b62-8870-53050ac67398/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.9, - "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/6bac6455-5d4a-4dfc-ad71-9328473b71e7/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.7, - "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/05ff117f-85c2-4573-af8e-1ae62cc95484/nics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.3, - "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/a7f5fd60-59b3-4dd0-911c-12b505d47820/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.38, - "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/933f8484-3376-412f-a19b-f658521d63af/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.54, - "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/046e9b1d-fc24-498c-9425-351f756849ea/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.04, - "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/e0d728af-358a-49b4-a1f3-f6ee3decad84/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.81, - "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/24afefde-64ad-4a17-bc3d-01aeae0b124b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.24, - "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/749697bc-f271-408a-8a7f-99267b3f2926/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.06, - "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/af8de682-bf61-489b-998f-49535be3eef8/tags", - "kind": "collection", - "status": "passed", "http_status": 200, "expected_hint": 200, "duration_ms": 3.16, @@ -2302,15 +1596,795 @@ }, { "series": "3.0", - "operation_id": "tags.add", + "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/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/27830dcf-3dfb-45bd-8211-23bf128e1438/tags", + "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": 5.41, + "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": "" }, { @@ -2318,12 +2392,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/942d3f0c-e695-41dc-b47a-c9ec53af7fc1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.27, + "duration_ms": 8.75, "detail": "" }, { @@ -2331,12 +2405,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/b3ad37dd-86bb-4f49-920e-31ed1ff7e6d0/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 4.87, + "duration_ms": 8.38, "detail": "" }, { @@ -2344,12 +2418,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/14942e47-7f49-470e-9605-86596abb32b0/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 3.32, + "duration_ms": 8.8, "detail": "" }, { @@ -2357,12 +2431,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/2a6a5aee-a79e-4c26-a0e2-7d22a32353ad/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.17, + "duration_ms": 9.17, "detail": "" }, { @@ -2370,12 +2444,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/d6340f02-9b2c-436e-8d80-30c0cc0c706d/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": 4.18, + "duration_ms": 7.35, "detail": "" }, { @@ -2383,12 +2457,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/cc441675-a9dd-432f-96a7-5c6a3ebb0022/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.53, + "duration_ms": 3.2, "detail": "" }, { @@ -2396,12 +2470,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/6f54c49d-0e13-48bb-b44f-7f4a49cac4bf/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.7, + "duration_ms": 3.23, "detail": "" }, { @@ -2409,12 +2483,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/aa9adf8f-8950-4190-93f0-2c85f3e50f91/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.72, + "duration_ms": 2.7, "detail": "" }, { @@ -2422,12 +2496,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/591b4398-4f52-4d06-b6b7-5bff4a31f4fd/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.58, + "duration_ms": 2.62, "detail": "" }, { @@ -2435,12 +2509,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/1ea1f13e-0ea8-4d79-b316-9298fbc14689/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.48, + "duration_ms": 4.24, "detail": "" }, { @@ -2448,12 +2522,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/5d5e99e0-4723-48fa-b00f-2a65c0a10620/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.79, + "duration_ms": 12.64, "detail": "" }, { @@ -2461,12 +2535,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/c051521a-cc09-4326-ace1-57836c8342af/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 6.23, + "duration_ms": 9.7, "detail": "" }, { @@ -2474,12 +2548,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ac7ac7ce-6020-4f45-b9ff-1af34d708f8f/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 4.91, + "duration_ms": 10.02, "detail": "" }, { @@ -2490,9 +2564,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.89, + "duration_ms": 11.75, "detail": "" }, { @@ -2503,9 +2577,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 11.8, + "duration_ms": 16.49, "detail": "" }, { @@ -2513,12 +2587,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 7.17, + "duration_ms": 17.0, "detail": "" }, { @@ -2526,12 +2600,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "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": 6.18, + "duration_ms": 7.13, "detail": "" }, { @@ -2539,12 +2613,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "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": 8.35, + "duration_ms": 7.84, "detail": "" }, { @@ -2557,7 +2631,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.56, + "duration_ms": 6.5, "detail": "" }, { @@ -2570,7 +2644,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 9.18, + "duration_ms": 7.78, "detail": "" }, { @@ -2583,7 +2657,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 6.08, + "duration_ms": 7.5, "detail": "" }, { @@ -2596,7 +2670,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 5.17, + "duration_ms": 10.98, "detail": "" }, { @@ -2604,12 +2678,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 3.47, + "duration_ms": 7.77, "detail": "" }, { @@ -2622,7 +2696,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.26, + "duration_ms": 9.08, "detail": "" }, { @@ -2635,7 +2709,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 2.47, + "duration_ms": 9.19, "detail": "" }, { @@ -2646,9 +2720,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.5, + "duration_ms": 8.99, "detail": "" }, { @@ -2656,12 +2730,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 2.82, + "duration_ms": 12.03, "detail": "" }, { @@ -2669,12 +2743,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 2.79, + "duration_ms": 39.38, "detail": "" }, { @@ -2687,7 +2761,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 5.43, + "duration_ms": 53.44, "detail": "" }, { @@ -2700,7 +2774,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 4.56, + "duration_ms": 198.85, "detail": "" }, { @@ -2711,9 +2785,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.82, + "duration_ms": 26.03, "detail": "" }, { @@ -2724,9 +2798,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.69, + "duration_ms": 33.09, "detail": "" }, { @@ -2737,9 +2811,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.43, + "duration_ms": 55.34, "detail": "" }, { @@ -2747,12 +2821,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 2.69, + "duration_ms": 14.3, "detail": "" }, { @@ -2760,12 +2834,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/648f3086-d6bf-47f3-95d9-fb862ca237c8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.43, + "duration_ms": 41.08, "detail": "" }, { @@ -2776,9 +2850,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.09, + "duration_ms": 37.14, "detail": "" }, { @@ -2789,9 +2863,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.98, + "duration_ms": 18.0, "detail": "" }, { @@ -2799,12 +2873,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.17, + "duration_ms": 35.51, "detail": "" }, { @@ -2812,12 +2886,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "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": 3.23, + "duration_ms": 8.48, "detail": "" }, { @@ -2825,12 +2899,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/1ca51f2b-e70a-4727-8900-aab0a1b5fda4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.16, + "duration_ms": 8.72, "detail": "" }, { @@ -2843,7 +2917,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.5, + "duration_ms": 9.18, "detail": "" }, { @@ -2856,7 +2930,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 4.14, + "duration_ms": 8.1, "detail": "" }, { @@ -2869,7 +2943,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 3.61, + "duration_ms": 5.61, "detail": "" }, { @@ -2882,7 +2956,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 3.58, + "duration_ms": 5.46, "detail": "" }, { @@ -2890,12 +2964,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 3.21, + "duration_ms": 6.54, "detail": "" }, { @@ -2908,7 +2982,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.46, + "duration_ms": 7.21, "detail": "" }, { @@ -2921,7 +2995,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 4.46, + "duration_ms": 11.54, "detail": "" }, { @@ -2934,7 +3008,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.53, + "duration_ms": 7.84, "detail": "" }, { @@ -2947,7 +3021,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.95, + "duration_ms": 43.5, "detail": "" }, { @@ -2955,12 +3029,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.8, + "duration_ms": 12.05, "detail": "" }, { @@ -2973,7 +3047,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 7.89, "detail": "" }, { @@ -2986,7 +3060,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.35, + "duration_ms": 14.05, "detail": "" }, { @@ -2999,7 +3073,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 16.1, "detail": "" }, { @@ -3012,7 +3086,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 185.27, "detail": "" }, { @@ -3020,12 +3094,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.57, + "duration_ms": 28.32, "detail": "" }, { @@ -3038,7 +3112,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 32.07, "detail": "" }, { @@ -3051,7 +3125,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.02, + "duration_ms": 68.66, "detail": "" }, { @@ -3062,9 +3136,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 11.93, "detail": "" }, { @@ -3072,12 +3146,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.72, + "duration_ms": 20.39, "detail": "" }, { @@ -3085,12 +3159,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.68, + "duration_ms": 12.06, "detail": "" }, { @@ -3103,7 +3177,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 11.35, "detail": "" }, { @@ -3116,7 +3190,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.65, + "duration_ms": 13.88, "detail": "" }, { @@ -3129,7 +3203,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.82, + "duration_ms": 12.38, "detail": "" }, { @@ -3142,7 +3216,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.4, + "duration_ms": 10.85, "detail": "" }, { @@ -3150,12 +3224,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 2.93, + "duration_ms": 6.76, "detail": "" }, { @@ -3168,7 +3242,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.08, + "duration_ms": 47.98, "detail": "" }, { @@ -3181,7 +3255,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.57, + "duration_ms": 11.38, "detail": "" }, { @@ -3194,7 +3268,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.69, + "duration_ms": 24.93, "detail": "" }, { @@ -3205,9 +3279,9 @@ "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.91, + "duration_ms": 12.41, "detail": "" }, { @@ -3215,12 +3289,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v3/bookmarks/95da2efa-fff0-486c-be2c-de7e144ee985", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.11, + "duration_ms": 13.03, "detail": "" }, { @@ -3228,12 +3302,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v3/bookmarks/523f0063-9763-4006-94e7-4dd185859cff", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 6.58, "detail": "" }, { @@ -3246,7 +3320,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.89, + "duration_ms": 15.02, "detail": "" }, { @@ -3259,7 +3333,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.56, + "duration_ms": 8.07, "detail": "" }, { @@ -3270,9 +3344,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.07, + "duration_ms": 69.64, "detail": "" }, { @@ -3280,12 +3354,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/clusters/41f86869-f61e-4ca1-9ddd-3e2982b19a5d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.45, + "duration_ms": 9.49, "detail": "" }, { @@ -3293,12 +3367,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/clusters/cc9efd1c-2b94-4ce5-8d50-a817b731dd25", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 7.56, "detail": "" }, { @@ -3311,7 +3385,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.65, + "duration_ms": 19.32, "detail": "" }, { @@ -3324,7 +3398,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.83, + "duration_ms": 10.87, "detail": "" }, { @@ -3337,7 +3411,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.78, + "duration_ms": 24.89, "detail": "" }, { @@ -3350,7 +3424,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.0, + "duration_ms": 11.33, "detail": "" }, { @@ -3363,7 +3437,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.74, + "duration_ms": 10.48, "detail": "" }, { @@ -3374,9 +3448,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.39, + "duration_ms": 6.01, "detail": "" }, { @@ -3384,12 +3458,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/d669c4e4-0e29-4c3e-8f5c-0d39576d1e11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.0, + "duration_ms": 5.3, "detail": "" }, { @@ -3397,12 +3471,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/7878f99b-8d57-4546-90d1-1b0311d7caae", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 6.37, "detail": "" }, { @@ -3415,7 +3489,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.83, + "duration_ms": 7.34, "detail": "" }, { @@ -3428,7 +3502,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.17, + "duration_ms": 8.04, "detail": "" }, { @@ -3441,7 +3515,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 4.53, + "duration_ms": 10.61, "detail": "" }, { @@ -3452,9 +3526,9 @@ "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.5, + "duration_ms": 4.46, "detail": "" }, { @@ -3462,12 +3536,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/disks/{id}", - "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v3/disks/0c5a6794-b38a-4179-a499-7c78bfa83605", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.2, + "duration_ms": 16.02, "detail": "" }, { @@ -3475,12 +3549,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/disks/{id}", - "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v3/disks/d975915a-6e62-41f4-b3f6-840d540a2a85", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 10.84, "detail": "" }, { @@ -3493,7 +3567,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.47, + "duration_ms": 12.67, "detail": "" }, { @@ -3506,7 +3580,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.49, + "duration_ms": 14.14, "detail": "" }, { @@ -3519,7 +3593,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.46, + "duration_ms": 13.31, "detail": "" }, { @@ -3532,7 +3606,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 15.01, "detail": "" }, { @@ -3545,7 +3619,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 2.07, + "duration_ms": 10.38, "detail": "" }, { @@ -3558,7 +3632,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 11.37, "detail": "" }, { @@ -3571,7 +3645,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 7.14, "detail": "" }, { @@ -3579,12 +3653,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/domains/{id}", - "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/v3/domains/8bae4815-7934-4c0b-84d5-2cb30b6dca8f", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 7.63, "detail": "" }, { @@ -3597,7 +3671,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 10.81, "detail": "" }, { @@ -3610,7 +3684,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.27, + "duration_ms": 7.74, "detail": "" }, { @@ -3618,12 +3692,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1105", + "path_resolved": "/ovirt-engine/api/v3/events/48", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 12.45, "detail": "" }, { @@ -3631,12 +3705,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1105", + "path_resolved": "/ovirt-engine/api/v3/events/48", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 9.37, "detail": "" }, { @@ -3644,12 +3718,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1105", + "path_resolved": "/ovirt-engine/api/v3/events/8889b93e-de17-4192-958b-6238696049ef", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 6.56, "detail": "" }, { @@ -3662,7 +3736,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 8.4, "detail": "" }, { @@ -3675,7 +3749,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.43, + "duration_ms": 9.96, "detail": "" }, { @@ -3686,9 +3760,9 @@ "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 11.55, "detail": "" }, { @@ -3696,12 +3770,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/groups/{id}", - "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v3/groups/6b6551a3-12b3-4e5d-854f-5d597dcaf641", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 18.49, "detail": "" }, { @@ -3709,12 +3783,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/groups/{id}", - "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v3/groups/11fb939f-1da8-41ba-a958-a39c2278a828", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 8.15, "detail": "" }, { @@ -3727,7 +3801,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 9.08, "detail": "" }, { @@ -3740,7 +3814,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.09, + "duration_ms": 11.21, "detail": "" }, { @@ -3748,12 +3822,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/998cfd1e-b951-4e00-8729-17749e6e4247", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 4.82, "detail": "" }, { @@ -3761,12 +3835,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/ed9d1bef-42c5-4b85-9699-3d4264c2bf6a", + "path_resolved": "/ovirt-engine/api/v3/hosts/aef4f223-d15f-4f38-96dc-c37aecab5332", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 12.96, "detail": "" }, { @@ -3774,12 +3848,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/47ebd39a-8330-476d-82a0-cfc8b57055d2", + "path_resolved": "/ovirt-engine/api/v3/hosts/cbbbe42b-da11-40f7-a4b4-d53ec4f08ddd", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 12.82, "detail": "" }, { @@ -3787,12 +3861,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/v3/hosts/b6231d4d-ca50-437f-9ef2-66a4fc8d7140/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": 2.49, + "duration_ms": 11.15, "detail": "" }, { @@ -3800,12 +3874,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/v3/hosts/ccc8e8fe-b4e1-4728-a0a0-3cb31637ca9b/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": 2.6, + "duration_ms": 10.13, "detail": "" }, { @@ -3813,12 +3887,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/v3/hosts/f012b720-8365-4909-b4b0-146b063dcfb4/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.31, + "duration_ms": 9.54, "detail": "" }, { @@ -3826,12 +3900,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/v3/hosts/b15e7c5a-0045-4509-a248-5cc040ada41b/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.34, + "duration_ms": 12.04, "detail": "" }, { @@ -3839,12 +3913,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/v3/hosts/e8a65008-041d-4c2f-b5fe-e87c7ffff8b0/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": 2.63, + "duration_ms": 11.97, "detail": "" }, { @@ -3852,12 +3926,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/v3/hosts/c5ad8511-ce65-4a84-8cae-d4b70abd7455/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.3, + "duration_ms": 10.35, "detail": "" }, { @@ -3865,12 +3939,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/v3/hosts/f8dcae43-ebf0-45ff-9fdb-87b4ded36b0e/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.24, + "duration_ms": 9.14, "detail": "" }, { @@ -3878,12 +3952,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/v3/hosts/0db9cc81-a599-474b-8590-2f8fe0281bd2/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.36, + "duration_ms": 9.33, "detail": "" }, { @@ -3891,12 +3965,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/v3/hosts/5a49e25b-8cea-4c42-9cd5-e13a8de3edf2/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": 2.42, + "duration_ms": 9.01, "detail": "" }, { @@ -3904,12 +3978,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/v3/hosts/6164747b-cd86-454a-9b90-229e7173bf11/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.26, + "duration_ms": 39.5, "detail": "" }, { @@ -3922,7 +3996,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 8.22, "detail": "" }, { @@ -3935,7 +4009,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.97, + "duration_ms": 7.65, "detail": "" }, { @@ -3943,12 +4017,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 6.21, "detail": "" }, { @@ -3956,12 +4030,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/v3/networks/5498f602-c9f2-4201-a5f7-56bb65ad3a16", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.15, + "duration_ms": 8.58, "detail": "" }, { @@ -3969,12 +4043,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/v3/networks/05e7de30-20b3-4937-bc66-619133609239", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 8.27, "detail": "" }, { @@ -3987,7 +4061,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 7.65, "detail": "" }, { @@ -4000,7 +4074,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.28, + "duration_ms": 5.54, "detail": "" }, { @@ -4013,7 +4087,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 9.12, "detail": "" }, { @@ -4026,7 +4100,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 5.36, "detail": "" }, { @@ -4034,12 +4108,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/v3/permissions/34792b0e-c55c-4e10-9a18-ecb067246cab", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 4.57, "detail": "" }, { @@ -4052,7 +4126,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 5.21, "detail": "" }, { @@ -4065,7 +4139,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.32, + "duration_ms": 7.67, "detail": "" }, { @@ -4076,9 +4150,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 5.33, "detail": "" }, { @@ -4086,12 +4160,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/roles/{id}", - "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v3/roles/5999fb53-2aa0-4773-a419-783a51bdc14b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 6.93, "detail": "" }, { @@ -4099,12 +4173,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/roles/{id}", - "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v3/roles/2028bce0-c1b3-4a1a-bb40-b9e5376ec556", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 6.59, "detail": "" }, { @@ -4117,7 +4191,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 5.8, "detail": "" }, { @@ -4130,7 +4204,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.3, + "duration_ms": 8.8, "detail": "" }, { @@ -4138,12 +4212,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/b2886cc2-c906-49fc-9822-10054cd6e788", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/9f3bce26-1442-447b-941e-bc70e0c58a4a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.91, + "duration_ms": 6.87, "detail": "" }, { @@ -4151,12 +4225,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/b2886cc2-c906-49fc-9822-10054cd6e788", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/ba072699-0172-4d21-8d25-68a2f64784f5", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 4.86, "detail": "" }, { @@ -4164,12 +4238,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/b2886cc2-c906-49fc-9822-10054cd6e788", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/c479fc18-e78f-468e-aa1c-54b276da5e62", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 7.64, "detail": "" }, { @@ -4182,7 +4256,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 8.31, "detail": "" }, { @@ -4195,7 +4269,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.26, + "duration_ms": 9.79, "detail": "" }, { @@ -4206,9 +4280,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 8.98, "detail": "" }, { @@ -4216,12 +4290,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v3/storagedomains/9eade37e-3a37-4b7e-8f4b-2a7d3c06eb02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 13.4, "detail": "" }, { @@ -4229,12 +4303,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v3/storagedomains/08ca3316-1fcc-4701-b68e-5547cff8965e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 7.27, "detail": "" }, { @@ -4247,7 +4321,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.23, + "duration_ms": 11.69, "detail": "" }, { @@ -4260,7 +4334,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.12, + "duration_ms": 18.14, "detail": "" }, { @@ -4273,7 +4347,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 11.44, "detail": "" }, { @@ -4286,7 +4360,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.72, + "duration_ms": 9.51, "detail": "" }, { @@ -4297,9 +4371,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 7.26, "detail": "" }, { @@ -4307,12 +4381,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v3/tags/4527f621-2840-4bea-b232-aeb1f58da8c2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 10.11, "detail": "" }, { @@ -4320,12 +4394,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v3/tags/18aabc89-33d5-40b4-9629-ecc31a8aec0a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 8.63, "detail": "" }, { @@ -4338,7 +4412,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 8.26, "detail": "" }, { @@ -4351,7 +4425,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.84, + "duration_ms": 11.04, "detail": "" }, { @@ -4362,9 +4436,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 8.04, "detail": "" }, { @@ -4372,12 +4446,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/templates/{id}", - "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v3/templates/8385c8bb-5868-40ec-87e0-29b9fb4dc077", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 10.99, "detail": "" }, { @@ -4385,12 +4459,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/templates/{id}", - "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v3/templates/94db987b-c6bb-4b41-9320-14cfd74cb941", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 8.0, "detail": "" }, { @@ -4403,7 +4477,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 7.57, "detail": "" }, { @@ -4416,7 +4490,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.21, + "duration_ms": 7.08, "detail": "" }, { @@ -4429,7 +4503,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 13.59, "detail": "" }, { @@ -4442,7 +4516,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 6.33, "detail": "" }, { @@ -4450,12 +4524,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/users/{id}", - "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/v3/users/ff3dd95d-d501-475e-9d1d-50733a3fe497", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 4.91, "detail": "" }, { @@ -4468,7 +4542,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 5.99, "detail": "" }, { @@ -4481,7 +4555,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.2, + "duration_ms": 7.89, "detail": "" }, { @@ -4492,9 +4566,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 5.88, "detail": "" }, { @@ -4502,12 +4576,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v3/vmpools/f29e6eb5-0a4b-4e6c-8c1c-48b3b2e5ce2b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 8.5, "detail": "" }, { @@ -4515,12 +4589,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v3/vmpools/124d26fa-8a7d-4433-ad83-faeb84588650", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 5.25, "detail": "" }, { @@ -4533,7 +4607,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 3.76, "detail": "" }, { @@ -4546,7 +4620,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.34, + "duration_ms": 7.21, "detail": "" }, { @@ -4554,12 +4628,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/258a542a-7839-407a-ad30-2403f4f9a10e", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 3.96, "detail": "" }, { @@ -4567,12 +4641,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/0df6b751-9bbe-4132-b298-db5ff82233a2", + "path_resolved": "/ovirt-engine/api/v3/vms/4843c63b-ee01-4a9b-a303-6abb5750f659", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 12.1, "detail": "" }, { @@ -4580,12 +4654,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/01779eb1-a736-4b2c-af25-7a04cc54d5a0", + "path_resolved": "/ovirt-engine/api/v3/vms/7e6cea70-d6f9-4585-a5a4-ff0988a9127c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 7.6, "detail": "" }, { @@ -4593,12 +4667,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/v3/vms/36065e46-8bd9-4ce5-97fc-fda531fe7fc0/start", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.35, + "duration_ms": 7.45, "detail": "" }, { @@ -4606,12 +4680,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/v3/vms/36501d92-92a7-4f3f-9cb0-50025f171fc0/stop", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.25, + "duration_ms": 11.53, "detail": "" }, { @@ -4619,12 +4693,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/v3/vms/1b809623-e2e8-499e-948b-b08148087a27/shutdown", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.32, + "duration_ms": 12.93, "detail": "" }, { @@ -4632,12 +4706,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/v3/vms/2195cb7d-e211-42e4-9e9a-c28d131ecdfc/reboot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.24, + "duration_ms": 10.88, "detail": "" }, { @@ -4645,12 +4719,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/v3/vms/d3026fed-3160-4792-b850-3c4f9a27b758/suspend", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.36, + "duration_ms": 8.72, "detail": "" }, { @@ -4658,12 +4732,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/v3/vms/6189d7bf-e9b1-4eb1-8c7b-7fdf05a5a0ee/migrate", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 8.78, "detail": "" }, { @@ -4671,12 +4745,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/v3/vms/fd5f98ea-b04c-4ed3-82ee-d8309ad398db/cancelmigration", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.41, + "duration_ms": 10.94, "detail": "" }, { @@ -4684,12 +4758,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/v3/vms/35b30ef0-537f-47e2-9f58-3efa44552c53/clone", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 409, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 7.56, "detail": "" }, { @@ -4697,12 +4771,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/v3/vms/69a661ec-9117-4911-8aa8-8f850fec4bd6/detach", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 7.76, "detail": "" }, { @@ -4710,12 +4784,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/v3/vms/43ced15d-0aff-4856-a9c2-000465d2cab9/screenthumbnail", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.44, + "duration_ms": 9.15, "detail": "" }, { @@ -4723,12 +4797,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/v3/vms/4f72800c-2c06-4169-9a6b-c4eaf8bb4ee0/ticket", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 9.52, "detail": "" }, { @@ -4736,12 +4810,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/fc2cca9a-aad4-4ec0-b1ce-adbb728d456f/preview_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.48, + "duration_ms": 7.94, "detail": "" }, { @@ -4749,12 +4823,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/0a28eaf5-fe19-4e5c-9964-873817b82b03/commit_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.5, + "duration_ms": 6.22, "detail": "" }, { @@ -4762,12 +4836,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/e1a8fd6f-a30d-4445-aabe-454c72340d54/undo_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.41, + "duration_ms": 6.43, "detail": "" }, { @@ -4775,12 +4849,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/v3/vms/ccee9c54-1e53-4972-9297-1b22523c9027/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.44, + "duration_ms": 6.4, "detail": "" }, { @@ -4788,12 +4862,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/v3/vms/efb06e77-d05a-4a28-b1a7-8f3ae6fcfb8e/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.94, + "duration_ms": 7.22, "detail": "" }, { @@ -4801,12 +4875,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/7cb62039-c250-45e4-8258-19c41e676c7b/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": 1.73, + "duration_ms": 5.36, "detail": "" }, { @@ -4814,12 +4888,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/53b505db-74e4-475b-ab55-07b7e9390756/diskattachments", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.81, + "duration_ms": 7.03, "detail": "" }, { @@ -4827,12 +4901,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/eb726397-a729-425c-96ba-869d50ef4b7e/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.61, + "duration_ms": 4.03, "detail": "" }, { @@ -4840,12 +4914,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/fa505402-03d6-4d43-b24c-b2a80fc187ad/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.34, + "duration_ms": 3.22, "detail": "" }, { @@ -4853,12 +4927,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/368699cd-aa71-44d9-b086-52ad404b58b9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.41, + "duration_ms": 4.44, "detail": "" }, { @@ -4866,12 +4940,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/7da37138-033b-4bde-a5ae-fac8b1d83aeb/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.51, + "duration_ms": 4.15, "detail": "" }, { @@ -4879,12 +4953,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/76f3b6ba-c5c4-4231-9af3-4683c1303c2e/nics", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.89, + "duration_ms": 5.72, "detail": "" }, { @@ -4892,12 +4966,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/f35bcc84-0670-474f-a86a-1f314df8f636/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.47, + "duration_ms": 3.88, "detail": "" }, { @@ -4905,12 +4979,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/014132b1-1514-4eaa-9c0e-f09fedb9bc93/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/54980513-db4a-4c03-970e-88002e7c4384", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 8.71, "detail": "" }, { @@ -4918,12 +4992,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/fca0e61f-6dcd-4418-b97b-0ba998e34431/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.6, + "duration_ms": 9.36, "detail": "" }, { @@ -4931,12 +5005,12 @@ "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/1364786e-93db-437b-b71f-da551dd03b5b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.94, + "duration_ms": 8.62, "detail": "" }, { @@ -4944,12 +5018,12 @@ "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/0b29fd1e-f5dc-45ac-b49a-69b3cbed1662/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.12, + "duration_ms": 9.59, "detail": "" }, { @@ -4957,12 +5031,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/b94fb4d8-a438-48fc-8f1e-6b3c7deb5f2c/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": 1.53, + "duration_ms": 12.67, "detail": "" }, { @@ -4970,12 +5044,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/f9789abe-d222-4392-8630-b7d58fb36ab7/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": 1.68, + "duration_ms": 18.13, "detail": "" }, { @@ -4983,12 +5057,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/d29a089a-2ed2-4e65-a8a4-ca7ed757b584/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.72, + "duration_ms": 29.51, "detail": "" }, { @@ -4996,12 +5070,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/69dc8f88-ae67-4cc0-b7b8-e4b6bffaeef3/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.79, + "duration_ms": 17.97, "detail": "" }, { @@ -5009,12 +5083,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/fe364b3e-7b1a-41ff-848e-e2cfc95d6afa/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.46, + "duration_ms": 30.37, "detail": "" }, { @@ -5022,12 +5096,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/bf6256c0-cd28-43ea-a24d-37e055717eae/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": 1.5, + "duration_ms": 18.37, "detail": "" }, { @@ -5035,12 +5109,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/a5cab005-8558-4a76-a541-31e96deac943/snapshots", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.6, + "duration_ms": 29.52, "detail": "" }, { @@ -5048,12 +5122,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/79a3611c-e45c-4097-8304-724e460fa82d/snapshots/3db0930a-d56a-490c-bb0f-2c132d641ef2", + "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": 1.29, + "duration_ms": 20.49, "detail": "" }, { @@ -5061,12 +5135,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/bc106cab-b4df-4701-9877-88cd1fbbfbab/snapshots/eafc02ca-58d4-4f52-8d02-52481ee6ab75", + "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": 1.27, + "duration_ms": 14.3, "detail": "" }, { @@ -5074,12 +5148,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/74b6715a-28a3-4351-ad27-0b0cc6cc466b/snapshots/aa89b0c6-1170-4530-bb20-27c51ff037ef", + "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": 1.45, + "duration_ms": 66.07, "detail": "" }, { @@ -5087,12 +5161,12 @@ "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/b46a1ab5-3327-41ea-9687-740a7cfc05ce/snapshots/fc488f76-b881-46a9-8f43-d31fafb583aa/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": 2.28, + "duration_ms": 21.89, "detail": "" }, { @@ -5100,12 +5174,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/b59d2495-bafd-4e3a-b1dc-7843efe0c7d3/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.53, + "duration_ms": 10.43, "detail": "" }, { @@ -5113,12 +5187,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/e3b1e1fd-f124-4558-99de-d7a15147470c/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.08, + "duration_ms": 10.37, "detail": "" }, { @@ -5126,12 +5200,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/cd2c0981-e235-4874-a4d9-666556646c6d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.5, + "duration_ms": 14.32, "detail": "" }, { @@ -5139,12 +5213,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/e3d4663a-0935-4f65-9ed8-d31c97b6d93a/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.31, + "duration_ms": 8.81, "detail": "" }, { @@ -5152,12 +5226,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/59500061-ec76-4ecc-bb60-c9b5c6dd30d9/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.8, + "duration_ms": 6.87, "detail": "" }, { @@ -5165,12 +5239,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/54bbfe99-1a2b-4600-b513-32150e92d4ca/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.58, + "duration_ms": 7.62, "detail": "" }, { @@ -5178,12 +5252,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/970ebaeb-bbb9-48af-a341-866dd7f81c40/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": 1.66, + "duration_ms": 11.78, "detail": "" }, { @@ -5191,12 +5265,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/74524c77-de05-4f3b-8b56-7ddb2486ab85/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.2, + "duration_ms": 8.03, "detail": "" }, { @@ -5204,12 +5278,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/b20985f3-6bd5-48ab-85f6-5c937cc6ed9d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.69, + "duration_ms": 6.84, "detail": "" }, { @@ -5217,12 +5291,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/3e7e5058-3fd3-4750-b0b6-93b7c3035c13/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.44, + "duration_ms": 5.65, "detail": "" }, { @@ -5230,12 +5304,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/e76a1e10-72f8-4ab9-a581-141f8854d534/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.52, + "duration_ms": 6.31, "detail": "" }, { @@ -5243,12 +5317,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/cc17e900-2cd3-41b5-b8ba-b3ed4edfefc3/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.48, + "duration_ms": 7.62, "detail": "" }, { @@ -5256,12 +5330,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/629a5b03-db74-4da3-9fa1-38bd4dea6978/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 5.64, "detail": "" }, { @@ -5269,12 +5343,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/07963791-4de7-483f-89ab-808f0927fdca/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.75, + "duration_ms": 6.86, "detail": "" }, { @@ -5282,12 +5356,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/516eab73-3304-47dc-abb1-871237a2e56c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.55, + "duration_ms": 7.93, "detail": "" }, { @@ -5295,12 +5369,12 @@ "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/694ba5f9-31c0-49da-8f19-e3a67d72bc4e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.3, + "duration_ms": 8.57, "detail": "" }, { @@ -5308,12 +5382,12 @@ "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/187ecd3b-7c01-44bb-8514-b31024cb1b58/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.33, + "duration_ms": 10.28, "detail": "" }, { @@ -5321,12 +5395,12 @@ "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/a7b1fb84-3f47-480a-b80b-c35524fe1093/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.2, + "duration_ms": 10.46, "detail": "" }, { @@ -5334,12 +5408,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/8c18be25-3ed6-4a60-a703-3533533a2d29/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.67, + "duration_ms": 5.67, "detail": "" }, { @@ -5347,12 +5421,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/46de6f63-8248-4c04-9b34-c0cf2c038734/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": 1.96, + "duration_ms": 8.55, "detail": "" }, { @@ -5360,12 +5434,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/c6be0977-eac2-495d-8219-c20611861800/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.5, + "duration_ms": 6.15, "detail": "" }, { @@ -5373,12 +5447,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/a7063efa-85f9-4ea7-9406-bac9ace8103a/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.45, + "duration_ms": 9.37, "detail": "" }, { @@ -5386,12 +5460,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/521052e8-b63c-40d6-85e8-95f1b59ac5f1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.39, + "duration_ms": 10.56, "detail": "" }, { @@ -5399,12 +5473,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/22096ac4-e0bb-4d14-bae6-157841ca6a79/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.48, + "duration_ms": 9.98, "detail": "" }, { @@ -5412,12 +5486,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/4233774a-b44f-4fc6-8a3a-17e32346cf1a/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": 1.74, + "duration_ms": 9.78, "detail": "" }, { @@ -5425,12 +5499,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/6f1217a3-d8c5-4306-8c93-82a556ccb129/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.4, + "duration_ms": 8.34, "detail": "" }, { @@ -5438,12 +5512,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/48936791-d850-4531-9231-214ab2c59d88/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.64, + "duration_ms": 6.22, "detail": "" }, { @@ -5451,12 +5525,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/3ef73fcb-fa78-4c7b-a8a0-153cf8aa1979/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.45, + "duration_ms": 5.16, "detail": "" }, { @@ -5464,12 +5538,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/72f05a08-c00b-4f4b-ab0f-d8f26c0b28e1/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.49, + "duration_ms": 5.95, "detail": "" }, { @@ -5477,12 +5551,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/90a0ceed-d07e-439c-a662-0196bd46d59c/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": 1.88, + "duration_ms": 7.36, "detail": "" }, { @@ -5490,12 +5564,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/acdd9387-3e66-4b3c-918b-47c4004ab4de/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 7.97, "detail": "" }, { @@ -5503,12 +5577,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/5392592d-4df2-429b-87a9-e2bbb57785d3/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.81, + "duration_ms": 10.29, "detail": "" }, { @@ -5516,12 +5590,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/b6b76727-cc87-4600-8378-82e1fa759adc/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.63, + "duration_ms": 9.41, "detail": "" }, { @@ -5532,9 +5606,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 10.07, "detail": "" }, { @@ -5545,9 +5619,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 1.99, + "duration_ms": 7.83, "detail": "" }, { @@ -5555,12 +5629,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 6.9, "detail": "" }, { @@ -5568,12 +5642,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "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": 1.31, + "duration_ms": 7.15, "detail": "" }, { @@ -5581,12 +5655,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "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": 1.32, + "duration_ms": 8.37, "detail": "" }, { @@ -5599,7 +5673,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 6.13, "detail": "" }, { @@ -5612,7 +5686,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.77, + "duration_ms": 19.69, "detail": "" }, { @@ -5625,7 +5699,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 13.32, "detail": "" }, { @@ -5638,7 +5712,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 8.15, "detail": "" }, { @@ -5646,12 +5720,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.52, + "duration_ms": 16.6, "detail": "" }, { @@ -5664,7 +5738,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 10.75, "detail": "" }, { @@ -5677,7 +5751,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 1.47, + "duration_ms": 7.63, "detail": "" }, { @@ -5688,9 +5762,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.17, + "duration_ms": 8.22, "detail": "" }, { @@ -5698,12 +5772,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 2.16, + "duration_ms": 7.28, "detail": "" }, { @@ -5711,12 +5785,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 2.71, + "duration_ms": 4.48, "detail": "" }, { @@ -5729,7 +5803,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 4.9, + "duration_ms": 8.43, "detail": "" }, { @@ -5742,7 +5816,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 5.19, + "duration_ms": 6.95, "detail": "" }, { @@ -5753,9 +5827,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.7, + "duration_ms": 6.87, "detail": "" }, { @@ -5766,9 +5840,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 4.47, + "duration_ms": 7.78, "detail": "" }, { @@ -5779,9 +5853,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.41, + "duration_ms": 5.47, "detail": "" }, { @@ -5789,12 +5863,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 3.58, + "duration_ms": 7.19, "detail": "" }, { @@ -5802,12 +5876,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/c4b6b491-cbc4-4b45-b533-1b8c25e04179", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.88, + "duration_ms": 6.95, "detail": "" }, { @@ -5818,9 +5892,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.55, + "duration_ms": 5.99, "detail": "" }, { @@ -5831,9 +5905,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 3.29, + "duration_ms": 7.58, "detail": "" }, { @@ -5841,12 +5915,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.44, + "duration_ms": 4.94, "detail": "" }, { @@ -5854,12 +5928,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "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.25, + "duration_ms": 4.65, "detail": "" }, { @@ -5867,12 +5941,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/f8a729d9-f7ca-4097-92ad-b4f9f5d0dbda", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.22, + "duration_ms": 6.24, "detail": "" }, { @@ -5885,7 +5959,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.71, + "duration_ms": 6.82, "detail": "" }, { @@ -5898,7 +5972,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 8.32, + "duration_ms": 6.02, "detail": "" }, { @@ -5911,7 +5985,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 5.8, + "duration_ms": 5.66, "detail": "" }, { @@ -5924,7 +5998,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 3.35, + "duration_ms": 5.33, "detail": "" }, { @@ -5932,12 +6006,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 3.68, + "duration_ms": 4.32, "detail": "" }, { @@ -5950,7 +6024,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.02, + "duration_ms": 3.63, "detail": "" }, { @@ -5963,7 +6037,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 6.04, + "duration_ms": 5.39, "detail": "" }, { @@ -5974,9 +6048,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.27, + "duration_ms": 3.96, "detail": "" }, { @@ -5987,9 +6061,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.94, + "duration_ms": 4.04, "detail": "" }, { @@ -5997,12 +6071,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 2.0, + "duration_ms": 3.79, "detail": "" }, { @@ -6015,7 +6089,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.8, + "duration_ms": 3.62, "detail": "" }, { @@ -6028,7 +6102,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 6.48, + "duration_ms": 4.99, "detail": "" }, { @@ -6041,7 +6115,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 6.89, + "duration_ms": 3.49, "detail": "" }, { @@ -6054,7 +6128,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.1, + "duration_ms": 6.37, "detail": "" }, { @@ -6062,12 +6136,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 3.83, + "duration_ms": 5.02, "detail": "" }, { @@ -6080,7 +6154,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.82, + "duration_ms": 8.73, "detail": "" }, { @@ -6093,7 +6167,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 5.94, + "duration_ms": 10.71, "detail": "" }, { @@ -6104,9 +6178,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.95, + "duration_ms": 6.12, "detail": "" }, { @@ -6114,12 +6188,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 2.31, + "duration_ms": 6.02, "detail": "" }, { @@ -6127,12 +6201,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.79, + "duration_ms": 5.18, "detail": "" }, { @@ -6145,7 +6219,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.38, + "duration_ms": 5.95, "detail": "" }, { @@ -6158,7 +6232,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 9.61, + "duration_ms": 6.98, "detail": "" }, { @@ -6169,9 +6243,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.98, + "duration_ms": 4.39, "detail": "" }, { @@ -6182,9 +6256,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.17, + "duration_ms": 4.28, "detail": "" }, { @@ -6192,12 +6266,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 11.47, + "duration_ms": 3.94, "detail": "" }, { @@ -6210,7 +6284,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 49.68, + "duration_ms": 8.8, "detail": "" }, { @@ -6223,7 +6297,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 10.11, + "duration_ms": 4.2, "detail": "" }, { @@ -6234,9 +6308,9 @@ "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 7.67, + "duration_ms": 3.4, "detail": "" }, { @@ -6249,7 +6323,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.9, + "duration_ms": 3.96, "detail": "" }, { @@ -6260,9 +6334,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.92, + "duration_ms": 3.09, "detail": "" }, { @@ -6275,7 +6349,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.34, + "duration_ms": 5.19, "detail": "" }, { @@ -6286,9 +6360,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.66, + "duration_ms": 6.5, "detail": "" }, { @@ -6301,7 +6375,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.63, + "duration_ms": 6.09, "detail": "" }, { @@ -6312,9 +6386,9 @@ "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 7.97, + "duration_ms": 5.15, "detail": "" }, { @@ -6327,7 +6401,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.73, + "duration_ms": 5.11, "detail": "" }, { @@ -6340,7 +6414,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.15, + "duration_ms": 4.28, "detail": "" }, { @@ -6353,7 +6427,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.34, + "duration_ms": 5.62, "detail": "" }, { @@ -6361,12 +6435,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1105", + "path_resolved": "/ovirt-engine/api/events/48", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.12, + "duration_ms": 4.69, "detail": "" }, { @@ -6379,7 +6453,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.87, + "duration_ms": 4.4, "detail": "" }, { @@ -6390,9 +6464,9 @@ "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.57, + "duration_ms": 4.82, "detail": "" }, { @@ -6405,7 +6479,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.47, + "duration_ms": 6.42, "detail": "" }, { @@ -6413,12 +6487,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/5b7ae979-af18-4903-ba44-c32b4f751236", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 11.79, + "duration_ms": 4.81, "detail": "" }, { @@ -6431,7 +6505,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 9.35, + "duration_ms": 6.98, "detail": "" }, { @@ -6439,12 +6513,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 8.42, + "duration_ms": 4.75, "detail": "" }, { @@ -6457,7 +6531,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.73, + "duration_ms": 5.1, "detail": "" }, { @@ -6470,7 +6544,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.53, + "duration_ms": 5.23, "detail": "" }, { @@ -6483,7 +6557,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.82, + "duration_ms": 5.02, "detail": "" }, { @@ -6494,9 +6568,9 @@ "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 8.72, + "duration_ms": 4.61, "detail": "" }, { @@ -6509,7 +6583,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.52, + "duration_ms": 4.16, "detail": "" }, { @@ -6517,12 +6591,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/b2886cc2-c906-49fc-9822-10054cd6e788", + "path_resolved": "/ovirt-engine/api/storageconnections/9f3bce26-1442-447b-941e-bc70e0c58a4a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 6.55, + "duration_ms": 4.31, "detail": "" }, { @@ -6535,7 +6609,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.34, + "duration_ms": 4.58, "detail": "" }, { @@ -6546,9 +6620,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.6, + "duration_ms": 4.07, "detail": "" }, { @@ -6561,7 +6635,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.32, + "duration_ms": 3.06, "detail": "" }, { @@ -6572,9 +6646,9 @@ "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.1, + "duration_ms": 2.7, "detail": "" }, { @@ -6587,7 +6661,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.17, + "duration_ms": 3.66, "detail": "" }, { @@ -6598,9 +6672,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.03, + "duration_ms": 5.21, "detail": "" }, { @@ -6613,7 +6687,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.64, + "duration_ms": 6.04, "detail": "" }, { @@ -6626,7 +6700,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.39, + "duration_ms": 6.38, "detail": "" }, { @@ -6639,7 +6713,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 10.39, + "duration_ms": 4.23, "detail": "" }, { @@ -6650,9 +6724,9 @@ "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 8.67, + "duration_ms": 3.69, "detail": "" }, { @@ -6665,7 +6739,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.22, + "duration_ms": 3.95, "detail": "" }, { @@ -6673,12 +6747,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/28cfccce-caa9-4833-bff8-52d9e2aef355", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 20.07, + "duration_ms": 4.19, "detail": "" }, { @@ -6686,12 +6760,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/ab1d5f91-922a-4974-b1b7-c9e059246171/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": 28.63, + "duration_ms": 4.64, "detail": "" }, { @@ -6699,12 +6773,12 @@ "operation_id": "head.diskattachments.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/367d685a-249f-4a3e-a06e-f2392f7cfcf8/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.12, + "duration_ms": 4.92, "detail": "" }, { @@ -6712,12 +6786,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/9c1b4b2d-9caa-4f76-93b1-4eabcdbd08f8/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.45, + "duration_ms": 5.23, "detail": "" }, { @@ -6725,12 +6799,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/52f9a0ae-6edd-4082-aaa7-0b6dd069e709/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.18, + "duration_ms": 5.06, "detail": "" }, { @@ -6738,12 +6812,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/ede01e17-ab66-41f0-b472-fc8966c65207/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": 10.41, + "duration_ms": 4.62, "detail": "" }, { @@ -6751,12 +6825,12 @@ "operation_id": "head.cdroms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/491076cf-e53e-4328-9436-ac2c86439095/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.94, + "duration_ms": 4.49, "detail": "" }, { @@ -6764,12 +6838,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/4f0a14e1-6f9f-4fae-bf0b-505612dd708a/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.5, + "duration_ms": 5.49, "detail": "" }, { @@ -6777,12 +6851,12 @@ "operation_id": "head.snapshots.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/9b73f76e-1f36-4706-a242-e4f35f157a4b/snapshots/d7df6fb5-bf20-4667-9e1f-25c1f33e5a93", + "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": 5.84, + "duration_ms": 4.7, "detail": "" }, { @@ -6790,12 +6864,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/642fa8a9-f142-42c5-a105-e29111109378/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": 10.71, + "duration_ms": 5.8, "detail": "" }, { @@ -6803,12 +6877,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/2282505e-aff0-42ef-b1ce-0e663ce8047d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 9.23, + "duration_ms": 4.21, "detail": "" }, { @@ -6816,12 +6890,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/9aaf30a5-9887-4826-99cd-68aef13b98fe/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.98, + "duration_ms": 5.71, "detail": "" }, { @@ -6829,12 +6903,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/4d35e4df-a656-45f0-abaa-f07374135476/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.18, + "duration_ms": 4.66, "detail": "" }, { @@ -6842,12 +6916,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/5a72c8d7-d065-4579-827b-a035ef5d0886/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.07, + "duration_ms": 5.41, "detail": "" }, { @@ -6855,12 +6929,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/146a8d1d-7c24-4e55-afeb-8aa0ca7f2298/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.6, + "duration_ms": 6.27, "detail": "" }, { @@ -6868,12 +6942,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/2c43b13a-6910-422a-8a81-0292505a1ee4/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.57, + "duration_ms": 6.04, "detail": "" }, { @@ -6881,12 +6955,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/40ffd81c-d25a-49c4-b42d-c2cf93d8b1f6/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 15.13, + "duration_ms": 6.48, "detail": "" }, { @@ -6894,12 +6968,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/958e4655-3d97-4afe-b4f3-1304be8b1ae1/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.26, + "duration_ms": 4.48, "detail": "" }, { @@ -6907,12 +6981,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/742c5422-f052-48ef-8637-08d214d4c725/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.67, + "duration_ms": 5.55, "detail": "" }, { @@ -6920,12 +6994,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/4b10b750-1b53-4b79-b509-54df5787b9c1/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.87, + "duration_ms": 6.18, "detail": "" }, { @@ -6933,12 +7007,12 @@ "operation_id": "head.statistics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/2a3e2d81-8c12-41ab-bfeb-b9c42ac78bbc/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 15.33, + "duration_ms": 6.24, "detail": "" }, { @@ -6949,9 +7023,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 14.04, + "duration_ms": 6.46, "detail": "" }, { @@ -6959,12 +7033,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 23.83, + "duration_ms": 6.02, "detail": "" }, { @@ -6977,7 +7051,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.88, + "duration_ms": 5.88, "detail": "" }, { @@ -6990,7 +7064,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 7.71, + "duration_ms": 6.98, "detail": "" }, { @@ -7003,7 +7077,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.2, + "duration_ms": 11.87, "detail": "" }, { @@ -7014,9 +7088,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 12.05, + "duration_ms": 12.79, "detail": "" }, { @@ -7027,9 +7101,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.99, + "duration_ms": 17.27, "detail": "" }, { @@ -7040,9 +7114,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 10.46, + "duration_ms": 16.13, "detail": "" }, { @@ -7053,9 +7127,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 7.32, + "duration_ms": 11.54, "detail": "" }, { @@ -7063,12 +7137,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 7.06, + "duration_ms": 7.82, "detail": "" }, { @@ -7081,7 +7155,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 10.01, + "duration_ms": 6.56, "detail": "" }, { @@ -7094,7 +7168,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 6.89, + "duration_ms": 8.91, "detail": "" }, { @@ -7107,7 +7181,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.49, + "duration_ms": 9.5, "detail": "" }, { @@ -7118,9 +7192,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.22, + "duration_ms": 10.88, "detail": "" }, { @@ -7133,7 +7207,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.22, + "duration_ms": 10.28, "detail": "" }, { @@ -7146,7 +7220,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 9.08, + "duration_ms": 12.73, "detail": "" }, { @@ -7159,7 +7233,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.18, + "duration_ms": 13.38, "detail": "" }, { @@ -7170,9 +7244,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 6.91, + "duration_ms": 7.37, "detail": "" }, { @@ -7185,7 +7259,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.38, + "duration_ms": 11.65, "detail": "" }, { @@ -7196,9 +7270,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 14.35, + "duration_ms": 10.49, "detail": "" }, { @@ -7211,7 +7285,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 14.85, + "duration_ms": 9.95, "detail": "" }, { @@ -7224,7 +7298,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.99, + "duration_ms": 6.88, "detail": "" }, { @@ -7235,9 +7309,9 @@ "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 10.29, + "duration_ms": 7.04, "detail": "" }, { @@ -7250,7 +7324,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.78, + "duration_ms": 9.62, "detail": "" }, { @@ -7261,9 +7335,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 7.65, + "duration_ms": 6.97, "detail": "" }, { @@ -7276,7 +7350,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.69, + "duration_ms": 6.39, "detail": "" }, { @@ -7287,9 +7361,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.94, + "duration_ms": 7.02, "detail": "" }, { @@ -7302,7 +7376,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.26, + "duration_ms": 10.67, "detail": "" }, { @@ -7313,9 +7387,9 @@ "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 7.07, + "duration_ms": 10.28, "detail": "" }, { @@ -7328,7 +7402,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 9.95, + "duration_ms": 8.01, "detail": "" }, { @@ -7341,7 +7415,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.99, + "duration_ms": 6.04, "detail": "" }, { @@ -7354,7 +7428,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.66, + "duration_ms": 10.6, "detail": "" }, { @@ -7362,12 +7436,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1105", + "path_resolved": "/ovirt-engine/api/v3/events/48", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.13, + "duration_ms": 7.08, "detail": "" }, { @@ -7380,7 +7454,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 9.79, + "duration_ms": 6.68, "detail": "" }, { @@ -7391,9 +7465,9 @@ "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 16.75, + "duration_ms": 6.43, "detail": "" }, { @@ -7406,7 +7480,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 13.15, + "duration_ms": 8.24, "detail": "" }, { @@ -7414,12 +7488,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/bcdce96e-d051-493e-b2d8-c85279346d40", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 9.56, + "duration_ms": 5.85, "detail": "" }, { @@ -7432,7 +7506,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.21, + "duration_ms": 6.31, "detail": "" }, { @@ -7440,12 +7514,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.53, + "duration_ms": 6.92, "detail": "" }, { @@ -7458,7 +7532,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.45, + "duration_ms": 11.95, "detail": "" }, { @@ -7471,7 +7545,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.95, + "duration_ms": 8.64, "detail": "" }, { @@ -7484,7 +7558,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.41, + "duration_ms": 5.3, "detail": "" }, { @@ -7495,9 +7569,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 8.5, + "duration_ms": 4.7, "detail": "" }, { @@ -7510,7 +7584,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.23, + "duration_ms": 4.31, "detail": "" }, { @@ -7518,12 +7592,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/b2886cc2-c906-49fc-9822-10054cd6e788", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/9f3bce26-1442-447b-941e-bc70e0c58a4a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 13.3, + "duration_ms": 3.91, "detail": "" }, { @@ -7536,7 +7610,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 10.37, + "duration_ms": 4.32, "detail": "" }, { @@ -7547,9 +7621,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 14.29, + "duration_ms": 4.05, "detail": "" }, { @@ -7562,7 +7636,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 21.17, + "duration_ms": 3.97, "detail": "" }, { @@ -7573,9 +7647,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 28.64, + "duration_ms": 3.64, "detail": "" }, { @@ -7588,7 +7662,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 16.28, + "duration_ms": 3.69, "detail": "" }, { @@ -7599,9 +7673,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 13.16, + "duration_ms": 3.34, "detail": "" }, { @@ -7614,7 +7688,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 12.78, + "duration_ms": 4.36, "detail": "" }, { @@ -7627,7 +7701,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 10.75, + "duration_ms": 9.2, "detail": "" }, { @@ -7640,7 +7714,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.12, + "duration_ms": 15.12, "detail": "" }, { @@ -7651,9 +7725,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 18.06, + "duration_ms": 10.08, "detail": "" }, { @@ -7666,7 +7740,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 10.69, + "duration_ms": 9.17, "detail": "" }, { @@ -7674,12 +7748,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/f29fc7ee-cee0-4602-9b0e-02d3c1cef6f5", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 6.71, + "duration_ms": 6.75, "detail": "" }, { @@ -7687,12 +7761,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/5fc58909-faed-4834-adf8-d0d93ed51b10/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": 7.49, + "duration_ms": 8.76, "detail": "" }, { @@ -7700,12 +7774,12 @@ "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/e5fb22ac-5b6c-42e9-9c62-9768bd90bf20/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.88, + "duration_ms": 8.96, "detail": "" }, { @@ -7713,12 +7787,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/851bb71b-0245-4c41-a295-4e6b79d9bc3a/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.05, + "duration_ms": 9.03, "detail": "" }, { @@ -7726,12 +7800,12 @@ "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/1c2dc76e-9a6c-4ead-bd4c-b53b2219f3d9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.71, + "duration_ms": 9.85, "detail": "" }, { @@ -7739,12 +7813,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/18a328e0-e953-4d49-b583-4adb2c908e81/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": 10.79, + "duration_ms": 7.39, "detail": "" }, { @@ -7752,12 +7826,12 @@ "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/87a13775-3259-4187-a2e4-7c7b68359624/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 11.49, + "duration_ms": 6.22, "detail": "" }, { @@ -7765,12 +7839,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/5ca85512-3896-4958-8443-d666360a1f2f/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": 20.32, + "duration_ms": 8.88, "detail": "" }, { @@ -7778,12 +7852,12 @@ "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/da2edc03-7026-4e86-948a-efa9060b1488/snapshots/4faf9838-41c4-4b91-b1a9-cfd30b763293", + "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": 12.7, + "duration_ms": 11.67, "detail": "" }, { @@ -7791,12 +7865,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/2da0cd21-a66f-4a57-8bc2-425fcba82b9c/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": 12.3, + "duration_ms": 40.44, "detail": "" }, { @@ -7804,12 +7878,12 @@ "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/bbf5cb28-b469-40bd-96ce-5ac402a45e5d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.6, + "duration_ms": 33.11, "detail": "" }, { @@ -7817,12 +7891,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/4d7e8154-2ae6-4387-882d-efa5de5c2b5d/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": 10.04, + "duration_ms": 48.42, "detail": "" }, { @@ -7830,12 +7904,12 @@ "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/57ea4ccb-1879-45fd-ad94-9fa037d71422/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 12.38, + "duration_ms": 72.75, "detail": "" }, { @@ -7843,12 +7917,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/2b6add8e-0082-42e5-b260-5517dc1b591c/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": 22.64, + "duration_ms": 52.73, "detail": "" }, { @@ -7856,12 +7930,12 @@ "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/d377fc10-a1be-498d-acae-080e7af334ce/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 9.19, + "duration_ms": 21.69, "detail": "" }, { @@ -7869,12 +7943,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/a1cb5e97-deb2-4fb4-b09c-32f6de1de9d2/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.23, + "duration_ms": 16.2, "detail": "" }, { @@ -7882,12 +7956,12 @@ "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/bf68a11c-253f-4e65-b525-926fdf61a649/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.63, + "duration_ms": 13.57, "detail": "" }, { @@ -7895,12 +7969,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/5611165f-0908-49be-bc04-0d74f7c094fb/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": 15.07, + "duration_ms": 44.6, "detail": "" }, { @@ -7908,12 +7982,12 @@ "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/d2e2885a-dd00-4de8-b64c-5a83f4a0aabb/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 12.18, + "duration_ms": 27.43, "detail": "" }, { @@ -7921,12 +7995,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/ee78d8d5-84b3-481a-b11b-f79d5cbe9325/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": 13.98, + "duration_ms": 16.77, "detail": "" }, { @@ -7934,12 +8008,12 @@ "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/d924d9ff-9901-48d7-9a55-d0a986779f64/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 7.9, + "duration_ms": 9.51, "detail": "" }, { @@ -7950,9 +8024,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 8.31, + "duration_ms": 13.42, "detail": "" }, { @@ -7960,12 +8034,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 9.1, + "duration_ms": 9.98, "detail": "" }, { @@ -7978,7 +8052,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 9.02, + "duration_ms": 13.31, "detail": "" }, { @@ -7991,7 +8065,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 11.73, + "duration_ms": 35.76, "detail": "" }, { @@ -8004,7 +8078,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.52, + "duration_ms": 18.06, "detail": "" }, { @@ -8015,9 +8089,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 11.0, + "duration_ms": 20.09, "detail": "" }, { @@ -8028,9 +8102,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 6.96, + "duration_ms": 11.04, "detail": "" }, { @@ -8041,9 +8115,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 6.67, + "duration_ms": 6.66, "detail": "" }, { @@ -8054,9 +8128,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.35, + "duration_ms": 5.74, "detail": "" }, { @@ -8064,12 +8138,12 @@ "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/67368535-3986-4002-8ed2-eb22c9bcb4f2", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 6.14, + "duration_ms": 5.19, "detail": "" }, { @@ -8082,7 +8156,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.6, + "duration_ms": 5.87, "detail": "" }, { @@ -8095,7 +8169,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 6.64, + "duration_ms": 6.27, "detail": "" }, { @@ -8108,7 +8182,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.04, + "duration_ms": 5.95, "detail": "" }, { @@ -8119,9 +8193,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.8, + "duration_ms": 4.89, "detail": "" }, { @@ -8134,7 +8208,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.78, + "duration_ms": 4.69, "detail": "" }, { @@ -8147,7 +8221,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 6.41, + "duration_ms": 4.47, "detail": "" }, { @@ -8160,7 +8234,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.51, + "duration_ms": 5.22, "detail": "" }, { @@ -8171,9 +8245,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 8.43, + "duration_ms": 5.04, "detail": "" }, { @@ -8186,7 +8260,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.1, + "duration_ms": 4.11, "detail": "" }, { @@ -8197,9 +8271,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.44, + "duration_ms": 6.42, "detail": "" }, { @@ -8212,7 +8286,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 24.53, + "duration_ms": 13.83, "detail": "" }, { @@ -8225,7 +8299,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 9.94, + "duration_ms": 6.42, "detail": "" }, { @@ -8238,7 +8312,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 11.34, + "duration_ms": 9.11, "detail": "" }, { @@ -8251,7 +8325,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.35, + "duration_ms": 9.65, "detail": "" }, { @@ -8259,12 +8333,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/5504f443-20f7-4f90-a4a2-9fec72beb376", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.12, + "duration_ms": 6.97, "detail": "" }, { @@ -8272,12 +8346,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/f047bb82-a948-46d6-88ae-f21da2c583db", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.25, + "duration_ms": 7.08, "detail": "" }, { @@ -8290,7 +8364,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.72, + "duration_ms": 8.2, "detail": "" }, { @@ -8303,7 +8377,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 11.59, + "duration_ms": 12.45, "detail": "" }, { @@ -8316,7 +8390,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.81, + "duration_ms": 6.48, "detail": "" }, { @@ -8324,12 +8398,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/278df31d-f892-408a-b340-ad3383f4b8fa", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.89, + "duration_ms": 8.33, "detail": "" }, { @@ -8337,12 +8411,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/8b1dfe94-90fa-416e-8347-0be510950ef4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.64, + "duration_ms": 7.07, "detail": "" }, { @@ -8355,7 +8429,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 10.62, + "duration_ms": 14.77, "detail": "" }, { @@ -8368,7 +8442,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 18.08, + "duration_ms": 9.11, "detail": "" }, { @@ -8381,7 +8455,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 8.26, + "duration_ms": 8.25, "detail": "" }, { @@ -8394,7 +8468,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.13, + "duration_ms": 4.36, "detail": "" }, { @@ -8407,7 +8481,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 6.84, + "duration_ms": 7.13, "detail": "" }, { @@ -8420,7 +8494,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.51, + "duration_ms": 5.86, "detail": "" }, { @@ -8428,12 +8502,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/5516d260-69a3-4346-96e6-4ba1f96ddc5b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.84, + "duration_ms": 8.0, "detail": "" }, { @@ -8441,12 +8515,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/9eb2f392-f2dd-4f39-a24d-b9ebf85bcc61", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.66, + "duration_ms": 7.22, "detail": "" }, { @@ -8459,7 +8533,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 11.37, + "duration_ms": 42.18, "detail": "" }, { @@ -8472,7 +8546,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.68, + "duration_ms": 7.95, "detail": "" }, { @@ -8485,7 +8559,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 10.1, + "duration_ms": 43.1, "detail": "" }, { @@ -8498,7 +8572,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.99, + "duration_ms": 11.55, "detail": "" }, { @@ -8506,12 +8580,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/6701d3fa-5b8a-4a5b-8f95-303691f2b566", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.55, + "duration_ms": 11.84, "detail": "" }, { @@ -8519,12 +8593,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/28571ebd-08ba-4e21-bc60-aa1b4a1cc14c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.92, + "duration_ms": 9.9, "detail": "" }, { @@ -8537,7 +8611,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 4.14, + "duration_ms": 13.05, "detail": "" }, { @@ -8550,7 +8624,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 9.66, + "duration_ms": 13.15, "detail": "" }, { @@ -8563,7 +8637,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.97, + "duration_ms": 20.32, "detail": "" }, { @@ -8576,7 +8650,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.83, + "duration_ms": 5.99, "detail": "" }, { @@ -8589,7 +8663,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 4.3, + "duration_ms": 7.2, "detail": "" }, { @@ -8602,7 +8676,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.11, + "duration_ms": 6.04, "detail": "" }, { @@ -8615,7 +8689,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.27, + "duration_ms": 2.81, "detail": "" }, { @@ -8623,12 +8697,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/domains/{id}", - "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/domains/c1b7f912-08ca-49ab-aefd-c77e1f608574", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.08, + "duration_ms": 2.17, "detail": "" }, { @@ -8641,7 +8715,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.54, + "duration_ms": 3.24, "detail": "" }, { @@ -8654,7 +8728,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 4.46, + "duration_ms": 7.41, "detail": "" }, { @@ -8662,12 +8736,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1106", + "path_resolved": "/ovirt-engine/api/events/49", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.62, + "duration_ms": 6.95, "detail": "" }, { @@ -8675,12 +8749,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1106", + "path_resolved": "/ovirt-engine/api/events/49", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.88, + "duration_ms": 7.24, "detail": "" }, { @@ -8688,12 +8762,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1106", + "path_resolved": "/ovirt-engine/api/events/3fb4a326-c669-4b59-baa1-93a3b64fa554", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 3.47, + "duration_ms": 5.51, "detail": "" }, { @@ -8706,7 +8780,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.32, + "duration_ms": 7.31, "detail": "" }, { @@ -8719,7 +8793,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.66, + "duration_ms": 8.77, "detail": "" }, { @@ -8732,7 +8806,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.04, + "duration_ms": 7.56, "detail": "" }, { @@ -8740,12 +8814,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/217a5b7b-5cca-45b9-acfb-57d433fbb441", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.3, + "duration_ms": 10.39, "detail": "" }, { @@ -8753,12 +8827,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/fce66f20-4cd3-466a-9406-67694fdbe08c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.07, + "duration_ms": 8.66, "detail": "" }, { @@ -8771,7 +8845,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.71, + "duration_ms": 6.75, "detail": "" }, { @@ -8782,9 +8856,9 @@ "path_resolved": "/ovirt-engine/api/hosts", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 7.41, + "duration_ms": 11.88, "detail": "" }, { @@ -8792,12 +8866,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/0b7df6e6-753b-4390-a929-96c349021a40", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.92, + "duration_ms": 6.43, "detail": "" }, { @@ -8805,12 +8879,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/a4153ba8-1441-4330-8905-db4c46278c69", + "path_resolved": "/ovirt-engine/api/hosts/69566420-e76c-4174-ad36-4bc813941f6c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.79, + "duration_ms": 6.15, "detail": "" }, { @@ -8818,12 +8892,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/eb0e056b-17bf-4628-a166-3c188fe3d723", + "path_resolved": "/ovirt-engine/api/hosts/560b687e-66f4-4ee0-9b34-3edd8c9ad1d6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.18, + "duration_ms": 5.79, "detail": "" }, { @@ -8831,12 +8905,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/hosts/fd1d9cd5-dda4-4944-acd9-f61ce5a061ee/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": 5.92, + "duration_ms": 7.56, "detail": "" }, { @@ -8844,12 +8918,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/hosts/9cc8b70b-6497-4122-8278-120b85518919/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.25, + "duration_ms": 8.37, "detail": "" }, { @@ -8857,12 +8931,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/hosts/ffbf881b-6474-40df-ba8c-170101148b79/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": 5.67, + "duration_ms": 7.34, "detail": "" }, { @@ -8870,12 +8944,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/hosts/9750de40-e975-49aa-b5e2-b99c4d32cd07/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.74, + "duration_ms": 8.87, "detail": "" }, { @@ -8883,12 +8957,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/hosts/495bb6d3-cee9-4ab4-a107-7916fa100b38/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": 4.32, + "duration_ms": 9.3, "detail": "" }, { @@ -8896,12 +8970,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/hosts/b79b2c4c-1c07-4324-b36f-50acb66c6bff/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.36, + "duration_ms": 9.93, "detail": "" }, { @@ -8909,12 +8983,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/hosts/2fb7b2c5-5f2d-4076-bf4a-476b3880e9dc/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.72, + "duration_ms": 9.41, "detail": "" }, { @@ -8922,12 +8996,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/hosts/f254eba3-3e16-4736-b713-fb9b0ee37eea/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.47, + "duration_ms": 8.69, "detail": "" }, { @@ -8935,12 +9009,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/hosts/a80a6c6a-b104-43d9-bfb7-91772ca1a667/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.77, + "duration_ms": 8.98, "detail": "" }, { @@ -8948,12 +9022,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/hosts/5a0e25e4-f09b-4ec5-95a5-f1a2aa272929/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": 21.73, + "duration_ms": 8.18, "detail": "" }, { @@ -8966,7 +9040,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.46, + "duration_ms": 6.24, "detail": "" }, { @@ -8979,7 +9053,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 2.84, + "duration_ms": 5.95, "detail": "" }, { @@ -8987,12 +9061,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8", + "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.15, + "duration_ms": 5.91, "detail": "" }, { @@ -9000,12 +9074,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8", + "path_resolved": "/ovirt-engine/api/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 3.96, + "duration_ms": 4.2, "detail": "" }, { @@ -9013,12 +9087,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8", + "path_resolved": "/ovirt-engine/api/jobs/d2bb80eb-cb95-47f7-8c19-1632a84d4f2c", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.14, + "duration_ms": 4.83, "detail": "" }, { @@ -9031,7 +9105,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.33, + "duration_ms": 4.85, "detail": "" }, { @@ -9044,7 +9118,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.2, + "duration_ms": 6.53, "detail": "" }, { @@ -9052,12 +9126,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 5.16, "detail": "" }, { @@ -9065,12 +9139,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "path_resolved": "/ovirt-engine/api/networks/3a3696fe-a744-4b22-827f-90907591ff99", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.23, + "duration_ms": 3.88, "detail": "" }, { @@ -9078,12 +9152,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "path_resolved": "/ovirt-engine/api/networks/5ca86d2a-2083-4ba7-a809-3f1418f2cebf", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.81, + "duration_ms": 5.12, "detail": "" }, { @@ -9096,7 +9170,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.3, + "duration_ms": 3.91, "detail": "" }, { @@ -9109,7 +9183,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.66, + "duration_ms": 2.57, "detail": "" }, { @@ -9122,7 +9196,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.06, + "duration_ms": 3.89, "detail": "" }, { @@ -9135,7 +9209,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 4.78, "detail": "" }, { @@ -9143,12 +9217,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/permissions/{id}", - "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/permissions/de663e4c-25ad-4542-bd70-51de8bca8d78", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 5.33, "detail": "" }, { @@ -9161,7 +9235,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.71, + "duration_ms": 5.14, "detail": "" }, { @@ -9174,7 +9248,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.56, + "duration_ms": 6.91, "detail": "" }, { @@ -9187,7 +9261,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 5.46, "detail": "" }, { @@ -9195,12 +9269,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/5a5d0666-9d56-4e8a-b122-be31fccf7a8f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.0, + "duration_ms": 5.36, "detail": "" }, { @@ -9208,12 +9282,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/3646ee7b-07ea-496a-9501-5167248daf48", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.53, + "duration_ms": 5.46, "detail": "" }, { @@ -9226,7 +9300,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 4.4, "detail": "" }, { @@ -9239,7 +9313,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.15, + "duration_ms": 5.62, "detail": "" }, { @@ -9247,12 +9321,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/bf32efc9-e49f-4feb-afbd-22ab6a480674", + "path_resolved": "/ovirt-engine/api/storageconnections/eec76818-dd29-446e-a77d-52596322b345", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 5.04, "detail": "" }, { @@ -9260,12 +9334,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/bf32efc9-e49f-4feb-afbd-22ab6a480674", + "path_resolved": "/ovirt-engine/api/storageconnections/4ca40c15-648d-4823-ab8a-561b5c9c64d8", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 3.89, "detail": "" }, { @@ -9273,12 +9347,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/bf32efc9-e49f-4feb-afbd-22ab6a480674", + "path_resolved": "/ovirt-engine/api/storageconnections/593f4445-b307-4f74-8caf-f6db6afdc310", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 4.13, "detail": "" }, { @@ -9291,7 +9365,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 5.05, "detail": "" }, { @@ -9304,7 +9378,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.5, + "duration_ms": 8.81, "detail": "" }, { @@ -9317,7 +9391,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 23.47, "detail": "" }, { @@ -9325,12 +9399,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/3c266fee-baa4-45d4-b294-40fd2be17a7a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 8.85, "detail": "" }, { @@ -9338,12 +9412,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/b43988e9-20d2-4897-9356-479b3887eef3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 6.46, "detail": "" }, { @@ -9356,7 +9430,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.01, + "duration_ms": 10.2, "detail": "" }, { @@ -9369,7 +9443,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.47, + "duration_ms": 8.39, "detail": "" }, { @@ -9382,7 +9456,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 4.63, "detail": "" }, { @@ -9395,7 +9469,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.03, + "duration_ms": 5.63, "detail": "" }, { @@ -9408,7 +9482,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 4.59, "detail": "" }, { @@ -9416,12 +9490,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/4ccafa0f-c1ba-4545-bf56-65820cb81fc3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.13, + "duration_ms": 6.28, "detail": "" }, { @@ -9429,12 +9503,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/526e00a8-2175-4465-85a6-02d299f1e3f9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 7.42, "detail": "" }, { @@ -9447,7 +9521,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 6.51, "detail": "" }, { @@ -9460,7 +9534,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.04, + "duration_ms": 6.11, "detail": "" }, { @@ -9473,7 +9547,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.72, "detail": "" }, { @@ -9481,12 +9555,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/8245ef30-86f1-472c-b11e-81a17024d0dd", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 4.55, "detail": "" }, { @@ -9494,12 +9568,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/8ef85dca-4e35-4d0a-a26a-9d7f10133365", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 5.78, "detail": "" }, { @@ -9512,7 +9586,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 4.94, "detail": "" }, { @@ -9525,7 +9599,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.28, + "duration_ms": 3.39, "detail": "" }, { @@ -9538,7 +9612,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 4.39, "detail": "" }, { @@ -9551,7 +9625,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 3.45, "detail": "" }, { @@ -9559,12 +9633,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/users/{id}", - "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/users/ecb038ce-0284-4a02-bf1c-b6877387b060", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 3.29, "detail": "" }, { @@ -9577,7 +9651,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 4.39, "detail": "" }, { @@ -9590,7 +9664,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.91, + "duration_ms": 11.55, "detail": "" }, { @@ -9603,7 +9677,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 5.5, "detail": "" }, { @@ -9611,12 +9685,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/b8f84619-e585-4143-8f14-88dec88b9b06", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.0, + "duration_ms": 5.88, "detail": "" }, { @@ -9624,12 +9698,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/52d9b002-31c8-4789-a791-e07870ad749a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 6.02, "detail": "" }, { @@ -9642,7 +9716,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 4.7, "detail": "" }, { @@ -9653,9 +9727,9 @@ "path_resolved": "/ovirt-engine/api/vms", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.5, + "duration_ms": 9.64, "detail": "" }, { @@ -9663,12 +9737,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/b5524080-2234-4764-a147-345c9d03639d", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 5.24, "detail": "" }, { @@ -9676,12 +9750,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/a575468b-8ec6-470e-acbf-b8fea32966cc", + "path_resolved": "/ovirt-engine/api/vms/44638fcb-5e24-4a19-9c91-60365bf2e7df", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 6.64, "detail": "" }, { @@ -9689,12 +9763,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/f48f8071-1f14-4fc0-9816-f6820a630ab5", + "path_resolved": "/ovirt-engine/api/vms/788b7668-e053-445b-b0e8-1d1967e75438", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 11.95, "detail": "" }, { @@ -9702,12 +9776,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/vms/dacb9050-d7ae-454d-8bf9-5af537836f4e/start", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 12.98, "detail": "" }, { @@ -9715,12 +9789,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/vms/e5768f68-cd2e-402c-aa06-c87ebe89b43e/stop", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.06, + "duration_ms": 8.03, "detail": "" }, { @@ -9728,12 +9802,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/vms/a5a0a747-7a22-4e48-b340-5c476b105e28/shutdown", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.87, + "duration_ms": 7.61, "detail": "" }, { @@ -9741,12 +9815,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/vms/bd1f2271-d694-4084-b442-d70404ecf02d/reboot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.79, + "duration_ms": 7.66, "detail": "" }, { @@ -9754,12 +9828,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/vms/89d6dff5-7612-4428-8511-605a9c8bdca2/suspend", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.64, + "duration_ms": 6.93, "detail": "" }, { @@ -9767,12 +9841,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/vms/114bf6d1-b8d3-4bdc-a3b9-ad4629ef0190/migrate", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 8.09, "detail": "" }, { @@ -9780,12 +9854,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/vms/8b0ab476-d5eb-4b16-baac-7e3df37cb260/cancelmigration", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 7.88, "detail": "" }, { @@ -9793,12 +9867,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/vms/1f6476c1-d523-4a30-9c89-dd5668a6ca45/clone", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.52, + "duration_ms": 14.51, "detail": "" }, { @@ -9806,12 +9880,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/vms/c6f7ea07-7455-432f-85c1-c8d7797c3bd9/detach", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.47, + "duration_ms": 5.66, "detail": "" }, { @@ -9819,12 +9893,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/vms/0eec1c50-aab7-49de-931b-95b24d5ef240/screenthumbnail", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.03, + "duration_ms": 5.9, "detail": "" }, { @@ -9832,12 +9906,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/vms/e39ff127-1e73-4d5b-b748-8e6ae78115c4/ticket", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.53, + "duration_ms": 5.2, "detail": "" }, { @@ -9845,12 +9919,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/vms/5f787649-2505-470f-974a-ea48b5f537bb/preview_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 4.86, "detail": "" }, { @@ -9858,12 +9932,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/vms/6ea01965-778d-4938-abca-64b7ee76cf91/commit_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.12, + "duration_ms": 5.65, "detail": "" }, { @@ -9871,12 +9945,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/vms/3df020f4-2dd4-41fa-bf74-d920460ff94b/undo_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 10.46, "detail": "" }, { @@ -9884,12 +9958,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/vms/4702da59-8a01-43a9-8f48-27d30af6865c/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 9.39, "detail": "" }, { @@ -9897,12 +9971,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/vms/96f5135e-cd40-48b4-a9ba-65a9c83c50b7/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.44, + "duration_ms": 9.45, "detail": "" }, { @@ -9910,12 +9984,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/8cc68e69-ed3f-418b-92e7-f2f0ebdaa6e6/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.13, + "duration_ms": 4.83, "detail": "" }, { @@ -9923,12 +9997,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/eb5cb34a-48f3-4402-9f8e-7f49d40c6820/diskattachments", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.95, + "duration_ms": 11.74, "detail": "" }, { @@ -9936,12 +10010,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/d13d7089-d54b-4b2b-9dd2-b6cbb5165c86/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.56, + "duration_ms": 3.67, "detail": "" }, { @@ -9949,12 +10023,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/de979a72-a883-4788-8498-39f5c7d51d2f/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.43, + "duration_ms": 4.33, "detail": "" }, { @@ -9962,12 +10036,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/12d41218-c176-42b2-b639-84b765afe22f/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.59, + "duration_ms": 4.69, "detail": "" }, { @@ -9975,12 +10049,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/af936ae8-05d2-4c26-bc18-959d7d057d40/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.84, + "duration_ms": 6.24, "detail": "" }, { @@ -9988,12 +10062,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/acd6ab06-6041-4c39-aadd-1f74f1c512d1/nics", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 3.03, + "duration_ms": 10.67, "detail": "" }, { @@ -10001,12 +10075,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/7259c151-c6f6-4e80-a8c1-5859c3e151bd/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.44, + "duration_ms": 8.23, "detail": "" }, { @@ -10014,12 +10088,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/78e0767f-5d0b-495d-ac7d-eac5a795560a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/1eae64aa-5c2c-4d2b-ba77-f9e8c3c5e8ee", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 7.85, "detail": "" }, { @@ -10027,12 +10101,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/166e373c-9965-4d51-b15f-ce163a2881cb/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.56, + "duration_ms": 8.2, "detail": "" }, { @@ -10040,12 +10114,12 @@ "operation_id": "nics.activate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate", - "path_resolved": "/ovirt-engine/api/vms/b95a9edc-fa3b-4c8b-a3dc-afde9f52a5d1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.51, + "duration_ms": 12.69, "detail": "" }, { @@ -10053,12 +10127,12 @@ "operation_id": "nics.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/vms/53d29b0a-18c4-4694-930d-21b07cf88ecc/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.57, + "duration_ms": 12.96, "detail": "" }, { @@ -10066,12 +10140,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/e6d629d8-ba42-4093-bcd3-13055c148944/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.11, + "duration_ms": 12.87, "detail": "" }, { @@ -10079,12 +10153,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/cab5ea3b-2ea4-4792-98d7-d9fe0bbb172a/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.15, + "duration_ms": 11.31, "detail": "" }, { @@ -10092,12 +10166,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/b6955492-12cb-46c9-9fbe-dbbc6f0e3b3d/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.97, + "duration_ms": 8.27, "detail": "" }, { @@ -10105,12 +10179,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/c7631037-3880-486a-9e11-c12d35f2e307/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 2.48, + "duration_ms": 8.92, "detail": "" }, { @@ -10118,12 +10192,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/a5bc1995-fa1c-4047-8733-c8f6f2a7adc6/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.98, + "duration_ms": 8.04, "detail": "" }, { @@ -10131,12 +10205,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/4e37be93-8c55-4a47-a177-6da941dd8fea/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.88, + "duration_ms": 9.44, "detail": "" }, { @@ -10144,12 +10218,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/512a2f78-315b-4295-8cd2-70f1d7f9cca7/snapshots", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 9.99, "detail": "" }, { @@ -10157,12 +10231,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/e1648e52-b329-4812-8a34-471190fa2bda/snapshots/4ff2ccdc-bdbc-4c5a-a1cd-e3f911ac5109", + "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": 1.93, + "duration_ms": 4.31, "detail": "" }, { @@ -10170,12 +10244,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/bd44309f-827d-47c5-9a66-b4a1fa156035/snapshots/a17c85fd-9f2f-4c4a-9887-35e0a9a67ff6", + "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": 1.41, + "duration_ms": 5.78, "detail": "" }, { @@ -10183,12 +10257,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/880a5baa-64cc-4e02-8d8a-e53bb57bf71f/snapshots/25fdec8d-3116-4130-b699-4105294de8d5", + "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": 1.46, + "duration_ms": 9.2, "detail": "" }, { @@ -10196,12 +10270,12 @@ "operation_id": "snapshots.restore", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore", - "path_resolved": "/ovirt-engine/api/vms/8bb566cb-d346-4804-861e-c36dd73026d0/snapshots/2ddefda9-fec8-4401-aa41-a2010f3f59c0/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": 3.0, + "duration_ms": 8.53, "detail": "" }, { @@ -10209,12 +10283,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/779a3817-c752-4cc3-9022-ead4b7bf4336/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.76, + "duration_ms": 6.9, "detail": "" }, { @@ -10222,12 +10296,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/53fd4c94-94dd-4119-b9c9-d269c053d422/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.16, + "duration_ms": 8.22, "detail": "" }, { @@ -10235,12 +10309,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/611d9574-b4ff-46df-bb47-6c5cf5ac6d46/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.32, + "duration_ms": 6.27, "detail": "" }, { @@ -10248,12 +10322,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/a8d1eab0-b6c3-4289-b9a7-1888d1c7f648/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.28, + "duration_ms": 7.45, "detail": "" }, { @@ -10261,12 +10335,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/d70cdc2b-5c23-4f63-a47c-0973e0d4c75b/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.34, + "duration_ms": 6.4, "detail": "" }, { @@ -10274,12 +10348,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/fde71151-405f-45ec-a0b1-14903f6906ef/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": 1.81, + "duration_ms": 10.34, "detail": "" }, { @@ -10287,12 +10361,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/7d69d302-4848-4a03-b1f8-b6e9e9009ed8/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": 1.78, + "duration_ms": 10.53, "detail": "" }, { @@ -10300,12 +10374,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/b578d7bf-d6b3-4aa2-bd92-27b247a2b510/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.35, + "duration_ms": 10.83, "detail": "" }, { @@ -10313,12 +10387,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/89a5b778-1bb5-44f7-adcd-7a6077a927bf/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.43, + "duration_ms": 7.88, "detail": "" }, { @@ -10326,12 +10400,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/ea590a71-b918-49d8-9891-30d8fa9bb0a0/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.21, + "duration_ms": 12.14, "detail": "" }, { @@ -10339,12 +10413,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/94477789-0ed7-4c52-8056-409262db6dbc/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.58, + "duration_ms": 5.83, "detail": "" }, { @@ -10352,12 +10426,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/e19cf6cc-71f9-433c-b436-b5c4b984c935/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.73, + "duration_ms": 7.29, "detail": "" }, { @@ -10365,12 +10439,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/345d1400-ce25-44f5-8030-d658005ecb98/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 5.53, "detail": "" }, { @@ -10378,12 +10452,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/f5ad5846-f442-427d-a169-fa9a7466fc2c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.54, + "duration_ms": 7.7, "detail": "" }, { @@ -10391,12 +10465,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/829c270d-58d5-41bb-8197-6a8a756d461c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.36, + "duration_ms": 9.25, "detail": "" }, { @@ -10404,12 +10478,12 @@ "operation_id": "nics.update", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update", - "path_resolved": "/ovirt-engine/api/hosts/2347e46b-5a6a-4039-990a-4c7041fa0097/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.09, + "duration_ms": 8.15, "detail": "" }, { @@ -10417,12 +10491,12 @@ "operation_id": "nics.attach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach", - "path_resolved": "/ovirt-engine/api/hosts/18ca3413-e864-44c1-8cb1-52164e4fa5e7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.24, + "duration_ms": 11.98, "detail": "" }, { @@ -10430,12 +10504,12 @@ "operation_id": "nics.detach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach", - "path_resolved": "/ovirt-engine/api/hosts/16dfff64-3b5e-4a7a-81ee-f5fe28ff2762/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.08, + "duration_ms": 9.84, "detail": "" }, { @@ -10443,12 +10517,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/a5885c07-3ba8-49ee-976e-ba7f061076c8/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.62, + "duration_ms": 5.55, "detail": "" }, { @@ -10456,12 +10530,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/f8036385-2fac-4840-b178-a580c6acedb2/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.02, + "duration_ms": 5.55, "detail": "" }, { @@ -10469,12 +10543,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/0307c78c-7d80-4461-9c2a-4ea2a2092f75/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.63, + "duration_ms": 7.09, "detail": "" }, { @@ -10482,12 +10556,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/71cfa6d7-a5f9-423d-9c92-7d4444b90433/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 3.76, + "duration_ms": 8.26, "detail": "" }, { @@ -10495,12 +10569,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/f35e2504-a967-4921-9a93-73c27eb9c976/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 5.61, + "duration_ms": 9.66, "detail": "" }, { @@ -10508,12 +10582,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/8df018b9-dfc6-42c1-81cb-a5f228450577/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.52, + "duration_ms": 6.22, "detail": "" }, { @@ -10521,12 +10595,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/d29e180f-d695-424d-a68e-51934a4c2d47/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.66, + "duration_ms": 10.8, "detail": "" }, { @@ -10534,12 +10608,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/e4b4afdd-6874-40a6-9288-8a0cb2deb917/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.88, + "duration_ms": 5.63, "detail": "" }, { @@ -10547,12 +10621,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/7782d237-a957-4555-b9e6-45cdde0c7545/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.77, + "duration_ms": 7.26, "detail": "" }, { @@ -10560,12 +10634,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/82d53667-8e39-4117-8ba8-6b5a070dd67e/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 2.15, + "duration_ms": 8.95, "detail": "" }, { @@ -10573,12 +10647,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/80c5cfc0-f6bf-4f89-b3df-e521b7cf68c6/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.05, + "duration_ms": 6.42, "detail": "" }, { @@ -10586,12 +10660,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/3352b354-a1d6-4ec3-86ae-f47993fe330d/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.81, + "duration_ms": 5.39, "detail": "" }, { @@ -10599,12 +10673,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/3f856963-df9c-46aa-83cf-719bfe36c723/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 3.25, "detail": "" }, { @@ -10612,12 +10686,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/25c6398b-fcfe-4290-8f95-fde9db942d93/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 2.01, + "duration_ms": 4.32, "detail": "" }, { @@ -10625,12 +10699,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/5cd12a95-b340-4d27-85e7-a7ef4f8702c3/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 2.32, + "duration_ms": 3.2, "detail": "" }, { @@ -10641,9 +10715,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.56, + "duration_ms": 3.48, "detail": "" }, { @@ -10654,9 +10728,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 5.04, + "duration_ms": 2.49, "detail": "" }, { @@ -10664,12 +10738,12 @@ "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.94, + "duration_ms": 2.92, "detail": "" }, { @@ -10677,12 +10751,12 @@ "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "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": 1.62, + "duration_ms": 2.74, "detail": "" }, { @@ -10690,12 +10764,12 @@ "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "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": 1.45, + "duration_ms": 5.15, "detail": "" }, { @@ -10708,7 +10782,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 4.92, "detail": "" }, { @@ -10721,7 +10795,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.46, + "duration_ms": 7.56, "detail": "" }, { @@ -10734,7 +10808,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 4.46, "detail": "" }, { @@ -10747,7 +10821,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.64, + "duration_ms": 7.19, "detail": "" }, { @@ -10755,12 +10829,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 3.12, + "duration_ms": 5.39, "detail": "" }, { @@ -10773,7 +10847,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.01, + "duration_ms": 5.66, "detail": "" }, { @@ -10786,7 +10860,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 2.09, + "duration_ms": 5.64, "detail": "" }, { @@ -10797,9 +10871,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.29, + "duration_ms": 9.47, "detail": "" }, { @@ -10807,12 +10881,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 2.0, + "duration_ms": 4.09, "detail": "" }, { @@ -10820,12 +10894,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.7, + "duration_ms": 4.62, "detail": "" }, { @@ -10838,7 +10912,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 5.96, + "duration_ms": 8.04, "detail": "" }, { @@ -10851,7 +10925,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.95, + "duration_ms": 8.25, "detail": "" }, { @@ -10862,9 +10936,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.55, + "duration_ms": 6.43, "detail": "" }, { @@ -10875,9 +10949,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 3.11, + "duration_ms": 5.71, "detail": "" }, { @@ -10888,9 +10962,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.9, + "duration_ms": 4.95, "detail": "" }, { @@ -10898,12 +10972,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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.0, + "duration_ms": 4.74, "detail": "" }, { @@ -10911,12 +10985,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/234c3d99-c9e8-4998-8790-944f60aa6941", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.59, + "duration_ms": 3.96, "detail": "" }, { @@ -10927,9 +11001,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 6.6, + "duration_ms": 4.53, "detail": "" }, { @@ -10940,9 +11014,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 3.59, + "duration_ms": 4.99, "detail": "" }, { @@ -10950,12 +11024,12 @@ "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 3.77, "detail": "" }, { @@ -10963,12 +11037,12 @@ "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "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": 2.62, + "duration_ms": 3.36, "detail": "" }, { @@ -10976,12 +11050,12 @@ "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/b5f156da-30fc-43bd-aacb-dba3b5cda411", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.12, + "duration_ms": 4.55, "detail": "" }, { @@ -10994,7 +11068,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.96, + "duration_ms": 3.42, "detail": "" }, { @@ -11007,7 +11081,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.48, + "duration_ms": 5.38, "detail": "" }, { @@ -11015,12 +11089,12 @@ "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/f6a9063d-1b99-4b90-b7c1-cd9b3a603f1d", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 4.23, "detail": "" }, { @@ -11028,12 +11102,12 @@ "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/f6a9063d-1b99-4b90-b7c1-cd9b3a603f1d", + "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": 2.02, + "duration_ms": 4.04, "detail": "" }, { @@ -11041,12 +11115,12 @@ "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/f6a9063d-1b99-4b90-b7c1-cd9b3a603f1d", + "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": 1.8, + "duration_ms": 3.71, "detail": "" }, { @@ -11059,7 +11133,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 4.48, "detail": "" }, { @@ -11072,7 +11146,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.49, + "duration_ms": 7.21, "detail": "" }, { @@ -11085,7 +11159,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.42, + "duration_ms": 5.39, "detail": "" }, { @@ -11098,7 +11172,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 4.65, "detail": "" }, { @@ -11106,12 +11180,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.49, + "duration_ms": 4.77, "detail": "" }, { @@ -11124,7 +11198,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 5.96, "detail": "" }, { @@ -11137,7 +11211,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.45, + "duration_ms": 8.34, "detail": "" }, { @@ -11150,7 +11224,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 6.25, "detail": "" }, { @@ -11163,7 +11237,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 5.49, "detail": "" }, { @@ -11171,12 +11245,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 2.06, + "duration_ms": 4.26, "detail": "" }, { @@ -11189,7 +11263,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.6, + "duration_ms": 3.75, "detail": "" }, { @@ -11202,7 +11276,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.19, + "duration_ms": 6.07, "detail": "" }, { @@ -11215,7 +11289,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 3.44, "detail": "" }, { @@ -11228,7 +11302,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 5.6, "detail": "" }, { @@ -11236,12 +11310,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.38, + "duration_ms": 5.35, "detail": "" }, { @@ -11254,7 +11328,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 4.7, "detail": "" }, { @@ -11267,7 +11341,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.08, + "duration_ms": 5.9, "detail": "" }, { @@ -11278,9 +11352,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 3.9, "detail": "" }, { @@ -11288,12 +11362,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 5.04, + "duration_ms": 6.48, "detail": "" }, { @@ -11301,12 +11375,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.68, + "duration_ms": 4.91, "detail": "" }, { @@ -11319,7 +11393,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 4.15, "detail": "" }, { @@ -11332,7 +11406,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.31, + "duration_ms": 6.19, "detail": "" }, { @@ -11345,7 +11419,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 4.44, "detail": "" }, { @@ -11358,7 +11432,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 5.32, "detail": "" }, { @@ -11366,12 +11440,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 1.33, + "duration_ms": 6.63, "detail": "" }, { @@ -11379,12 +11453,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8/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": 2.46, + "duration_ms": 4.08, "detail": "" }, { @@ -11392,12 +11466,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8/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": 1.88, + "duration_ms": 3.35, "detail": "" }, { @@ -11405,12 +11479,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8/steps/72ec391d-7edd-42a2-8ce7-e9ada05c8d49", + "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": 1.27, + "duration_ms": 2.91, "detail": "" }, { @@ -11418,12 +11492,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8/steps/7f66ab9c-b1bc-4f9f-b136-c7ab4c0a8d2c", + "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": 1.33, + "duration_ms": 3.04, "detail": "" }, { @@ -11431,12 +11505,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8/steps/7da693f5-5c3b-4771-9624-67b3513b4d4e", + "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": 1.18, + "duration_ms": 3.36, "detail": "" }, { @@ -11449,7 +11523,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.4, + "duration_ms": 9.87, "detail": "" }, { @@ -11462,7 +11536,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.16, + "duration_ms": 3.49, "detail": "" }, { @@ -11475,7 +11549,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.4, + "duration_ms": 4.76, "detail": "" }, { @@ -11486,9 +11560,9 @@ "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.38, + "duration_ms": 4.56, "detail": "" }, { @@ -11496,12 +11570,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v3/bookmarks/f1403163-479a-4d4c-8ba1-2d212eb67109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 4.96, "detail": "" }, { @@ -11509,12 +11583,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v3/bookmarks/55de7b0f-4d61-481f-b617-d39e05cfa6b5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 3.93, "detail": "" }, { @@ -11527,7 +11601,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 3.73, "detail": "" }, { @@ -11540,7 +11614,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.98, + "duration_ms": 5.53, "detail": "" }, { @@ -11551,9 +11625,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 3.24, "detail": "" }, { @@ -11561,12 +11635,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/clusters/a935c411-9475-42b1-868d-a2e28fff130c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 4.69, "detail": "" }, { @@ -11574,12 +11648,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/clusters/340ae38c-b4c8-459b-8224-f01989eb7be5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 4.04, "detail": "" }, { @@ -11592,7 +11666,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 5.43, "detail": "" }, { @@ -11605,7 +11679,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.4, + "duration_ms": 5.8, "detail": "" }, { @@ -11618,7 +11692,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.93, + "duration_ms": 10.14, "detail": "" }, { @@ -11631,7 +11705,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 7.02, "detail": "" }, { @@ -11644,7 +11718,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.81, + "duration_ms": 6.13, "detail": "" }, { @@ -11655,9 +11729,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.15, + "duration_ms": 4.18, "detail": "" }, { @@ -11665,12 +11739,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/5a0232a2-2667-4610-a6b2-79550b91f3d7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 6.63, "detail": "" }, { @@ -11678,12 +11752,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/e1888216-9eca-48fd-9c31-12f14188234c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 5.03, "detail": "" }, { @@ -11696,7 +11770,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.98, + "duration_ms": 6.77, "detail": "" }, { @@ -11709,7 +11783,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.62, + "duration_ms": 5.48, "detail": "" }, { @@ -11722,7 +11796,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.74, + "duration_ms": 8.29, "detail": "" }, { @@ -11733,9 +11807,9 @@ "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 4.69, "detail": "" }, { @@ -11743,12 +11817,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/disks/{id}", - "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v3/disks/7a13a9b3-f0d7-4c19-842e-35531ecdde94", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 7.35, "detail": "" }, { @@ -11756,12 +11830,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/disks/{id}", - "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v3/disks/44f659da-efcf-4f70-a2e2-cd5a7233b70e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 10.96, "detail": "" }, { @@ -11774,7 +11848,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.15, + "duration_ms": 13.56, "detail": "" }, { @@ -11787,7 +11861,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.95, + "duration_ms": 14.01, "detail": "" }, { @@ -11800,7 +11874,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.05, + "duration_ms": 15.0, "detail": "" }, { @@ -11813,7 +11887,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.63, + "duration_ms": 10.29, "detail": "" }, { @@ -11826,7 +11900,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.35, + "duration_ms": 6.72, "detail": "" }, { @@ -11839,7 +11913,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 8.32, "detail": "" }, { @@ -11852,7 +11926,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 4.0, "detail": "" }, { @@ -11860,12 +11934,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/domains/{id}", - "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/v3/domains/4177e006-daf0-4e7b-9614-f790e15c5da5", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 4.38, "detail": "" }, { @@ -11878,7 +11952,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 6.16, "detail": "" }, { @@ -11891,7 +11965,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.76, + "duration_ms": 7.1, "detail": "" }, { @@ -11899,12 +11973,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1106", + "path_resolved": "/ovirt-engine/api/v3/events/49", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.58, + "duration_ms": 7.43, "detail": "" }, { @@ -11912,12 +11986,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1106", + "path_resolved": "/ovirt-engine/api/v3/events/49", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 4.02, + "duration_ms": 9.34, "detail": "" }, { @@ -11925,12 +11999,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1106", + "path_resolved": "/ovirt-engine/api/v3/events/0ad5364c-d72f-4310-b087-ba2c21800bb7", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 6.73, "detail": "" }, { @@ -11943,7 +12017,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.82, + "duration_ms": 7.79, "detail": "" }, { @@ -11956,7 +12030,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.41, + "duration_ms": 13.23, "detail": "" }, { @@ -11967,9 +12041,9 @@ "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.84, + "duration_ms": 7.73, "detail": "" }, { @@ -11977,12 +12051,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/groups/{id}", - "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v3/groups/d65eea54-b451-46c7-a040-0d6710ee6a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 8.71, "detail": "" }, { @@ -11990,12 +12064,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/groups/{id}", - "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v3/groups/cd4fe892-eb2a-46e0-8e0f-b83fd6bed419", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 5.3, "detail": "" }, { @@ -12008,7 +12082,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 4.8, "detail": "" }, { @@ -12021,7 +12095,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 4.15, + "duration_ms": 11.58, "detail": "" }, { @@ -12029,12 +12103,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/064bbd7a-bd08-449e-b5bb-2105ae3993a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.92, + "duration_ms": 4.67, "detail": "" }, { @@ -12042,12 +12116,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/3e32896e-2a32-45ed-b3a5-41d0fb782934", + "path_resolved": "/ovirt-engine/api/v3/hosts/93c0b822-29ea-49c2-89a4-601cfe3c8465", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.1, + "duration_ms": 5.98, "detail": "" }, { @@ -12055,12 +12129,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/42b8da68-2e5b-46e2-bcbc-461aad314737", + "path_resolved": "/ovirt-engine/api/v3/hosts/add418f7-8bf4-49c6-94af-5b05317b21b7", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.37, + "duration_ms": 7.33, "detail": "" }, { @@ -12068,12 +12142,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/v3/hosts/93544080-1b9a-4e6f-adaa-75df593e4d08/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": 2.81, + "duration_ms": 9.7, "detail": "" }, { @@ -12081,12 +12155,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/v3/hosts/416c7d42-8492-4d33-bf75-a964e29cb161/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": 2.33, + "duration_ms": 9.79, "detail": "" }, { @@ -12094,12 +12168,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/v3/hosts/6f866a1b-0197-47ea-b12d-8a6326d2476b/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": 3.84, + "duration_ms": 9.99, "detail": "" }, { @@ -12107,12 +12181,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/v3/hosts/2071ee55-08f5-4024-9807-aab2e8cbb9a2/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": 3.33, + "duration_ms": 12.52, "detail": "" }, { @@ -12120,12 +12194,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/v3/hosts/95e7b797-514c-4786-be72-12c43b8bcdf8/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": 2.35, + "duration_ms": 9.57, "detail": "" }, { @@ -12133,12 +12207,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/v3/hosts/78e6c213-978c-4cf6-91d3-bd72addd57c2/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.28, + "duration_ms": 7.27, "detail": "" }, { @@ -12146,12 +12220,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/v3/hosts/056465f1-0cc1-4934-b1b1-13980f11c787/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.18, + "duration_ms": 6.82, "detail": "" }, { @@ -12159,12 +12233,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/v3/hosts/e39100d4-7a49-4b02-ae8f-b49097b38381/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.27, + "duration_ms": 7.04, "detail": "" }, { @@ -12172,12 +12246,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/v3/hosts/d7bd1564-d600-4258-93c8-0dc47fd93b36/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": 4.17, + "duration_ms": 24.43, "detail": "" }, { @@ -12185,12 +12259,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/v3/hosts/b06f89b3-7e13-4ff0-a986-bd075bc0be43/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.7, + "duration_ms": 10.43, "detail": "" }, { @@ -12203,7 +12277,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.26, + "duration_ms": 7.14, "detail": "" }, { @@ -12216,7 +12290,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.26, + "duration_ms": 4.11, "detail": "" }, { @@ -12224,12 +12298,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8", + "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 4.61, "detail": "" }, { @@ -12237,12 +12311,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8", + "path_resolved": "/ovirt-engine/api/v3/jobs/7d2785c3-bf9a-4c0e-a55e-9004abe913af", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 7.85, "detail": "" }, { @@ -12250,12 +12324,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8", + "path_resolved": "/ovirt-engine/api/v3/jobs/bbc91f77-cadd-4154-8e9f-ea1e2969c254", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 5.71, "detail": "" }, { @@ -12268,3783 +12342,91 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, - "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": 2.0, - "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.57, - "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.18, - "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.25, - "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": 1.68, - "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": 1.58, - "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": 6.43, - "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": 1.9, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.39, - "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": 1.73, - "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": 2.07, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.76, - "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/f1402964-b206-54ba-ad9a-3e521a89bca6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.28, - "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/f1402964-b206-54ba-ad9a-3e521a89bca6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.53, - "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": 2.66, - "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": 3.38, - "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/bf32efc9-e49f-4feb-afbd-22ab6a480674", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.13, - "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/bf32efc9-e49f-4feb-afbd-22ab6a480674", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.33, - "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/bf32efc9-e49f-4feb-afbd-22ab6a480674", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.24, - "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": 1.28, - "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": 1.92, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.31, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.33, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.16, - "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": 2.82, - "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": 3.98, - "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": 1.62, - "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": 2.3, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.42, - "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/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 8.49, - "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/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 5.46, - "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": 3.53, - "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": 9.6, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.8, - "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/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.95, - "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/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.62, - "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": 3.38, - "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": 3.92, - "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": 2.64, - "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.39, - "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/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.16, - "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": 2.91, - "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.26, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.29, - "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/2a487b4f-379b-5895-9ba3-0cd9aec1d566", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.62, - "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/2a487b4f-379b-5895-9ba3-0cd9aec1d566", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.11, - "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": 2.44, - "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": 4.8, - "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/1ef68350-2be3-4039-8717-78748a2ac727", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.05, - "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/0a9192ec-5a28-40a1-ac8c-fd8f043c3229", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.64, - "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/af39f70d-8a6c-4798-a5c6-b2b7f24fa3b1", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.69, - "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/64903202-39ca-4310-80e3-861f10aaddbf/start", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.01, - "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/4f2c6bfe-291c-465d-9333-bb2869ca6c5f/stop", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.34, - "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/85e76674-3f9d-41a3-8547-b5a70db961da/shutdown", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.66, - "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/073e2a06-31bf-4afa-a9be-8a8a0855b294/reboot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.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/33a58d4a-3086-48df-809c-2bcecf527ba7/suspend", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.45, - "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/1de8e129-3728-4fae-95e9-fd893127561a/migrate", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.69, - "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/58a00251-7579-4f1f-97e3-b349305a3365/cancelmigration", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.67, - "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/ba723a7e-e2a8-4a9a-b8b3-0567230efff2/clone", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 3.03, - "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/5840764f-e4d8-4db9-9a5b-8b778636b703/detach", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.14, - "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/49d31717-4e5d-455d-94ab-d7a7b17e587d/screenthumbnail", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.76, - "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/eeb372f8-ddb6-4e85-84a8-75a5a5b83888/ticket", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.14, - "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/cb989ddc-0062-4926-bfd6-6904c256c5d6/preview_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.66, - "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/f2c23541-dbf7-4131-81b6-7a220f8f9961/commit_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 4.26, - "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/6fd58c2c-e18e-4935-8ce0-6930af481335/undo_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.32, - "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/b9ecef66-ef49-4a55-878e-e2baa3e8958f/freeze_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.61, - "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/ba4f8b51-4650-4401-85e7-8feeb950d6d6/thaw_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.62, - "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/412ac782-b8ae-4edf-a0b0-b5856561dd41/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.0, - "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/35e66628-ec8e-4bc8-9ae6-afc69da3a468/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 3.5, - "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/92876cf0-5be6-4330-949e-1e02f9a22a4f/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.61, - "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/3f8687ec-a505-49aa-9a6c-f197be9c7dbc/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.85, - "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/accd92c8-96eb-4c80-9fe8-85337a8cc7d6/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.55, - "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/aa1c97c3-e989-42dc-b11e-18e2a541b735/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.62, - "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/0c8e0b30-2676-4419-a63d-06213e529a96/nics", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 2.19, - "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/df921d8f-3358-4eda-adc9-5e60a4b95845/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.38, - "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/fd457e30-faa7-4d1c-aeb6-0bac50665d16/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.7, - "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/a0000ae4-cf68-48bd-857d-64e54f705661/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.65, - "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/e228499c-1189-403c-ba4e-d6eca53168d0/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.99, - "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/034de0e6-78a8-4779-a1ce-e372ad9a714c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 4.14, - "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/bf95cb72-b14d-416c-a4ec-1c7d1305c956/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.14, - "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/f08c6f3b-f637-456d-ae3b-eb5a1b2caacd/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.48, - "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/263b683c-b996-4734-87a2-359d2d22e195/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.57, - "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/c3fbc0a6-2aef-4033-ac53-0698ed5a830a/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.78, - "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/db86a19b-d1c6-4966-b458-05be98d59f27/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.41, - "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/2696d7f7-1c02-4ecc-8ef1-a334d33c824e/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.44, - "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/f28e3089-5d02-4dd0-896f-bc463f470fbe/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 1.5, - "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/a1ce352e-29b8-425b-b322-bf0630407e4f/snapshots/b1d5f042-e1fc-4fc3-8561-e6aed47c2172", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.67, - "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/7ac36d2e-75b7-4f70-a248-7f0a99b157de/snapshots/445e08a8-1e7e-47d2-8df1-43823df29e7d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.38, - "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/955b9f43-bd6f-455f-a5e7-ca8b6377a1fe/snapshots/97f4434c-36c9-48a8-a122-201318be4702", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.56, - "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/5f990a8b-df49-4ca3-a83c-2f31a58887e2/snapshots/ce60d606-91e7-4d01-abc0-9a6d78204b02/restore", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.35, - "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/3dad49d1-0c07-49e4-b80a-6bd03eee9cc9/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.54, - "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/9c5334ad-123e-4103-8513-0fc7e2ff047b/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.96, - "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/8299c2f1-2579-4f8a-89a7-3b614f4fe56e/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.27, - "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/743a9560-d3fa-4b28-8bc3-710b36005181/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.32, - "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/5ebb1a69-7f5c-40af-a353-6104489bcb8d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.2, - "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/4c4234ec-cd67-4a39-9445-cf752c4da7de/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.55, - "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/a10e57b4-9349-4b50-8c00-6d91a6116a8b/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.9, - "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/f4ea7331-53d1-43a2-87c9-a2237f984a64/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.3, - "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/30f47f93-c911-4184-9798-0385a832855c/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.72, - "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/b01dade4-ac1b-4757-ac9e-2dd1b790aaeb/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.41, - "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/6089f1b5-b466-452d-bbf8-b3447c1f8a38/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.49, - "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/8e3b2be0-6c0b-4c02-8a0e-906163301071/nics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.81, - "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/6b73a78a-6609-406d-b999-04267329b02a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.35, - "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/37acc0b6-0601-4f00-935c-fea371c3a24b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.56, - "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/f2973421-87b0-4c1a-9f21-cb8220d5e3b4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.33, - "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/dfc2a7dd-0283-4ae0-ae13-5b6c3fceb130/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.0, - "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/89aa24ef-690a-493c-bebe-8e4b8f833bf7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 1.91, - "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/aa2e09ba-4cda-4ee7-a02e-daa757932cb7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 1.91, - "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/115bcebc-bb40-4fe1-9163-92afa4455ef5/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.58, - "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/ad8e2cb4-5cce-4fef-9871-b54d8e9ba940/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.59, - "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/f630add4-c4bf-4a95-b593-8b55fe49ecf1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.89, - "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/747c5c9d-ed6d-4e41-845d-bee51336b9f3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.41, - "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/fc46a1a7-5a48-4c17-aff2-d97ffcf5b595/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.42, - "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/b351113f-56ff-453d-bdc8-92af53a82111/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.35, - "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/0ba4a2db-7acb-47ab-a860-46ac3fc4bd2d/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.56, - "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/73a3814d-5230-404d-95b7-f5bcb6f5246a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.21, - "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/55657179-883d-4eb8-a506-f5862c6dc3a7/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.28, - "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/ebaedecb-3afb-441d-a3af-221d9ca629b4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.17, - "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/acc97d35-f6df-47ca-8871-1e2419bb8e5c/statistics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.2, - "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/e0662d37-a5c7-4c48-9e36-4068e9a623c8/statistics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.74, - "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/3b16cd3d-02a8-4c93-84a3-11d0f2d9a441/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.32, - "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/5370a3fa-156a-4e13-b213-a25be17e9168/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.7, - "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/1be8dd50-0298-4c5f-a57f-3700c3f578c1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.28, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.36, - "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": 200, - "expected_hint": 201, - "duration_ms": 1.96, - "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.21, - "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.15, - "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.12, - "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": 1.31, - "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": 2.02, - "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": 1.32, - "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": 1.24, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.14, - "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": 1.39, - "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": 1.12, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.33, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.12, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.21, - "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": 2.1, - "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": 1.78, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.25, - "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": 404, - "expected_hint": 201, - "duration_ms": 1.17, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.7, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.11, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.05, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.11, - "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": 404, - "expected_hint": 201, - "duration_ms": 1.59, - "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.08, - "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.06, - "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.2, - "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": 1.38, - "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": 1.6, - "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/f6a9063d-1b99-4b90-b7c1-cd9b3a603f1d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.18, - "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/f6a9063d-1b99-4b90-b7c1-cd9b3a603f1d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.16, - "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/f6a9063d-1b99-4b90-b7c1-cd9b3a603f1d", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.07, - "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": 1.39, - "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": 1.42, - "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": 1.16, - "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": 1.23, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.19, - "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": 1.18, - "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": 1.73, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.21, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.31, - "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/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.15, - "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": 1.17, - "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": 1.79, - "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": 1.19, - "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": 1.44, - "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.13, - "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": 1.27, - "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": 1.86, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.3, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.25, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.74, - "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": 1.33, - "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": 2.15, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.24, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.25, - "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/8c25e806-ce4d-573e-bc31-ed83976beb77", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.16, - "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/80dd6936-5fe4-49f0-b235-94b44988c1b8/steps", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.29, - "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/80dd6936-5fe4-49f0-b235-94b44988c1b8/steps", - "kind": "collection", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.07, - "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/80dd6936-5fe4-49f0-b235-94b44988c1b8/steps/a010f8b6-3175-44f7-8546-8e675d4bcb6f", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.02, - "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/80dd6936-5fe4-49f0-b235-94b44988c1b8/steps/7c7becae-fa5a-44b5-b510-ff707e73f969", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.18, - "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/80dd6936-5fe4-49f0-b235-94b44988c1b8/steps/46c309b5-2f61-4b3b-88e6-c7f80c5453c5", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.13, - "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": 2.5, - "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": 1.47, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.44, - "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": 1.45, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.29, - "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": 1.41, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.36, - "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": 1.38, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.37, - "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": 1.4, - "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": 1.42, - "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": 1.4, - "detail": "" - }, - { - "series": "3.1", - "operation_id": "head.events.get", - "method": "HEAD", - "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1106", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.52, - "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": 1.51, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.46, - "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": 1.47, - "detail": "" - }, - { - "series": "3.1", - "operation_id": "head.hosts.get", - "method": "HEAD", - "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/4d901ccf-e4ba-4b53-8f1e-a0778cfd38be", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.27, - "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": 2.86, - "detail": "" - }, - { - "series": "3.1", - "operation_id": "head.jobs.get", - "method": "HEAD", - "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.44, - "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": 1.41, - "detail": "" - }, - { - "series": "3.1", - "operation_id": "head.networks.get", - "method": "HEAD", - "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.43, - "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": 1.6, - "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": 1.54, - "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": 1.42, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.4, - "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": 1.4, - "detail": "" - }, - { - "series": "3.1", - "operation_id": "head.storageconnections.get", - "method": "HEAD", - "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/bf32efc9-e49f-4feb-afbd-22ab6a480674", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.41, - "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": 1.9, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.43, - "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": 1.33, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.27, - "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": 1.2, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.3, - "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": 1.29, - "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": 1.29, - "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": 1.33, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.81, - "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": 1.32, - "detail": "" - }, - { - "series": "3.1", - "operation_id": "head.vms.get", - "method": "HEAD", - "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/bdcddfc3-c5db-49cb-98ae-cc197e9b18ca", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.21, - "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/024ecbec-9aed-4713-9142-308bd9daf941/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.38, - "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/310ece68-a859-43d4-9a48-781524e95feb/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.35, - "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/8217f887-a6e6-4969-b99c-1e80789b7e9b/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.36, - "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/6023d121-980c-45ab-b743-9de0a6493033/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.19, - "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/cb97630f-9510-4b50-953e-d391e39bad54/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.31, - "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/5ed1ad03-211f-469e-8c0b-be581d5233a7/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.38, - "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/ae561071-7d74-4391-bc52-4cb942799282/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.3, - "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/e68746b6-0dd1-4ad7-a9e6-e72e6d848b2e/snapshots/8618a292-4b2a-4beb-8933-2cc4e08c5a5d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.19, - "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/770dca5f-883b-4cec-9b06-32624d3e9bc8/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.33, - "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/f3fb0c98-99f3-4981-87eb-225976567e2a/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.61, - "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/9b226e0f-3e82-4ac3-ba7e-c153ed5533a9/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.49, - "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/9391fd24-e2f0-4bf3-9a72-4a8a07856923/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.37, - "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/071dbc21-7281-4536-9c20-1d3f31266067/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.37, - "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/e1953497-370c-4be5-8de3-256134ddccca/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.33, - "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/14204cbb-69d8-4cd9-a519-d51c267f57b8/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.41, - "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/1f2b83d2-9e15-4e70-be86-317e30d3958e/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.38, - "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/cf5e6fa1-6d85-4791-8c7e-5bf67fd6a5e3/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.4, - "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/5c4e2228-00c5-4fc9-8284-a13771e545c0/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.4, - "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/64d5d806-6b71-459a-b3f9-a4f0ea35540b/statistics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.41, - "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/651a6ce0-24a2-4efb-9cc0-85dbcfa10f1a/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.4, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.22, - "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.23, - "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": 1.31, - "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": 1.62, - "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": 1.64, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.05, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.36, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.53, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.04, - "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.21, - "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": 1.76, - "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/f6a9063d-1b99-4b90-b7c1-cd9b3a603f1d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.87, - "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": 2.25, - "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": 1.92, - "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": 1.66, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.56, - "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": 5.56, - "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": 3.35, - "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": 3.12, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.01, - "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": 2.12, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.66, - "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/80dd6936-5fe4-49f0-b235-94b44988c1b8/steps", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.78, - "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/80dd6936-5fe4-49f0-b235-94b44988c1b8/steps/5e2738f1-ac22-4f01-a2da-45ec747df243", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.94, - "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": 2.51, - "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": 2.19, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.25, - "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": 2.3, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.77, - "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": 2.69, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.65, - "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": 2.71, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.37, - "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": 2.8, - "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": 4.64, - "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": 3.24, - "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/1106", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 5.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": 3.11, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.32, - "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": 5.03, - "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/de13af60-6a1a-401c-a10f-f4da6661a8e8", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.11, - "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": 4.49, "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/80dd6936-5fe4-49f0-b235-94b44988c1b8", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 5.85, - "detail": "" - }, - { - "series": "3.1", - "operation_id": "head.networks.list", - "method": "HEAD", + "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": 200, - "expected_hint": 200, - "duration_ms": 20.04, + "http_status": 201, + "expected_hint": 201, + "duration_ms": 7.15, "detail": "" }, { "series": "3.1", - "operation_id": "head.networks.get", - "method": "HEAD", + "operation_id": "networks.get", + "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 6.74, + "duration_ms": 3.72, "detail": "" }, { "series": "3.1", - "operation_id": "head.permissions.list", - "method": "HEAD", + "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": 7.52, + "duration_ms": 9.79, "detail": "" }, { "series": "3.1", - "operation_id": "head.permissions.get", - "method": "HEAD", + "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", @@ -16054,6 +12436,3698 @@ "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", @@ -16064,7 +16138,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.56, + "duration_ms": 21.24, "detail": "" }, { @@ -16075,9 +16149,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 6.14, + "duration_ms": 15.66, "detail": "" }, { @@ -16090,7 +16164,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.72, + "duration_ms": 15.62, "detail": "" }, { @@ -16098,12 +16172,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/bf32efc9-e49f-4feb-afbd-22ab6a480674", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/eec76818-dd29-446e-a77d-52596322b345", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.42, + "duration_ms": 15.54, "detail": "" }, { @@ -16116,7 +16190,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.06, + "duration_ms": 11.53, "detail": "" }, { @@ -16127,9 +16201,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.64, + "duration_ms": 15.19, "detail": "" }, { @@ -16142,7 +16216,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.66, + "duration_ms": 8.15, "detail": "" }, { @@ -16153,9 +16227,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.82, + "duration_ms": 9.05, "detail": "" }, { @@ -16168,7 +16242,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.7, + "duration_ms": 13.52, "detail": "" }, { @@ -16179,9 +16253,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.16, + "duration_ms": 13.29, "detail": "" }, { @@ -16194,7 +16268,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.26, + "duration_ms": 13.49, "detail": "" }, { @@ -16207,7 +16281,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.27, + "duration_ms": 10.67, "detail": "" }, { @@ -16220,7 +16294,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.71, + "duration_ms": 7.54, "detail": "" }, { @@ -16231,9 +16305,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.64, + "duration_ms": 10.95, "detail": "" }, { @@ -16246,7 +16320,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.92, + "duration_ms": 7.99, "detail": "" }, { @@ -16254,12 +16328,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/ace52184-60e2-4c8c-8ff7-947d51446709", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.83, + "duration_ms": 14.92, "detail": "" }, { @@ -16267,12 +16341,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/73fc25f8-369f-458e-8001-55b050a226ce/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.81, + "duration_ms": 19.88, "detail": "" }, { @@ -16280,12 +16354,12 @@ "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/ecd5933e-8d27-4703-8e01-2f621cf41601/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.68, + "duration_ms": 14.3, "detail": "" }, { @@ -16293,12 +16367,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/1a67e572-7101-4d7f-9bfe-03d940c0c450/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": 3.37, + "duration_ms": 19.49, "detail": "" }, { @@ -16306,12 +16380,12 @@ "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/82e10aeb-0260-458f-9046-885e6217792f/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 8.19, + "duration_ms": 10.94, "detail": "" }, { @@ -16319,12 +16393,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/e4dc17fe-5ced-47f9-9d58-aed5a9deaa52/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": 19.35, + "duration_ms": 11.26, "detail": "" }, { @@ -16332,12 +16406,12 @@ "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/d90a2431-3874-420d-9de1-23ab805ced95/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 7.1, + "duration_ms": 10.34, "detail": "" }, { @@ -16345,12 +16419,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/58c61339-376c-4f4e-8577-74e297b21f67/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": 4.41, + "duration_ms": 9.83, "detail": "" }, { @@ -16358,12 +16432,12 @@ "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/d9ed9e27-c0a1-4b42-b33c-35268dd32371/snapshots/dec360d3-b512-4671-94a7-00dcc1b6505e", + "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": 3.78, + "duration_ms": 7.98, "detail": "" }, { @@ -16371,12 +16445,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/5475f7b0-afc7-4239-96c3-565272be6c55/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.39, + "duration_ms": 9.8, "detail": "" }, { @@ -16384,12 +16458,12 @@ "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/e701a1b1-e776-4fc1-8067-c999b4f90274/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.41, + "duration_ms": 8.78, "detail": "" }, { @@ -16397,12 +16471,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/25407a8e-7325-463a-b4c6-b8b604bbc070/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.06, + "duration_ms": 8.94, "detail": "" }, { @@ -16410,12 +16484,12 @@ "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/74064d28-cca9-4a51-a065-0ab17bb19493/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.38, + "duration_ms": 7.91, "detail": "" }, { @@ -16423,12 +16497,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/c9a10183-2bd5-4d66-a86a-931c377205b9/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.81, + "duration_ms": 7.73, "detail": "" }, { @@ -16436,12 +16510,12 @@ "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/c6cc4baf-aa1a-457e-87c8-e95aea2a2e42/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.83, + "duration_ms": 12.46, "detail": "" }, { @@ -16449,12 +16523,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/887575e1-83a6-4829-a49c-f9c59dc57397/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": 4.94, + "duration_ms": 12.46, "detail": "" }, { @@ -16462,12 +16536,12 @@ "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/ba82bc18-f090-4cdd-a9cf-8ae8fed0db27/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.21, + "duration_ms": 9.12, "detail": "" }, { @@ -16475,12 +16549,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/83599027-ba7d-474e-ba44-6d7c4335e5aa/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.42, + "duration_ms": 8.54, "detail": "" }, { @@ -16488,12 +16562,12 @@ "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/6ecfabd9-f5d1-4d5f-96d8-cf6a4c3f0836/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.43, + "duration_ms": 9.82, "detail": "" }, { @@ -16501,12 +16575,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/6338a624-f67d-42e9-bbe7-476ab4bd0571/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.56, + "duration_ms": 9.35, "detail": "" }, { @@ -16514,12 +16588,12 @@ "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/8bee9b0d-50f5-46e3-b77c-e5eb841269e2/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.08, + "duration_ms": 11.04, "detail": "" }, { @@ -16530,9 +16604,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 70.02, + "duration_ms": 7.34, "detail": "" }, { @@ -16540,12 +16614,12 @@ "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.51, + "duration_ms": 10.74, "detail": "" }, { @@ -16558,7 +16632,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.54, + "duration_ms": 12.57, "detail": "" }, { @@ -16571,7 +16645,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.28, + "duration_ms": 8.84, "detail": "" }, { @@ -16584,7 +16658,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.32, + "duration_ms": 8.9, "detail": "" }, { @@ -16595,9 +16669,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.23, + "duration_ms": 10.15, "detail": "" }, { @@ -16608,9 +16682,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.49, + "duration_ms": 8.85, "detail": "" }, { @@ -16621,9 +16695,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.65, + "duration_ms": 20.16, "detail": "" }, { @@ -16634,9 +16708,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.22, + "duration_ms": 11.53, "detail": "" }, { @@ -16644,12 +16718,12 @@ "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/a3f6cc02-8b31-4021-82c8-a3c00d9bac3e", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.15, + "duration_ms": 16.44, "detail": "" }, { @@ -16662,7 +16736,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.01, + "duration_ms": 12.37, "detail": "" }, { @@ -16670,12 +16744,12 @@ "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/f6a9063d-1b99-4b90-b7c1-cd9b3a603f1d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.49, + "duration_ms": 9.64, "detail": "" }, { @@ -16688,7 +16762,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.46, + "duration_ms": 8.64, "detail": "" }, { @@ -16701,7 +16775,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.43, + "duration_ms": 9.69, "detail": "" }, { @@ -16714,7 +16788,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.05, + "duration_ms": 20.3, "detail": "" }, { @@ -16725,9 +16799,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.34, + "duration_ms": 11.86, "detail": "" }, { @@ -16740,7 +16814,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.25, + "duration_ms": 8.62, "detail": "" }, { @@ -16753,7 +16827,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 3.32, + "duration_ms": 5.67, "detail": "" }, { @@ -16766,7 +16840,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.27, + "duration_ms": 49.87, "detail": "" }, { @@ -16777,9 +16851,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 6.62, "detail": "" }, { @@ -16792,7 +16866,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.14, + "duration_ms": 8.69, "detail": "" }, { @@ -16803,9 +16877,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.45, + "duration_ms": 11.57, "detail": "" }, { @@ -16813,12 +16887,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/80dd6936-5fe4-49f0-b235-94b44988c1b8/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": 2.83, + "duration_ms": 9.72, "detail": "" }, { @@ -16826,12 +16900,12 @@ "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/80dd6936-5fe4-49f0-b235-94b44988c1b8/steps/ec08acf8-299d-4c05-8a4a-48dfe708aeb5", + "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": 2.15, + "duration_ms": 11.34, "detail": "" }, { @@ -16844,7 +16918,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.44, + "duration_ms": 14.62, "detail": "" }, { @@ -16857,7 +16931,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 5.9, "detail": "" }, { @@ -16870,7 +16944,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.79, + "duration_ms": 5.51, "detail": "" }, { @@ -16883,7 +16957,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 4.61, "detail": "" }, { @@ -16891,12 +16965,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/bccc9838-ae21-475c-ba44-0ae6af403c1e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 13.26, "detail": "" }, { @@ -16904,12 +16978,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/86b28660-cacf-46d9-878b-63a1d65f8624", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 25.9, "detail": "" }, { @@ -16922,7 +16996,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 19.59, "detail": "" }, { @@ -16935,7 +17009,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.04, + "duration_ms": 31.18, "detail": "" }, { @@ -16948,7 +17022,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.61, + "duration_ms": 17.05, "detail": "" }, { @@ -16956,12 +17030,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/f92d4914-4eb8-4ba4-990d-e9317a0c88e0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.76, + "duration_ms": 9.9, "detail": "" }, { @@ -16969,12 +17043,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/508daa28-00e0-4db7-982b-7236b04653d3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.62, + "duration_ms": 10.46, "detail": "" }, { @@ -16987,7 +17061,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.34, + "duration_ms": 19.06, "detail": "" }, { @@ -17000,7 +17074,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.26, + "duration_ms": 19.3, "detail": "" }, { @@ -17013,7 +17087,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.06, + "duration_ms": 15.14, "detail": "" }, { @@ -17026,7 +17100,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 6.07, "detail": "" }, { @@ -17039,7 +17113,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.95, + "duration_ms": 13.73, "detail": "" }, { @@ -17052,7 +17126,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 12.06, "detail": "" }, { @@ -17060,12 +17134,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/d161d293-3f72-4df6-861f-4abb30cec959", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 30.06, "detail": "" }, { @@ -17073,12 +17147,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/e969fc2b-6713-4f57-81b1-b08763873462", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 11.92, "detail": "" }, { @@ -17091,7 +17165,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.17, + "duration_ms": 11.3, "detail": "" }, { @@ -17104,7 +17178,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 12.58, "detail": "" }, { @@ -17117,7 +17191,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.02, + "duration_ms": 16.94, "detail": "" }, { @@ -17130,7 +17204,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.57, + "duration_ms": 6.95, "detail": "" }, { @@ -17138,12 +17212,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/507e2369-589a-4366-8175-cd0fe0768516", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.75, + "duration_ms": 8.25, "detail": "" }, { @@ -17151,12 +17225,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/6685ff05-85b3-4d7c-b509-08af5d516a67", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.52, + "duration_ms": 6.25, "detail": "" }, { @@ -17169,7 +17243,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 12.99, + "duration_ms": 19.2, "detail": "" }, { @@ -17182,7 +17256,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 17.24, + "duration_ms": 31.35, "detail": "" }, { @@ -17195,7 +17269,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 6.95, + "duration_ms": 29.79, "detail": "" }, { @@ -17208,7 +17282,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 6.7, + "duration_ms": 14.8, "detail": "" }, { @@ -17221,7 +17295,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.25, + "duration_ms": 10.3, "detail": "" }, { @@ -17234,7 +17308,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 2.96, + "duration_ms": 8.21, "detail": "" }, { @@ -17247,7 +17321,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.8, + "duration_ms": 10.95, "detail": "" }, { @@ -17260,7 +17334,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.05, + "duration_ms": 9.67, "detail": "" }, { @@ -17268,12 +17342,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/domains/{id}", - "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/domains/80ce52c6-ecb6-47da-a208-b1b61ced3470", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 11.56, "detail": "" }, { @@ -17286,7 +17360,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 13.29, "detail": "" }, { @@ -17299,7 +17373,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.44, + "duration_ms": 6.42, "detail": "" }, { @@ -17307,12 +17381,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1107", + "path_resolved": "/ovirt-engine/api/events/50", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.95, + "duration_ms": 4.77, "detail": "" }, { @@ -17320,12 +17394,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1107", + "path_resolved": "/ovirt-engine/api/events/50", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 3.23, "detail": "" }, { @@ -17333,12 +17407,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1107", + "path_resolved": "/ovirt-engine/api/events/f8394eaa-8eed-4786-a5f3-dc423468d9fb", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 8.35, "detail": "" }, { @@ -17351,7 +17425,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.88, + "duration_ms": 9.04, "detail": "" }, { @@ -17364,7 +17438,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.66, + "duration_ms": 9.25, "detail": "" }, { @@ -17377,7 +17451,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 20.88, "detail": "" }, { @@ -17385,12 +17459,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/d0249f1e-036d-4eb1-a7e3-74322ff9f1c6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 9.61, "detail": "" }, { @@ -17398,12 +17472,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/cb38392f-f8b3-4acb-a7cd-0f672f11192d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 7.59, "detail": "" }, { @@ -17416,7 +17490,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 7.48, "detail": "" }, { @@ -17427,9 +17501,9 @@ "path_resolved": "/ovirt-engine/api/hosts", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.99, + "duration_ms": 17.97, "detail": "" }, { @@ -17437,12 +17511,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/7c896215-fa16-434d-902d-454c4ce8365f", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 12.82, "detail": "" }, { @@ -17450,12 +17524,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/d4862bc6-6acf-42da-a11f-57594489e489", + "path_resolved": "/ovirt-engine/api/hosts/727149dd-88a4-4d39-b369-ad7635a30a7a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 16.2, "detail": "" }, { @@ -17463,12 +17537,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/57ed5611-8195-449a-b66a-25821aea16d1", + "path_resolved": "/ovirt-engine/api/hosts/413092ac-7909-4749-9fa0-2b828126eeef", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 34.23, "detail": "" }, { @@ -17476,12 +17550,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/hosts/0fe5e806-01fc-4ac5-9ea5-86084fb91d66/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": 2.69, + "duration_ms": 52.25, "detail": "" }, { @@ -17489,12 +17563,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/hosts/c2a33bdc-ba67-4bcd-aa9d-645060230f90/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.37, + "duration_ms": 27.79, "detail": "" }, { @@ -17502,12 +17576,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/hosts/5ca09fdf-6de1-4624-805c-3ede86c14868/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.33, + "duration_ms": 17.74, "detail": "" }, { @@ -17515,12 +17589,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/hosts/42089abf-55e2-4415-9130-4ca432cb66bb/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.99, + "duration_ms": 12.86, "detail": "" }, { @@ -17528,12 +17602,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/hosts/0a13d43e-bc2e-4633-961b-8798bb8ec012/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.41, + "duration_ms": 11.51, "detail": "" }, { @@ -17541,12 +17615,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/hosts/eac0109a-a4f0-46fd-9516-d2d95789ac80/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": 2.32, + "duration_ms": 10.18, "detail": "" }, { @@ -17554,12 +17628,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/hosts/3fe28414-5d76-4c3a-829d-a73acfb184ae/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.41, + "duration_ms": 13.21, "detail": "" }, { @@ -17567,12 +17641,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/hosts/77f9bbed-1bd4-4797-826a-cdeee0d9cd11/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.31, + "duration_ms": 13.91, "detail": "" }, { @@ -17580,12 +17654,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/hosts/5c235e09-7cc1-40f9-a026-8a248a1246bf/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.23, + "duration_ms": 10.44, "detail": "" }, { @@ -17593,12 +17667,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/hosts/7b7768fa-6cee-42d2-b119-94490fb960c3/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": 2.21, + "duration_ms": 11.12, "detail": "" }, { @@ -17611,7 +17685,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 7.84, "detail": "" }, { @@ -17624,7 +17698,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 4.95, "detail": "" }, { @@ -17632,12 +17706,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0", + "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 5.16, "detail": "" }, { @@ -17645,12 +17719,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0", + "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 3.81, "detail": "" }, { @@ -17658,12 +17732,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0", + "path_resolved": "/ovirt-engine/api/jobs/6d858c04-6394-43b0-9b50-c232b58a3723", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 3.36, "detail": "" }, { @@ -17676,7 +17750,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 4.33, "detail": "" }, { @@ -17689,7 +17763,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.91, + "duration_ms": 7.3, "detail": "" }, { @@ -17697,12 +17771,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 7.31, "detail": "" }, { @@ -17710,12 +17784,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/networks/2b7d0d83-12f2-492b-b581-dc162ed2c7b5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 8.36, "detail": "" }, { @@ -17723,12 +17797,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/networks/ea61b6db-f5a0-4abd-8d65-67930a3f1f58", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 5.77, "detail": "" }, { @@ -17741,7 +17815,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 3.77, "detail": "" }, { @@ -17754,7 +17828,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.53, + "duration_ms": 2.53, "detail": "" }, { @@ -17767,7 +17841,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 2.87, "detail": "" }, { @@ -17780,7 +17854,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 2.71, "detail": "" }, { @@ -17788,12 +17862,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/permissions/{id}", - "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/permissions/39b21197-57ee-4f12-957e-da95cf388433", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 2.74, "detail": "" }, { @@ -17806,7 +17880,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 3.02, "detail": "" }, { @@ -17819,7 +17893,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.71, + "duration_ms": 7.25, "detail": "" }, { @@ -17832,7 +17906,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 7.14, "detail": "" }, { @@ -17840,12 +17914,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/fae69870-89ea-4a7f-9818-e2b2e3e76997", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 6.64, "detail": "" }, { @@ -17853,12 +17927,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/57e25255-4fef-4edd-b3ef-24f540e25eb5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 7.47, "detail": "" }, { @@ -17871,7 +17945,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 6.44, "detail": "" }, { @@ -17884,7 +17958,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.44, + "duration_ms": 6.61, "detail": "" }, { @@ -17892,12 +17966,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/7795814a-a193-4bdb-9153-121403fbaa08", + "path_resolved": "/ovirt-engine/api/storageconnections/fadb7985-9237-410d-b6a8-04b5fc69b8e0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 5.4, "detail": "" }, { @@ -17905,12 +17979,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/7795814a-a193-4bdb-9153-121403fbaa08", + "path_resolved": "/ovirt-engine/api/storageconnections/71f85e8a-b6ca-4ac7-84ee-4234d3828de4", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 6.4, "detail": "" }, { @@ -17918,12 +17992,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/7795814a-a193-4bdb-9153-121403fbaa08", + "path_resolved": "/ovirt-engine/api/storageconnections/55268ef9-6d0f-4555-9655-dcf51271cf01", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 5.92, "detail": "" }, { @@ -17936,7 +18010,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.49, "detail": "" }, { @@ -17949,7 +18023,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.84, + "duration_ms": 10.09, "detail": "" }, { @@ -17962,7 +18036,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 8.75, "detail": "" }, { @@ -17970,12 +18044,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/fdbd3bb1-637a-4b2b-8d6b-b9a4ae09b7ac", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 15.8, "detail": "" }, { @@ -17983,12 +18057,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/397793f8-eb82-4881-bde4-ca942d68374c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 6.59, "detail": "" }, { @@ -18001,7 +18075,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.02, + "duration_ms": 11.36, "detail": "" }, { @@ -18014,7 +18088,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.02, + "duration_ms": 7.9, "detail": "" }, { @@ -18027,7 +18101,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 6.61, "detail": "" }, { @@ -18040,7 +18114,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.72, + "duration_ms": 5.71, "detail": "" }, { @@ -18053,7 +18127,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 6.1, "detail": "" }, { @@ -18061,12 +18135,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/7c38989d-0124-4d24-8f6b-48e15ae4d642", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 5.22, "detail": "" }, { @@ -18074,12 +18148,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/746e4da8-dac6-4862-8fe1-2175e968e595", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 4.36, "detail": "" }, { @@ -18092,7 +18166,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 3.05, "detail": "" }, { @@ -18105,7 +18179,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.99, + "duration_ms": 4.45, "detail": "" }, { @@ -18118,7 +18192,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 3.01, "detail": "" }, { @@ -18126,12 +18200,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/1b4b6e16-2fc9-4959-b2de-60eb81d3d371", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 8.62, "detail": "" }, { @@ -18139,12 +18213,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/644cdcd7-5f6b-4a01-9093-2f4b2bc95aaf", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 7.24, "detail": "" }, { @@ -18157,7 +18231,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.11, + "duration_ms": 10.97, "detail": "" }, { @@ -18170,7 +18244,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 7.85, "detail": "" }, { @@ -18183,7 +18257,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.27, + "duration_ms": 6.2, "detail": "" }, { @@ -18196,7 +18270,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 6.75, "detail": "" }, { @@ -18209,7 +18283,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.0, + "duration_ms": 6.21, "detail": "" }, { @@ -18217,12 +18291,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/users/{id}", - "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/users/840d3f1e-2f15-4262-9c0b-cfe389ef1576", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 6.93, "detail": "" }, { @@ -18235,7 +18309,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.02, + "duration_ms": 7.39, "detail": "" }, { @@ -18248,7 +18322,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.03, + "duration_ms": 9.42, "detail": "" }, { @@ -18261,7 +18335,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 5.95, "detail": "" }, { @@ -18269,12 +18343,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/8a1350ef-fbe1-4255-83e6-73338e90998d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.16, + "duration_ms": 8.21, "detail": "" }, { @@ -18282,12 +18356,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/c21bf4f0-5350-49c9-9a00-c59935832c14", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 6.54, "detail": "" }, { @@ -18300,7 +18374,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 4.9, "detail": "" }, { @@ -18311,9 +18385,9 @@ "path_resolved": "/ovirt-engine/api/vms", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.38, + "duration_ms": 11.16, "detail": "" }, { @@ -18321,12 +18395,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/6001f1f3-7013-4f8c-ad5d-00b2f672caef", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 3.89, "detail": "" }, { @@ -18334,12 +18408,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/bfc35af6-69c8-44bf-85bd-4b6932ec4ff2", + "path_resolved": "/ovirt-engine/api/vms/ee755cb0-8559-49ee-a82f-ca56b43b8669", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 7.03, "detail": "" }, { @@ -18347,12 +18421,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/1685a653-06e3-4236-815e-cf7c4ce25137", + "path_resolved": "/ovirt-engine/api/vms/34b77cc6-01bb-490f-ac16-c55136deac40", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 9.0, "detail": "" }, { @@ -18360,12 +18434,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/vms/c351a326-9fe7-4d0b-9b2c-6d7fabcb1849/start", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.15, + "duration_ms": 8.66, "detail": "" }, { @@ -18373,12 +18447,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/vms/72bec6f8-599a-4ed5-898c-cd32df372f6e/stop", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.31, + "duration_ms": 6.7, "detail": "" }, { @@ -18386,12 +18460,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/vms/cd4a12a2-d717-4a2f-adb6-aa149088191d/shutdown", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 5.97, "detail": "" }, { @@ -18399,12 +18473,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/vms/0b1c24e4-64a5-43dc-8f19-48d03c5a9732/reboot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.36, + "duration_ms": 6.18, "detail": "" }, { @@ -18412,12 +18486,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/vms/890e2ac2-afb7-4d11-abfb-d954be6afccf/suspend", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.31, + "duration_ms": 6.39, "detail": "" }, { @@ -18425,12 +18499,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/vms/3a011438-33de-452c-8604-dd4090551e24/migrate", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 14.43, "detail": "" }, { @@ -18438,12 +18512,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/vms/86b3dbe8-3063-4092-a482-9add9d499ef8/cancelmigration", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 11.55, "detail": "" }, { @@ -18451,12 +18525,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/vms/552f9677-3708-4b13-ab86-a4005dd6dc84/clone", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.37, + "duration_ms": 13.21, "detail": "" }, { @@ -18464,12 +18538,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/vms/bc6d4833-a220-4433-9407-bb5dba839c8c/export", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 6.91, "detail": "" }, { @@ -18477,12 +18551,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/vms/06af7f9c-5456-4a4d-8b6a-656b7b1d320b/detach", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.39, + "duration_ms": 7.2, "detail": "" }, { @@ -18490,12 +18564,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/vms/fd6ddf5a-11f2-4419-8ac9-a13488484725/screenthumbnail", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 7.39, "detail": "" }, { @@ -18503,12 +18577,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/vms/0ab361cd-037a-4062-b450-2ece12635666/ticket", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.32, + "duration_ms": 8.45, "detail": "" }, { @@ -18516,12 +18590,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/vms/6df5de29-6452-4c3c-ae3e-cbcae019b98d/logon", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.28, + "duration_ms": 46.66, "detail": "" }, { @@ -18529,12 +18603,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/vms/cda3db1e-f302-421b-88e3-fbf1b0c5806b/preview_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.35, + "duration_ms": 14.78, "detail": "" }, { @@ -18542,12 +18616,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/vms/6fd9e8b9-5acf-49cd-a716-edb368857658/commit_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 18.84, "detail": "" }, { @@ -18555,12 +18629,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/vms/f809c017-7a8b-49f5-89e4-b6bc60ba84eb/undo_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.36, + "duration_ms": 20.97, "detail": "" }, { @@ -18568,12 +18642,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/vms/521858d9-e0bd-4316-9053-b93f3b06db42/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.32, + "duration_ms": 19.01, "detail": "" }, { @@ -18581,12 +18655,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/vms/5bee6978-0b41-46b8-9dca-38b8a1f7d4bf/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.29, + "duration_ms": 9.15, "detail": "" }, { @@ -18594,12 +18668,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/912a204a-3f63-477a-b775-9c4eca6d0298/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.67, + "duration_ms": 6.05, "detail": "" }, { @@ -18607,12 +18681,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/535a3565-caf3-489f-b259-f334116c22a4/diskattachments", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.74, + "duration_ms": 7.77, "detail": "" }, { @@ -18620,12 +18694,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/00c0e78b-185f-48b3-b579-6da916bf0ae6/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.78, + "duration_ms": 8.37, "detail": "" }, { @@ -18633,12 +18707,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/78365b4b-5fb4-47d5-ad7c-d9e66df2980d/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.33, + "duration_ms": 5.61, "detail": "" }, { @@ -18646,12 +18720,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/f71ce233-2e2e-4458-8620-4083577943b8/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.65, + "duration_ms": 7.45, "detail": "" }, { @@ -18659,12 +18733,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/ac50d6cd-88ab-461f-837d-cfb6dcf7bac2/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.55, + "duration_ms": 6.27, "detail": "" }, { @@ -18672,12 +18746,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/9004ad3c-5003-4f95-9f03-98d149137ec5/nics", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.15, + "duration_ms": 8.18, "detail": "" }, { @@ -18685,12 +18759,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/d07e1d24-6f3a-44af-8052-6bbbdb405660/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.47, + "duration_ms": 4.97, "detail": "" }, { @@ -18698,12 +18772,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/f39851da-1791-4f0b-b6e4-8220c0c3bdbf/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/fce3d91d-e77b-4fcf-85c9-82065e5cb25e", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.85, + "duration_ms": 7.82, "detail": "" }, { @@ -18711,12 +18785,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/731edfef-60cb-42fa-9d6b-087f10cf52d7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 2.7, + "duration_ms": 6.38, "detail": "" }, { @@ -18724,12 +18798,12 @@ "operation_id": "nics.activate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate", - "path_resolved": "/ovirt-engine/api/vms/e8742cee-3191-4b4a-880e-9febf8a88abf/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.69, + "duration_ms": 7.73, "detail": "" }, { @@ -18737,12 +18811,12 @@ "operation_id": "nics.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/vms/58d0f6cc-9a3a-4663-bac1-ca560440751a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.63, + "duration_ms": 6.91, "detail": "" }, { @@ -18750,12 +18824,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/b690d58c-a4e0-46c1-823e-d2baf6355906/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.46, + "duration_ms": 4.84, "detail": "" }, { @@ -18763,12 +18837,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/af00c773-8434-4e1f-8a3f-a1230f95e9d1/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.76, + "duration_ms": 5.58, "detail": "" }, { @@ -18776,12 +18850,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/7a8b35b8-29e3-43b7-8f19-c116beaae847/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.63, + "duration_ms": 4.89, "detail": "" }, { @@ -18789,12 +18863,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/e2f177e3-31b9-4a19-b3d6-20a96ae86e3f/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.83, + "duration_ms": 6.69, "detail": "" }, { @@ -18802,12 +18876,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/354161d7-cec9-4187-9f2a-344f865f00b0/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.35, + "duration_ms": 3.89, "detail": "" }, { @@ -18815,12 +18889,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/63da78bf-8c44-4878-881d-5c2770acda05/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.33, + "duration_ms": 3.62, "detail": "" }, { @@ -18828,12 +18902,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/8dae025c-1455-4602-b89d-227a8b3a7420/snapshots", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.5, + "duration_ms": 5.66, "detail": "" }, { @@ -18841,12 +18915,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/77807e40-9395-4446-ac34-03f1f805a65e/snapshots/600d1dae-ab51-4ed4-a130-40fd9d6ad082", + "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": 1.15, + "duration_ms": 4.43, "detail": "" }, { @@ -18854,12 +18928,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/091e9f90-d846-49d2-b3a3-ef2ec66c0fee/snapshots/7febedd7-d33b-4d56-900f-87b4aa510208", + "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": 1.19, + "duration_ms": 3.78, "detail": "" }, { @@ -18867,12 +18941,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/f3f7a640-8f02-48af-a77b-f89bd8a037ab/snapshots/29970f9f-4844-4dac-97b1-d0aed63f8498", + "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": 1.3, + "duration_ms": 10.08, "detail": "" }, { @@ -18880,12 +18954,12 @@ "operation_id": "snapshots.restore", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore", - "path_resolved": "/ovirt-engine/api/vms/0e49d24e-bd30-44c3-8259-7f15f9e0093d/snapshots/ecdc411e-976c-4b1a-be1c-19e933a016d4/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": 2.04, + "duration_ms": 8.39, "detail": "" }, { @@ -18893,12 +18967,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/8a8d25c1-175d-43a1-af09-c458b0fec6c0/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.73, + "duration_ms": 7.6, "detail": "" }, { @@ -18906,12 +18980,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/9be0e289-ffe1-4be0-995a-d018e4fb750c/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.38, + "duration_ms": 8.97, "detail": "" }, { @@ -18919,12 +18993,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/f97b54f3-9290-4e15-96e7-5b68f9d398c4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.37, + "duration_ms": 6.07, "detail": "" }, { @@ -18932,12 +19006,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/d02baf0e-7978-48d3-998d-08ee178dbf5e/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.38, + "duration_ms": 6.27, "detail": "" }, { @@ -18945,12 +19019,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/d7c26b55-f871-4b98-8c9d-8168b14793fa/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.34, + "duration_ms": 4.8, "detail": "" }, { @@ -18958,12 +19032,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/ba4354c3-6bb7-4f5b-88e8-19e94d82ca68/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": 1.58, + "duration_ms": 5.79, "detail": "" }, { @@ -18971,12 +19045,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/d3adcb45-8317-4658-9feb-9b82d147ea7e/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": 1.82, + "duration_ms": 5.57, "detail": "" }, { @@ -18984,12 +19058,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/bab760ac-d625-4b78-89b7-c99d3452b0ee/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.8, + "duration_ms": 4.2, "detail": "" }, { @@ -18997,12 +19071,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/eb405e77-3efd-4ec7-8966-338d37c53872/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.42, + "duration_ms": 5.73, "detail": "" }, { @@ -19010,12 +19084,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/0138acf3-690d-4f47-879b-b15b64f450d7/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.33, + "duration_ms": 7.51, "detail": "" }, { @@ -19023,12 +19097,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/7617104c-3e80-4ab4-9dc4-964dae9a84af/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.3, + "duration_ms": 6.34, "detail": "" }, { @@ -19036,12 +19110,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/d51d6a0a-4e97-4b76-a10f-7dfcf405693e/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.96, + "duration_ms": 4.0, "detail": "" }, { @@ -19049,12 +19123,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/4539d982-61db-44c0-8bf6-514e2babe838/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 7.37, "detail": "" }, { @@ -19062,12 +19136,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/0b9163c2-7b6d-49b8-be63-3b6cce221bc1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.79, + "duration_ms": 5.5, "detail": "" }, { @@ -19075,12 +19149,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/7bd0828a-a856-4e8d-8f9c-7ea81054431c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.4, + "duration_ms": 4.29, "detail": "" }, { @@ -19088,12 +19162,12 @@ "operation_id": "nics.update", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update", - "path_resolved": "/ovirt-engine/api/hosts/51184bb9-f87b-496c-a307-a4bab1411d27/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.11, + "duration_ms": 8.33, "detail": "" }, { @@ -19101,12 +19175,12 @@ "operation_id": "nics.attach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach", - "path_resolved": "/ovirt-engine/api/hosts/2ca82c56-e6d0-44d5-b8de-a9892bf61e44/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.97, + "duration_ms": 7.49, "detail": "" }, { @@ -19114,12 +19188,12 @@ "operation_id": "nics.detach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach", - "path_resolved": "/ovirt-engine/api/hosts/fed4d178-0cfb-477e-8cdb-5eef12207961/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.91, + "duration_ms": 7.14, "detail": "" }, { @@ -19127,12 +19201,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/9703ef8a-273e-48f4-a68c-3ed39b42329c/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.53, + "duration_ms": 6.97, "detail": "" }, { @@ -19140,12 +19214,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/d29b0700-95ef-47a1-939b-dd6fadbeddb7/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.62, + "duration_ms": 7.46, "detail": "" }, { @@ -19153,12 +19227,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/0acc8a1c-fb17-494a-b49e-99bf571fffd2/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.38, + "duration_ms": 8.31, "detail": "" }, { @@ -19166,12 +19240,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/21a647be-9bbc-4774-854d-42aac33d1a8b/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.45, + "duration_ms": 9.37, "detail": "" }, { @@ -19179,12 +19253,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/60b9471b-7028-4c28-9499-de896a13321f/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.31, + "duration_ms": 9.3, "detail": "" }, { @@ -19192,12 +19266,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/92f049ed-ee16-414b-b0b0-abce123e0098/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.38, + "duration_ms": 7.93, "detail": "" }, { @@ -19205,12 +19279,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/ab98ebcd-77d2-488f-af81-0af2b1e34787/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.67, + "duration_ms": 9.41, "detail": "" }, { @@ -19218,12 +19292,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/3e575972-5084-4ed1-b7c2-93d88b63159b/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.28, + "duration_ms": 14.11, "detail": "" }, { @@ -19231,12 +19305,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/34a8e38e-cce0-4993-8573-54920d7767e3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.37, + "duration_ms": 12.03, "detail": "" }, { @@ -19244,12 +19318,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/7a370b26-e3e4-4b64-8954-2d97be6a5bcb/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.28, + "duration_ms": 6.47, "detail": "" }, { @@ -19257,12 +19331,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/636c7b4d-4a0e-46ac-a0dc-9a858fc82daf/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.3, + "duration_ms": 9.13, "detail": "" }, { @@ -19270,12 +19344,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/e496e364-f67f-4560-bc6d-f0c012902f1e/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.52, + "duration_ms": 10.13, "detail": "" }, { @@ -19283,12 +19357,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/9c0c122c-9049-47ff-90c1-056b675ea84c/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.96, "detail": "" }, { @@ -19296,12 +19370,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/db968101-1065-46b0-95e4-e9e2635409ad/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.57, + "duration_ms": 8.2, "detail": "" }, { @@ -19309,12 +19383,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/4e5a6281-7127-4e0f-9563-0020bfc08474/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.24, + "duration_ms": 7.86, "detail": "" }, { @@ -19325,9 +19399,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 6.49, "detail": "" }, { @@ -19338,9 +19412,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 1.87, + "duration_ms": 6.0, "detail": "" }, { @@ -19348,12 +19422,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 6.89, "detail": "" }, { @@ -19361,12 +19435,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "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": 1.15, + "duration_ms": 6.44, "detail": "" }, { @@ -19374,12 +19448,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "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": 1.16, + "duration_ms": 7.3, "detail": "" }, { @@ -19392,7 +19466,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.0, + "duration_ms": 6.61, "detail": "" }, { @@ -19405,7 +19479,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.91, + "duration_ms": 9.47, "detail": "" }, { @@ -19418,7 +19492,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 4.59, "detail": "" }, { @@ -19431,7 +19505,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 8.91, "detail": "" }, { @@ -19439,12 +19513,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.13, + "duration_ms": 4.64, "detail": "" }, { @@ -19457,7 +19531,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 7.43, "detail": "" }, { @@ -19470,7 +19544,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 8.55, "detail": "" }, { @@ -19481,9 +19555,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 8.01, "detail": "" }, { @@ -19491,12 +19565,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.11, + "duration_ms": 6.25, "detail": "" }, { @@ -19504,12 +19578,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.21, + "duration_ms": 12.0, "detail": "" }, { @@ -19522,7 +19596,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.16, + "duration_ms": 39.14, "detail": "" }, { @@ -19535,7 +19609,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 19.66, "detail": "" }, { @@ -19546,9 +19620,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 15.53, "detail": "" }, { @@ -19559,9 +19633,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.14, + "duration_ms": 15.72, "detail": "" }, { @@ -19572,9 +19646,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 9.26, "detail": "" }, { @@ -19582,12 +19656,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 1.14, + "duration_ms": 8.92, "detail": "" }, { @@ -19595,12 +19669,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/a99b8655-ec13-4280-b113-3daac108da03", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 7.47, "detail": "" }, { @@ -19611,9 +19685,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 4.8, "detail": "" }, { @@ -19624,9 +19698,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.24, + "duration_ms": 10.23, "detail": "" }, { @@ -19634,12 +19708,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 5.99, "detail": "" }, { @@ -19647,12 +19721,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "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": 1.17, + "duration_ms": 5.78, "detail": "" }, { @@ -19660,12 +19734,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/bb8ae3a5-4b1b-4483-a59e-4c9ada464ab9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 9.23, "detail": "" }, { @@ -19678,7 +19752,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 23.56, "detail": "" }, { @@ -19691,7 +19765,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.67, + "duration_ms": 10.92, "detail": "" }, { @@ -19699,12 +19773,12 @@ "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/320f7329-0f78-4ddf-be85-3c2957ed775d", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 7.99, "detail": "" }, { @@ -19712,12 +19786,12 @@ "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/320f7329-0f78-4ddf-be85-3c2957ed775d", + "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": 1.52, + "duration_ms": 9.16, "detail": "" }, { @@ -19725,12 +19799,12 @@ "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/320f7329-0f78-4ddf-be85-3c2957ed775d", + "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": 1.32, + "duration_ms": 30.69, "detail": "" }, { @@ -19743,7 +19817,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 10.23, "detail": "" }, { @@ -19756,7 +19830,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 10.77, "detail": "" }, { @@ -19769,7 +19843,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 19.2, "detail": "" }, { @@ -19782,7 +19856,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 18.56, "detail": "" }, { @@ -19790,12 +19864,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.67, + "duration_ms": 9.89, "detail": "" }, { @@ -19808,7 +19882,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.9, + "duration_ms": 10.91, "detail": "" }, { @@ -19821,7 +19895,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 4.21, + "duration_ms": 18.97, "detail": "" }, { @@ -19834,7 +19908,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.88, + "duration_ms": 9.2, "detail": "" }, { @@ -19847,7 +19921,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.21, + "duration_ms": 14.47, "detail": "" }, { @@ -19855,12 +19929,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.58, + "duration_ms": 9.69, "detail": "" }, { @@ -19873,7 +19947,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 8.05, "detail": "" }, { @@ -19886,7 +19960,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.93, + "duration_ms": 14.71, "detail": "" }, { @@ -19899,7 +19973,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 7.99, "detail": "" }, { @@ -19912,7 +19986,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 44.07, "detail": "" }, { @@ -19920,12 +19994,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.17, + "duration_ms": 7.99, "detail": "" }, { @@ -19938,7 +20012,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 14.17, "detail": "" }, { @@ -19951,7 +20025,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.89, + "duration_ms": 14.28, "detail": "" }, { @@ -19962,9 +20036,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 8.19, "detail": "" }, { @@ -19972,12 +20046,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.44, + "duration_ms": 6.81, "detail": "" }, { @@ -19985,12 +20059,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 2.27, + "duration_ms": 8.5, "detail": "" }, { @@ -20003,7 +20077,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.48, + "duration_ms": 13.72, "detail": "" }, { @@ -20016,7 +20090,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.13, + "duration_ms": 69.9, "detail": "" }, { @@ -20029,7 +20103,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 19.28, "detail": "" }, { @@ -20042,7 +20116,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 12.3, "detail": "" }, { @@ -20050,12 +20124,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 1.53, + "duration_ms": 7.78, "detail": "" }, { @@ -20063,12 +20137,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/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": 1.63, + "duration_ms": 10.24, "detail": "" }, { @@ -20076,12 +20150,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/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": 1.29, + "duration_ms": 7.49, "detail": "" }, { @@ -20089,12 +20163,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/steps/41731e44-6c7c-4a4f-9907-994ea02531f3", + "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": 1.41, + "duration_ms": 6.17, "detail": "" }, { @@ -20102,12 +20176,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/steps/a1f55d8e-1528-44d8-b2de-608d605d91bb", + "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": 1.61, + "duration_ms": 5.72, "detail": "" }, { @@ -20115,12 +20189,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/steps/8d5f5f01-f995-4bad-8fb3-fdaf3e37c7af", + "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": 1.28, + "duration_ms": 6.27, "detail": "" }, { @@ -20133,7 +20207,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.89, + "duration_ms": 28.52, "detail": "" }, { @@ -20146,7 +20220,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 9.55, "detail": "" }, { @@ -20159,7 +20233,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.83, + "duration_ms": 14.93, "detail": "" }, { @@ -20170,9 +20244,9 @@ "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 9.04, "detail": "" }, { @@ -20180,12 +20254,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v3/bookmarks/817a12f7-22cd-43e0-804d-5d6e5eb06fc9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.02, + "duration_ms": 15.35, "detail": "" }, { @@ -20193,12 +20267,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v3/bookmarks/18a36210-7e1c-4558-8ae2-d8e11b00d03e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 10.11, "detail": "" }, { @@ -20211,7 +20285,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 7.71, "detail": "" }, { @@ -20224,7 +20298,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.08, + "duration_ms": 22.96, "detail": "" }, { @@ -20235,9 +20309,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 9.15, "detail": "" }, { @@ -20245,12 +20319,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/clusters/c9ec1abd-27b2-4e69-8c9d-5d457fdb96e8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 13.89, "detail": "" }, { @@ -20258,12 +20332,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/clusters/0e20bbd0-416e-4110-bcc8-2d78ca89693d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 12.77, "detail": "" }, { @@ -20276,7 +20350,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.03, + "duration_ms": 17.99, "detail": "" }, { @@ -20289,7 +20363,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.01, + "duration_ms": 14.19, "detail": "" }, { @@ -20302,7 +20376,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.89, + "duration_ms": 17.54, "detail": "" }, { @@ -20315,7 +20389,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 11.29, "detail": "" }, { @@ -20328,7 +20402,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.85, + "duration_ms": 13.59, "detail": "" }, { @@ -20339,9 +20413,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 10.07, "detail": "" }, { @@ -20349,12 +20423,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/64f3fdc4-3350-4ac6-9948-2b2cc3917ceb", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 12.84, "detail": "" }, { @@ -20362,12 +20436,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/a2621f47-884f-4c39-9752-364360a758e1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 11.74, "detail": "" }, { @@ -20380,7 +20454,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.92, + "duration_ms": 57.02, "detail": "" }, { @@ -20393,7 +20467,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 63.28, "detail": "" }, { @@ -20406,7 +20480,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.39, + "duration_ms": 55.83, "detail": "" }, { @@ -20417,9 +20491,9 @@ "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 50.28, "detail": "" }, { @@ -20427,12 +20501,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/disks/{id}", - "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v3/disks/659b7b2f-3c78-4620-9f9d-e1e73b4b1d63", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 20.65, "detail": "" }, { @@ -20440,12 +20514,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/disks/{id}", - "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v3/disks/05f6284d-57dc-472c-a59f-927781bebf1e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 23.43, "detail": "" }, { @@ -20458,7 +20532,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.84, + "duration_ms": 31.07, "detail": "" }, { @@ -20471,7 +20545,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.14, + "duration_ms": 24.76, "detail": "" }, { @@ -20484,7 +20558,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.19, + "duration_ms": 11.72, "detail": "" }, { @@ -20497,7 +20571,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.9, + "duration_ms": 51.94, "detail": "" }, { @@ -20510,7 +20584,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 14.0, "detail": "" }, { @@ -20523,7 +20597,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 6.07, "detail": "" }, { @@ -20536,7 +20610,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 9.89, "detail": "" }, { @@ -20549,7 +20623,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 12.89, "detail": "" }, { @@ -20557,12 +20631,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/domains/{id}", - "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/v3/domains/791e0dac-364a-4d98-af58-95d3fa02397e", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 11.45, "detail": "" }, { @@ -20575,7 +20649,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 9.0, "detail": "" }, { @@ -20588,7 +20662,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 2.26, + "duration_ms": 11.2, "detail": "" }, { @@ -20596,12 +20670,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1107", + "path_resolved": "/ovirt-engine/api/v3/events/50", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 18.26, "detail": "" }, { @@ -20609,12 +20683,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1107", + "path_resolved": "/ovirt-engine/api/v3/events/50", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 9.71, "detail": "" }, { @@ -20622,12 +20696,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1107", + "path_resolved": "/ovirt-engine/api/v3/events/a7e2cd1f-ba34-429a-a922-b0471d770628", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 16.34, "detail": "" }, { @@ -20640,7 +20714,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 32.48, "detail": "" }, { @@ -20653,7 +20727,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.92, + "duration_ms": 64.48, "detail": "" }, { @@ -20664,9 +20738,9 @@ "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 58.26, "detail": "" }, { @@ -20674,12 +20748,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/groups/{id}", - "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v3/groups/0e926f9b-225b-45df-a3ff-9e09a25a8db4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 50.96, "detail": "" }, { @@ -20687,12 +20761,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/groups/{id}", - "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v3/groups/3d5fab32-0c74-49f2-a3f6-58d41b0ccdae", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 47.77, "detail": "" }, { @@ -20705,7 +20779,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 81.67, "detail": "" }, { @@ -20718,7 +20792,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.15, + "duration_ms": 47.25, "detail": "" }, { @@ -20726,12 +20800,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/e7beec8e-ed50-4a23-b5af-2b977effdf06", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 7.98, "detail": "" }, { @@ -20739,12 +20813,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/65bf0923-a0e2-4401-b542-7eef2ae755bb", + "path_resolved": "/ovirt-engine/api/v3/hosts/f062f615-bb2a-4cd4-b904-54921a505dbb", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 12.35, "detail": "" }, { @@ -20752,12 +20826,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/92e4f948-06e5-47dd-9bee-b39edda7da88", + "path_resolved": "/ovirt-engine/api/v3/hosts/0187b033-6171-4616-9499-e95b3e61e07b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 17.5, "detail": "" }, { @@ -20765,12 +20839,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/v3/hosts/9c7ec949-cd8f-4b48-b097-9d2c39759b92/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": 2.37, + "duration_ms": 21.19, "detail": "" }, { @@ -20778,12 +20852,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/v3/hosts/556a5e33-82e6-4395-8416-a2ed78a73473/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": 2.16, + "duration_ms": 37.25, "detail": "" }, { @@ -20791,12 +20865,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/v3/hosts/557dab72-5469-4e36-8837-fb3730ab3a24/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.23, + "duration_ms": 35.0, "detail": "" }, { @@ -20804,12 +20878,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/v3/hosts/b173774e-72b2-4baa-b552-9af384bd79f6/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.13, + "duration_ms": 19.13, "detail": "" }, { @@ -20817,12 +20891,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/v3/hosts/a475be2d-7984-4f20-afae-9bbb2bcbb392/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": 1.99, + "duration_ms": 28.64, "detail": "" }, { @@ -20830,12 +20904,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/v3/hosts/c19eceb7-b2e9-4b3b-82cc-2eecd03e8376/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": 1.96, + "duration_ms": 48.35, "detail": "" }, { @@ -20843,12 +20917,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/v3/hosts/15002bcb-98fe-46a2-9ec9-8eabe87f186d/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.04, + "duration_ms": 16.82, "detail": "" }, { @@ -20856,12 +20930,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/v3/hosts/0e650979-0cc9-44ee-8fb9-3404b8384713/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.04, + "duration_ms": 19.87, "detail": "" }, { @@ -20869,12 +20943,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/v3/hosts/a3c7a243-2b6f-4a3b-b370-c826a075ea4a/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": 1.92, + "duration_ms": 9.86, "detail": "" }, { @@ -20882,12 +20956,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/v3/hosts/ae7b3c46-9a07-4992-b762-62825435a337/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": 1.86, + "duration_ms": 29.78, "detail": "" }, { @@ -20900,7 +20974,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.93, + "duration_ms": 8.41, "detail": "" }, { @@ -20913,7 +20987,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 5.18, "detail": "" }, { @@ -20921,12 +20995,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0", + "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 6.61, "detail": "" }, { @@ -20934,12 +21008,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0", + "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 12.52, "detail": "" }, { @@ -20947,12 +21021,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0", + "path_resolved": "/ovirt-engine/api/v3/jobs/824e9f81-b497-4ce0-9a1b-50e4277c6d3f", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 4.16, "detail": "" }, { @@ -20965,7 +21039,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 7.44, "detail": "" }, { @@ -20978,7 +21052,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.01, + "duration_ms": 10.61, "detail": "" }, { @@ -20986,12 +21060,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 6.49, "detail": "" }, { @@ -20999,12 +21073,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/v3/networks/22acff31-0340-4769-b2fa-ce96751e1df5", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.22, + "duration_ms": 17.46, "detail": "" }, { @@ -21012,12 +21086,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/v3/networks/e6cbab41-5fa3-44d6-ba02-79d1e5ef5b49", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 11.49, "detail": "" }, { @@ -21030,7 +21104,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 8.17, "detail": "" }, { @@ -21043,7 +21117,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.26, + "duration_ms": 5.7, "detail": "" }, { @@ -21056,7 +21130,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 8.62, "detail": "" }, { @@ -21069,7 +21143,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 5.85, "detail": "" }, { @@ -21077,12 +21151,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/v3/permissions/603e2766-2162-4aa7-94a3-0af9ca64ba93", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 7.06, "detail": "" }, { @@ -21095,7 +21169,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 65.04, "detail": "" }, { @@ -21108,7 +21182,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 12.49, "detail": "" }, { @@ -21119,9 +21193,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 8.2, "detail": "" }, { @@ -21129,12 +21203,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/roles/{id}", - "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v3/roles/18f84884-c386-4533-a64b-20a6d62d1cec", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 8.13, "detail": "" }, { @@ -21142,12 +21216,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/roles/{id}", - "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v3/roles/966ccece-9e81-49fe-98db-ea373345a085", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 8.1, "detail": "" }, { @@ -21160,7 +21234,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 8.07, "detail": "" }, { @@ -21173,7 +21247,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.02, + "duration_ms": 8.79, "detail": "" }, { @@ -21181,12 +21255,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/7795814a-a193-4bdb-9153-121403fbaa08", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/fadb7985-9237-410d-b6a8-04b5fc69b8e0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 5.09, "detail": "" }, { @@ -21194,12 +21268,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/7795814a-a193-4bdb-9153-121403fbaa08", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/a41cbffb-9b6b-4229-8625-599c198eeacb", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 4.45, "detail": "" }, { @@ -21207,12 +21281,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/7795814a-a193-4bdb-9153-121403fbaa08", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/174632be-7d36-499d-a6fe-152dc3ca791b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 9.51, "detail": "" }, { @@ -21225,7 +21299,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 6.39, "detail": "" }, { @@ -21238,7 +21312,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.62, + "duration_ms": 9.75, "detail": "" }, { @@ -21249,9 +21323,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.43, + "duration_ms": 9.01, "detail": "" }, { @@ -21259,12 +21333,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v3/storagedomains/6e75d54a-3525-4771-a207-ae7b4fd8e122", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.27, + "duration_ms": 14.15, "detail": "" }, { @@ -21272,12 +21346,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v3/storagedomains/f9553ba8-adfb-497b-a0cc-a728a7a5701e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 10.42, "detail": "" }, { @@ -21290,7 +21364,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.25, + "duration_ms": 17.53, "detail": "" }, { @@ -21303,7 +21377,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.48, + "duration_ms": 21.4, "detail": "" }, { @@ -21316,7 +21390,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 16.52, "detail": "" }, { @@ -21329,7 +21403,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.08, + "duration_ms": 7.62, "detail": "" }, { @@ -21340,9 +21414,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 4.62, "detail": "" }, { @@ -21350,12 +21424,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v3/tags/634a9447-7c1e-430b-9ca7-8f2d3b7ff73c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 8.51, "detail": "" }, { @@ -21363,12 +21437,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v3/tags/2bce4c97-bc2b-45b9-a75e-8382f29ba09e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 11.17, "detail": "" }, { @@ -21381,7 +21455,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 7.22, "detail": "" }, { @@ -21394,7 +21468,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.93, + "duration_ms": 8.55, "detail": "" }, { @@ -21405,9 +21479,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 6.22, "detail": "" }, { @@ -21415,12 +21489,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/templates/{id}", - "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v3/templates/92959472-3373-45a1-9b57-954f39278942", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 4.21, "detail": "" }, { @@ -21428,12 +21502,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/templates/{id}", - "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v3/templates/07107b1c-8b09-4bf4-b41a-e105a0a430e1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 5.19, "detail": "" }, { @@ -21446,7 +21520,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.02, + "duration_ms": 6.62, "detail": "" }, { @@ -21459,7 +21533,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 7.68, "detail": "" }, { @@ -21472,7 +21546,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 7.88, "detail": "" }, { @@ -21485,7 +21559,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 5.92, "detail": "" }, { @@ -21498,7 +21572,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 4.59, "detail": "" }, { @@ -21506,12 +21580,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/users/{id}", - "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/v3/users/fcc331ad-0b71-4022-9e33-2a87b2c532a9", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 3.6, "detail": "" }, { @@ -21524,7 +21598,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 5.34, "detail": "" }, { @@ -21537,7 +21611,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 6.45, "detail": "" }, { @@ -21548,9 +21622,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 6.76, "detail": "" }, { @@ -21558,12 +21632,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v3/vmpools/56aab309-dc92-4a30-b333-e1b00792f2d9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 10.11, "detail": "" }, { @@ -21571,12 +21645,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v3/vmpools/6d2ff582-360e-4e47-a6b1-54f41eeef801", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 5.57, "detail": "" }, { @@ -21589,7 +21663,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 4.88, "detail": "" }, { @@ -21602,7 +21676,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.78, + "duration_ms": 10.22, "detail": "" }, { @@ -21610,12 +21684,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/42b2994e-723f-4716-b9f9-bf1218a5ed7d", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 7.23, "detail": "" }, { @@ -21623,12 +21697,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/577c228d-9d60-4aa5-ac6a-c0726ec3b65a", + "path_resolved": "/ovirt-engine/api/v3/vms/f5c445b6-739c-423d-989b-e25b8e0584b2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 13.52, "detail": "" }, { @@ -21636,12 +21710,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/60e13e28-276e-4eac-bca4-2ecc2cff1405", + "path_resolved": "/ovirt-engine/api/v3/vms/5d23f248-5f95-4f51-9d8f-9437605ba280", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 33.28, "detail": "" }, { @@ -21649,12 +21723,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/v3/vms/ed531056-3dd0-4a51-a4a3-639df3015149/start", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.21, + "duration_ms": 33.07, "detail": "" }, { @@ -21662,12 +21736,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/v3/vms/89997bc0-c7d4-4aa8-b3fc-ba3df4a851f5/stop", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.14, + "duration_ms": 16.1, "detail": "" }, { @@ -21675,12 +21749,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/v3/vms/ca62e336-c313-468e-aa27-e279204b4e60/shutdown", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.12, + "duration_ms": 12.1, "detail": "" }, { @@ -21688,12 +21762,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/v3/vms/1059592d-6022-4649-ada9-6880b03ebf84/reboot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.18, + "duration_ms": 12.9, "detail": "" }, { @@ -21701,12 +21775,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/v3/vms/73b44b89-0e28-4aa3-8e7a-4d53092bd64c/suspend", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 9.83, "detail": "" }, { @@ -21714,12 +21788,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/v3/vms/039a774a-ff2e-4c91-8c50-233b9ce634d2/migrate", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.14, + "duration_ms": 10.81, "detail": "" }, { @@ -21727,12 +21801,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/v3/vms/c30fde3e-0abe-4504-9360-856c7cd92992/cancelmigration", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.15, + "duration_ms": 12.17, "detail": "" }, { @@ -21740,12 +21814,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/v3/vms/132431e1-e0af-4815-978b-6059fd9e922e/clone", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 409, "expected_hint": 201, - "duration_ms": 1.15, + "duration_ms": 16.32, "detail": "" }, { @@ -21753,12 +21827,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/v3/vms/f9882275-5101-4970-9f42-9dad77edfdfc/export", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.1, + "duration_ms": 14.98, "detail": "" }, { @@ -21766,12 +21840,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/v3/vms/ec601576-5712-40ac-9e76-4da3fdbcd366/detach", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.36, + "duration_ms": 19.79, "detail": "" }, { @@ -21779,12 +21853,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/v3/vms/bd2d2869-789b-4564-b9dd-753528d7531e/screenthumbnail", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.35, + "duration_ms": 15.58, "detail": "" }, { @@ -21792,12 +21866,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/v3/vms/1aed0934-6efc-4864-b96e-46084d889500/ticket", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.32, + "duration_ms": 16.03, "detail": "" }, { @@ -21805,12 +21879,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/v3/vms/18b89007-9110-4c36-b2b4-02dc8a42ab5c/logon", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 11.73, "detail": "" }, { @@ -21818,12 +21892,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/60f9531c-610c-48b9-9d60-4af8c5d98e46/preview_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.29, + "duration_ms": 11.54, "detail": "" }, { @@ -21831,12 +21905,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/3fdb4c71-8f72-4641-9dd8-d02cc3d574b6/commit_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.79, + "duration_ms": 14.17, "detail": "" }, { @@ -21844,12 +21918,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/80602567-d27b-4c9f-b304-7c14eb088d8f/undo_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.27, + "duration_ms": 24.65, "detail": "" }, { @@ -21857,12 +21931,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/v3/vms/7c38aed2-a35a-46e2-8ff8-2b2e0b7b6e00/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 39.74, "detail": "" }, { @@ -21870,12 +21944,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/v3/vms/39e42b3a-8381-44ee-b90b-7933021c0189/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.31, + "duration_ms": 52.88, "detail": "" }, { @@ -21883,12 +21957,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/c59df167-c2e7-42a1-a724-db8dd87b8fbc/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": 1.66, + "duration_ms": 16.11, "detail": "" }, { @@ -21896,12 +21970,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/43490c02-fec0-4bac-b39d-5e65a6e1aaa1/diskattachments", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.54, + "duration_ms": 19.68, "detail": "" }, { @@ -21909,12 +21983,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/34a0a4d5-003b-4fe7-8b80-244d077cb1d8/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.37, + "duration_ms": 15.1, "detail": "" }, { @@ -21922,12 +21996,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/3995e13d-cf25-4f8c-8afc-49c07b98262b/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.19, + "duration_ms": 8.63, "detail": "" }, { @@ -21935,12 +22009,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/faa46f13-e5f7-44a1-a4c7-724083135fcb/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.3, + "duration_ms": 6.8, "detail": "" }, { @@ -21948,12 +22022,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/e426163c-891e-4374-b9cc-ab88be13668c/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.29, + "duration_ms": 7.26, "detail": "" }, { @@ -21961,12 +22035,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/360d0a61-091a-4afd-8b24-2c19e78dfe35/nics", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.64, + "duration_ms": 11.06, "detail": "" }, { @@ -21974,12 +22048,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/6ef90506-011f-4e3d-a7f3-4dd5430ac91a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.29, + "duration_ms": 7.45, "detail": "" }, { @@ -21987,12 +22061,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/eafdafb6-8257-45e0-b476-0b26b459ab07/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/43b17b38-454f-4be7-8d6b-f0fc80c5a3f1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 7.61, "detail": "" }, { @@ -22000,12 +22074,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/b01de446-679e-4481-abb9-0328108cd2d1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.52, + "duration_ms": 10.35, "detail": "" }, { @@ -22013,12 +22087,12 @@ "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/9265ed25-53c0-4c3d-8944-e74e27cf86e2/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.65, + "duration_ms": 13.87, "detail": "" }, { @@ -22026,12 +22100,12 @@ "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/0ecdee12-cc38-4ed8-b14f-3ef4e15f4512/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.12, + "duration_ms": 14.56, "detail": "" }, { @@ -22039,12 +22113,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/26e3fcdc-d66e-4947-a2c1-6a7bef7e1ced/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": 1.41, + "duration_ms": 11.34, "detail": "" }, { @@ -22052,12 +22126,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/ea67523b-7fcf-4e8c-a8f2-496f27c54c72/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": 1.57, + "duration_ms": 9.54, "detail": "" }, { @@ -22065,12 +22139,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/3eec717a-f125-40ee-87c7-8435c06e1b17/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.34, + "duration_ms": 8.18, "detail": "" }, { @@ -22078,12 +22152,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/c039a50b-135a-494d-ba36-023033c51bbc/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.67, + "duration_ms": 17.22, "detail": "" }, { @@ -22091,12 +22165,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/84a83b33-37bc-4ce0-99ef-6b1d143e8550/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.34, + "duration_ms": 11.37, "detail": "" }, { @@ -22104,12 +22178,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/378db957-6f88-450b-ad6f-835b3f52f1a0/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": 1.35, + "duration_ms": 35.4, "detail": "" }, { @@ -22117,12 +22191,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/52553d17-ed0f-4f53-bda6-82c9dc7ec02b/snapshots", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 17.03, "detail": "" }, { @@ -22130,12 +22204,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/7026cdaf-ad70-4cd4-9406-bed0ea409c60/snapshots/0f9743b1-3680-44b9-a07f-82bdd5e23bd1", + "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": 1.18, + "duration_ms": 9.06, "detail": "" }, { @@ -22143,12 +22217,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/88e7b77a-986b-4a53-bf37-da97ecde0161/snapshots/054f69f4-55fc-4075-b22f-d460cccac525", + "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": 1.22, + "duration_ms": 6.0, "detail": "" }, { @@ -22156,12 +22230,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/8c2f2a73-7a17-4f97-8419-bb4257cf4fcc/snapshots/b8a65ed8-a252-4d85-85d8-0878986e504c", + "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": 1.4, + "duration_ms": 10.78, "detail": "" }, { @@ -22169,12 +22243,12 @@ "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/08cdfc91-fc11-435a-80fd-df218cc6b5d9/snapshots/f5a1fcbf-d965-4e2c-abd8-0c0f1914f633/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": 1.95, + "duration_ms": 10.29, "detail": "" }, { @@ -22182,12 +22256,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/5975b236-8415-4f80-af9b-cafa3278e900/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.41, + "duration_ms": 8.45, "detail": "" }, { @@ -22195,12 +22269,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/c09c186f-9ed0-4cc0-a5c7-e569e3b119d0/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.03, + "duration_ms": 8.38, "detail": "" }, { @@ -22208,12 +22282,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/b41a51aa-19cb-45c8-b918-1c4c693f644b/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.21, + "duration_ms": 4.05, "detail": "" }, { @@ -22221,12 +22295,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/47fda296-9153-4d0e-a24d-9730c94336ea/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.19, + "duration_ms": 3.45, "detail": "" }, { @@ -22234,12 +22308,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/ed8cfe81-8929-485f-8ef7-ba5be140274f/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.16, + "duration_ms": 3.87, "detail": "" }, { @@ -22247,12 +22321,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/256f97e1-4cf5-4a4a-86b3-5888bfb2b72c/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.06, + "duration_ms": 5.2, "detail": "" }, { @@ -22260,12 +22334,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/0b81fee0-df6b-479f-8686-5e0dba4b147a/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": 1.54, + "duration_ms": 6.33, "detail": "" }, { @@ -22273,12 +22347,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/1ac380b3-6396-4b3b-9c35-53077bf78103/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.23, + "duration_ms": 6.48, "detail": "" }, { @@ -22286,12 +22360,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/50bd6a36-0898-4eaa-a87e-6e3095d08d51/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.4, + "duration_ms": 6.16, "detail": "" }, { @@ -22299,12 +22373,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/94669b63-15eb-4e16-a4a6-7d6f05013e14/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.26, + "duration_ms": 5.35, "detail": "" }, { @@ -22312,12 +22386,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/554412c8-8307-4476-a7fd-c27325f65d8f/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.31, + "duration_ms": 6.47, "detail": "" }, { @@ -22325,12 +22399,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/baf2602b-b9e5-4b2e-be52-42278c0ad770/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": 1.73, + "duration_ms": 6.4, "detail": "" }, { @@ -22338,12 +22412,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/deaa8b5e-a3ae-4834-a493-b5a032cdb34b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 3.13, "detail": "" }, { @@ -22351,12 +22425,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/5e0a21f1-039d-4cbb-adc9-b496d3c2686b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 2.2, + "duration_ms": 8.36, "detail": "" }, { @@ -22364,12 +22438,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/6a7ea11b-cfed-4e1c-a131-d5896fb5da7b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.37, + "duration_ms": 9.11, "detail": "" }, { @@ -22377,12 +22451,12 @@ "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/08bc13d5-e3e1-4c71-9296-22ea5cc13a7f/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.96, + "duration_ms": 8.02, "detail": "" }, { @@ -22390,12 +22464,12 @@ "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/d7cc8fb6-3271-4167-b387-a024b25e341b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.77, + "duration_ms": 7.75, "detail": "" }, { @@ -22403,12 +22477,12 @@ "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/1573e29a-0fcb-4217-8696-0570706ce67b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.75, + "duration_ms": 6.95, "detail": "" }, { @@ -22416,12 +22490,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/45cfd2f2-38a3-4516-80d4-d7e59f530118/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.48, + "duration_ms": 6.71, "detail": "" }, { @@ -22429,12 +22503,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/ae748a51-1e41-40c1-935b-5cfd07a997ed/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": 1.46, + "duration_ms": 10.79, "detail": "" }, { @@ -22442,12 +22516,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/88c191c8-ec8e-435c-a616-0eaa36fd1d44/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.3, + "duration_ms": 17.22, "detail": "" }, { @@ -22455,12 +22529,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/9fa1f17d-d4a1-49e4-9699-0ee73ec85964/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.36, + "duration_ms": 5.4, "detail": "" }, { @@ -22468,12 +22542,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/408fb39f-c377-429f-8229-e9d47bfc7ceb/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.32, + "duration_ms": 4.4, "detail": "" }, { @@ -22481,12 +22555,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/731cef77-5f03-4609-827b-b8f38522e1b8/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.34, + "duration_ms": 4.14, "detail": "" }, { @@ -22494,12 +22568,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/4edbe055-28c3-4fe6-b91a-00a049d499c0/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": 1.59, + "duration_ms": 5.15, "detail": "" }, { @@ -22507,12 +22581,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/29b75ea8-ad3c-4822-aa6d-25a2ec822aa6/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.34, + "duration_ms": 3.74, "detail": "" }, { @@ -22520,12 +22594,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/f639b628-5822-4aa9-9e81-78a71aa3c14a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.36, + "duration_ms": 3.33, "detail": "" }, { @@ -22533,12 +22607,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/018dd684-cb95-4c6d-bde8-e9f1065e6ac9/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.24, + "duration_ms": 4.36, "detail": "" }, { @@ -22546,12 +22620,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/31201453-080f-43e2-97dc-c244cafd5493/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.27, + "duration_ms": 4.35, "detail": "" }, { @@ -22559,12 +22633,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/879f3463-0747-41cf-859d-17caa5a52c30/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": 1.58, + "duration_ms": 5.31, "detail": "" }, { @@ -22572,12 +22646,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/7df0bcc6-043c-4e43-9f71-e00fc0693842/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 4.16, "detail": "" }, { @@ -22585,12 +22659,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/bb740de6-5651-4399-abf1-66132ad7f34c/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.78, + "duration_ms": 4.46, "detail": "" }, { @@ -22598,12 +22672,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/be8577b8-baa1-4dee-8000-97265399ed6b/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.6, + "duration_ms": 11.07, "detail": "" }, { @@ -22614,9 +22688,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 7.94, "detail": "" }, { @@ -22627,9 +22701,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 1.9, + "duration_ms": 5.89, "detail": "" }, { @@ -22637,12 +22711,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.03, "detail": "" }, { @@ -22650,12 +22724,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "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": 1.23, + "duration_ms": 4.96, "detail": "" }, { @@ -22663,12 +22737,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "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": 1.68, + "duration_ms": 4.55, "detail": "" }, { @@ -22681,7 +22755,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 5.29, "detail": "" }, { @@ -22694,7 +22768,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.8, + "duration_ms": 8.33, "detail": "" }, { @@ -22707,7 +22781,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 5.06, "detail": "" }, { @@ -22720,7 +22794,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 4.77, "detail": "" }, { @@ -22728,12 +22802,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.23, + "duration_ms": 5.02, "detail": "" }, { @@ -22746,7 +22820,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 8.14, "detail": "" }, { @@ -22759,7 +22833,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 1.18, + "duration_ms": 4.34, "detail": "" }, { @@ -22770,9 +22844,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.7, + "duration_ms": 4.89, "detail": "" }, { @@ -22780,12 +22854,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.94, + "duration_ms": 4.95, "detail": "" }, { @@ -22793,12 +22867,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 2.54, + "duration_ms": 4.63, "detail": "" }, { @@ -22811,7 +22885,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 4.24, + "duration_ms": 8.69, "detail": "" }, { @@ -22824,7 +22898,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.43, + "duration_ms": 7.88, "detail": "" }, { @@ -22835,9 +22909,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 4.66, "detail": "" }, { @@ -22848,9 +22922,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 9.24, "detail": "" }, { @@ -22861,9 +22935,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 5.74, "detail": "" }, { @@ -22871,12 +22945,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 2.36, + "duration_ms": 4.18, "detail": "" }, { @@ -22884,12 +22958,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/33871242-154a-4d60-8a81-fa99ce3e8512", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 7.1, "detail": "" }, { @@ -22900,9 +22974,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 4.28, "detail": "" }, { @@ -22913,9 +22987,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 3.89, + "duration_ms": 4.85, "detail": "" }, { @@ -22923,12 +22997,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.23, + "duration_ms": 5.19, "detail": "" }, { @@ -22936,12 +23010,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "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": 3.08, + "duration_ms": 4.6, "detail": "" }, { @@ -22949,12 +23023,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/6a95d8c5-495b-44dd-a591-4c7121df1018", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.52, + "duration_ms": 5.45, "detail": "" }, { @@ -22967,7 +23041,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.29, + "duration_ms": 5.46, "detail": "" }, { @@ -22980,7 +23054,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 6.07, + "duration_ms": 6.68, "detail": "" }, { @@ -22988,12 +23062,12 @@ "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/320f7329-0f78-4ddf-be85-3c2957ed775d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.63, + "duration_ms": 5.3, "detail": "" }, { @@ -23001,12 +23075,12 @@ "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/320f7329-0f78-4ddf-be85-3c2957ed775d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/34eae675-6bff-4a6b-a961-eb10022e2188", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.11, + "duration_ms": 10.32, "detail": "" }, { @@ -23014,12 +23088,12 @@ "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/320f7329-0f78-4ddf-be85-3c2957ed775d", + "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": 2.47, + "duration_ms": 5.59, "detail": "" }, { @@ -23032,7 +23106,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.61, + "duration_ms": 5.27, "detail": "" }, { @@ -23045,7 +23119,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.69, + "duration_ms": 5.71, "detail": "" }, { @@ -23058,7 +23132,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.94, + "duration_ms": 7.92, "detail": "" }, { @@ -23071,7 +23145,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 5.11, "detail": "" }, { @@ -23079,12 +23153,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.99, + "duration_ms": 6.52, "detail": "" }, { @@ -23097,7 +23171,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 3.83, "detail": "" }, { @@ -23110,7 +23184,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.89, + "duration_ms": 5.21, "detail": "" }, { @@ -23121,9 +23195,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.75, "detail": "" }, { @@ -23134,9 +23208,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 5.39, "detail": "" }, { @@ -23144,12 +23218,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.28, + "duration_ms": 3.46, "detail": "" }, { @@ -23162,7 +23236,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 3.55, "detail": "" }, { @@ -23175,7 +23249,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.18, + "duration_ms": 5.53, "detail": "" }, { @@ -23188,7 +23262,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 3.59, "detail": "" }, { @@ -23201,7 +23275,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 5.55, "detail": "" }, { @@ -23209,12 +23283,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.36, + "duration_ms": 5.41, "detail": "" }, { @@ -23227,7 +23301,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 7.01, "detail": "" }, { @@ -23240,7 +23314,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.31, + "duration_ms": 6.25, "detail": "" }, { @@ -23251,9 +23325,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 4.98, "detail": "" }, { @@ -23261,12 +23335,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.36, + "duration_ms": 4.61, "detail": "" }, { @@ -23274,12 +23348,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.38, + "duration_ms": 4.62, "detail": "" }, { @@ -23292,7 +23366,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 4.9, "detail": "" }, { @@ -23305,7 +23379,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 6.96, "detail": "" }, { @@ -23316,9 +23390,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.26, "detail": "" }, { @@ -23329,9 +23403,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.19, "detail": "" }, { @@ -23339,12 +23413,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 1.25, + "duration_ms": 4.69, "detail": "" }, { @@ -23352,12 +23426,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/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": 1.44, + "duration_ms": 4.8, "detail": "" }, { @@ -23365,12 +23439,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/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": 1.27, + "duration_ms": 4.57, "detail": "" }, { @@ -23378,12 +23452,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/steps/b7ea6f9d-e212-48c4-86eb-fae82fa47541", + "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": 1.17, + "duration_ms": 3.73, "detail": "" }, { @@ -23391,12 +23465,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/steps/391ebb06-4178-4d5b-81c5-567f2c67eda0", + "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": 1.23, + "duration_ms": 3.07, "detail": "" }, { @@ -23404,12 +23478,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/steps/cc05e3a3-7bb6-4ae0-9486-51a062a3cb15", + "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": 1.18, + "duration_ms": 3.52, "detail": "" }, { @@ -23422,7 +23496,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.53, + "duration_ms": 12.0, "detail": "" }, { @@ -23435,7 +23509,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 6.68, "detail": "" }, { @@ -23446,9 +23520,9 @@ "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 4.52, "detail": "" }, { @@ -23461,7 +23535,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 5.76, "detail": "" }, { @@ -23472,9 +23546,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 4.15, "detail": "" }, { @@ -23487,7 +23561,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 3.98, "detail": "" }, { @@ -23498,9 +23572,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.1, + "duration_ms": 4.44, "detail": "" }, { @@ -23513,7 +23587,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 8.47, "detail": "" }, { @@ -23524,9 +23598,9 @@ "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 4.47, "detail": "" }, { @@ -23539,7 +23613,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 4.19, "detail": "" }, { @@ -23552,7 +23626,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 4.63, "detail": "" }, { @@ -23565,7 +23639,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 4.44, "detail": "" }, { @@ -23573,12 +23647,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1107", + "path_resolved": "/ovirt-engine/api/events/50", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 4.62, "detail": "" }, { @@ -23591,7 +23665,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 5.71, "detail": "" }, { @@ -23602,9 +23676,9 @@ "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 4.9, "detail": "" }, { @@ -23617,7 +23691,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 5.89, "detail": "" }, { @@ -23625,12 +23699,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/d2864efa-9152-41eb-aab7-cc7208f4de44", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 6.19, "detail": "" }, { @@ -23643,7 +23717,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.25, + "duration_ms": 9.26, "detail": "" }, { @@ -23651,12 +23725,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0", + "path_resolved": "/ovirt-engine/api/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 4.34, "detail": "" }, { @@ -23669,7 +23743,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 5.46, "detail": "" }, { @@ -23677,12 +23751,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 5.05, "detail": "" }, { @@ -23695,7 +23769,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 6.79, "detail": "" }, { @@ -23708,7 +23782,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 5.91, "detail": "" }, { @@ -23721,7 +23795,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 5.06, "detail": "" }, { @@ -23732,9 +23806,9 @@ "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 4.68, "detail": "" }, { @@ -23747,7 +23821,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 7.06, "detail": "" }, { @@ -23755,12 +23829,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/7795814a-a193-4bdb-9153-121403fbaa08", + "path_resolved": "/ovirt-engine/api/storageconnections/fadb7985-9237-410d-b6a8-04b5fc69b8e0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 12.13, "detail": "" }, { @@ -23773,7 +23847,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 8.47, "detail": "" }, { @@ -23784,9 +23858,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 5.84, "detail": "" }, { @@ -23799,7 +23873,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 6.32, "detail": "" }, { @@ -23810,9 +23884,9 @@ "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 4.96, "detail": "" }, { @@ -23825,7 +23899,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 5.16, "detail": "" }, { @@ -23836,9 +23910,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 7.65, "detail": "" }, { @@ -23851,7 +23925,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 6.56, "detail": "" }, { @@ -23864,7 +23938,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 6.88, "detail": "" }, { @@ -23877,7 +23951,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 6.09, "detail": "" }, { @@ -23888,9 +23962,9 @@ "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 6.2, "detail": "" }, { @@ -23903,7 +23977,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.13, + "duration_ms": 6.07, "detail": "" }, { @@ -23911,12 +23985,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/844b95ba-5247-45b8-8879-8a02c3161d71", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.82, + "duration_ms": 4.29, "detail": "" }, { @@ -23924,12 +23998,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/9909ce17-041a-4254-842f-f40c33ea712b/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.82, + "duration_ms": 5.35, "detail": "" }, { @@ -23937,12 +24011,12 @@ "operation_id": "head.diskattachments.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/01ee62c4-db52-4e33-8c3b-15460016bfdf/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.74, + "duration_ms": 5.09, "detail": "" }, { @@ -23950,12 +24024,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/695c08d2-7b4a-427a-ab2c-b38553002368/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.21, + "duration_ms": 4.35, "detail": "" }, { @@ -23963,12 +24037,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/cbdf234b-769e-4d3a-863b-87555ee752f1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.99, + "duration_ms": 5.25, "detail": "" }, { @@ -23976,12 +24050,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/1d424bc7-a162-4f73-8c4a-b7b9fc517055/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.7, + "duration_ms": 5.55, "detail": "" }, { @@ -23989,12 +24063,12 @@ "operation_id": "head.cdroms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/b6dfe207-5bbe-4192-8f9a-4fd8aac5aaf5/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.14, + "duration_ms": 4.99, "detail": "" }, { @@ -24002,12 +24076,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/ba3b6d68-3f15-4a02-b6d8-a474c3846806/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.91, + "duration_ms": 7.03, "detail": "" }, { @@ -24015,12 +24089,12 @@ "operation_id": "head.snapshots.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/692ab945-3e78-4fbb-b8b7-a4ee6a86cb30/snapshots/d5e3718a-26c8-401b-82cd-4160fa4276c0", + "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": 1.49, + "duration_ms": 7.73, "detail": "" }, { @@ -24028,12 +24102,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/498a8b75-006e-485a-a66e-da19206918bb/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.8, + "duration_ms": 7.29, "detail": "" }, { @@ -24041,12 +24115,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/3b24f2fc-8f8b-4a31-9f19-ca04108ce988/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.9, + "duration_ms": 7.68, "detail": "" }, { @@ -24054,12 +24128,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/33587095-d38d-4e30-ae69-ae00bd65da44/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.56, + "duration_ms": 9.15, "detail": "" }, { @@ -24067,12 +24141,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/15d6f3ea-d001-44c0-973b-f564946710a8/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.78, + "duration_ms": 9.58, "detail": "" }, { @@ -24080,12 +24154,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/850217ea-c0b8-4940-a940-e1e986f3d184/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.99, + "duration_ms": 6.84, "detail": "" }, { @@ -24093,12 +24167,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/fe8924df-01ae-4af4-8de1-59e0ed450d58/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 6.72, "detail": "" }, { @@ -24106,12 +24180,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/73bd4f3d-491f-4d55-8816-f708036f2751/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.33, + "duration_ms": 9.16, "detail": "" }, { @@ -24119,12 +24193,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/f392beaa-0d6d-409d-9907-f02c0bdc94c1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.44, + "duration_ms": 8.27, "detail": "" }, { @@ -24132,12 +24206,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/965e32f0-d2b7-48c4-8367-e1f64b4db82a/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.13, + "duration_ms": 7.9, "detail": "" }, { @@ -24145,12 +24219,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/fbe8da60-bfa7-4046-85b6-729396d09962/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.21, + "duration_ms": 11.11, "detail": "" }, { @@ -24158,12 +24232,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/934574a7-65f0-4a36-ac5d-45cedb992238/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.38, + "duration_ms": 8.5, "detail": "" }, { @@ -24171,12 +24245,12 @@ "operation_id": "head.statistics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/cdfd2d6f-168b-4353-ba2f-d82c44146cde/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 13.24, "detail": "" }, { @@ -24187,9 +24261,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 5.89, "detail": "" }, { @@ -24197,12 +24271,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.96, + "duration_ms": 4.59, "detail": "" }, { @@ -24215,7 +24289,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.64, + "duration_ms": 3.52, "detail": "" }, { @@ -24228,7 +24302,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.96, + "duration_ms": 3.31, "detail": "" }, { @@ -24241,7 +24315,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.0, + "duration_ms": 3.57, "detail": "" }, { @@ -24252,9 +24326,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 4.67, "detail": "" }, { @@ -24265,9 +24339,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 4.31, "detail": "" }, { @@ -24278,9 +24352,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 5.37, "detail": "" }, { @@ -24291,9 +24365,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 6.05, "detail": "" }, { @@ -24301,12 +24375,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 4.83, "detail": "" }, { @@ -24319,7 +24393,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.25, + "duration_ms": 4.24, "detail": "" }, { @@ -24327,12 +24401,12 @@ "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/320f7329-0f78-4ddf-be85-3c2957ed775d", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 3.15, "detail": "" }, { @@ -24345,7 +24419,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 2.66, "detail": "" }, { @@ -24358,7 +24432,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.84, "detail": "" }, { @@ -24371,7 +24445,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 2.77, "detail": "" }, { @@ -24382,9 +24456,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.44, + "duration_ms": 2.66, "detail": "" }, { @@ -24397,7 +24471,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 5.01, "detail": "" }, { @@ -24410,7 +24484,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 8.93, "detail": "" }, { @@ -24423,7 +24497,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 4.38, "detail": "" }, { @@ -24434,9 +24508,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 7.26, "detail": "" }, { @@ -24449,7 +24523,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 5.86, "detail": "" }, { @@ -24460,9 +24534,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 5.45, "detail": "" }, { @@ -24470,12 +24544,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/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": 1.51, + "duration_ms": 4.52, "detail": "" }, { @@ -24483,12 +24557,12 @@ "operation_id": "head.steps.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/steps/3f6ea5f5-00f0-4304-aa98-8e010d04eb33", + "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": 1.26, + "duration_ms": 4.08, "detail": "" }, { @@ -24501,7 +24575,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.51, + "duration_ms": 6.81, "detail": "" }, { @@ -24514,7 +24588,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 5.02, "detail": "" }, { @@ -24525,9 +24599,9 @@ "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 3.91, "detail": "" }, { @@ -24540,7 +24614,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 3.94, "detail": "" }, { @@ -24551,9 +24625,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 4.55, "detail": "" }, { @@ -24566,7 +24640,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 5.69, "detail": "" }, { @@ -24577,9 +24651,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 4.78, "detail": "" }, { @@ -24592,7 +24666,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 5.37, "detail": "" }, { @@ -24603,9 +24677,9 @@ "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 5.22, "detail": "" }, { @@ -24618,7 +24692,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 4.84, "detail": "" }, { @@ -24631,7 +24705,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 4.69, "detail": "" }, { @@ -24644,7 +24718,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 5.25, "detail": "" }, { @@ -24652,12 +24726,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1107", + "path_resolved": "/ovirt-engine/api/v3/events/50", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 4.03, "detail": "" }, { @@ -24670,7 +24744,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 5.58, "detail": "" }, { @@ -24681,9 +24755,9 @@ "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 3.91, "detail": "" }, { @@ -24696,7 +24770,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.91, "detail": "" }, { @@ -24704,12 +24778,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/b9648245-3b2e-4f2f-a001-c5b50adc5008", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 3.55, "detail": "" }, { @@ -24722,7 +24796,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.6, + "duration_ms": 5.79, "detail": "" }, { @@ -24730,12 +24804,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0", + "path_resolved": "/ovirt-engine/api/v3/jobs/2b233cce-f099-4612-bfeb-f79aa1a72ab4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 4.41, "detail": "" }, { @@ -24748,7 +24822,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 4.8, "detail": "" }, { @@ -24756,12 +24830,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.65, "detail": "" }, { @@ -24774,7 +24848,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 4.18, "detail": "" }, { @@ -24787,7 +24861,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 4.25, "detail": "" }, { @@ -24800,7 +24874,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 4.59, "detail": "" }, { @@ -24811,9 +24885,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 4.27, "detail": "" }, { @@ -24826,7 +24900,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 5.79, "detail": "" }, { @@ -24834,12 +24908,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/7795814a-a193-4bdb-9153-121403fbaa08", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/fadb7985-9237-410d-b6a8-04b5fc69b8e0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 11.24, "detail": "" }, { @@ -24852,7 +24926,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 7.91, "detail": "" }, { @@ -24863,9 +24937,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 6.53, "detail": "" }, { @@ -24878,7 +24952,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 6.22, "detail": "" }, { @@ -24889,9 +24963,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 5.41, "detail": "" }, { @@ -24904,7 +24978,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 5.64, "detail": "" }, { @@ -24915,9 +24989,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 5.12, "detail": "" }, { @@ -24930,7 +25004,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.99, + "duration_ms": 3.84, "detail": "" }, { @@ -24943,7 +25017,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 4.85, "detail": "" }, { @@ -24956,7 +25030,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 4.74, "detail": "" }, { @@ -24967,9 +25041,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.32, + "duration_ms": 6.1, "detail": "" }, { @@ -24982,7 +25056,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 10.44, "detail": "" }, { @@ -24990,12 +25064,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/eaac90ac-0dc5-4d31-9404-12478a7bf2bf", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 4.57, "detail": "" }, { @@ -25003,12 +25077,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/63311b4d-8292-4044-9366-129c11252482/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": 1.78, + "duration_ms": 4.11, "detail": "" }, { @@ -25016,12 +25090,12 @@ "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/96168277-a0d3-4461-8df6-6d2aff34f0fc/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.62, + "duration_ms": 3.97, "detail": "" }, { @@ -25029,12 +25103,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/7e1deb3c-437c-43c6-9903-d79d2fe514b5/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.47, + "duration_ms": 4.37, "detail": "" }, { @@ -25042,12 +25116,12 @@ "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/db7aa7b3-cabf-4b3c-a712-ea319249970a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.42, + "duration_ms": 4.06, "detail": "" }, { @@ -25055,12 +25129,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/0098c7cd-fd49-48a1-8c76-3e84750d4d34/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": 1.61, + "duration_ms": 4.12, "detail": "" }, { @@ -25068,12 +25142,12 @@ "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/8b085034-fed0-48e6-bc26-5051fdf9e15b/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.82, + "duration_ms": 5.7, "detail": "" }, { @@ -25081,12 +25155,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/180cbbac-0392-4880-8289-7bd5349bcc5b/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": 1.61, + "duration_ms": 3.87, "detail": "" }, { @@ -25094,12 +25168,12 @@ "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/fc2eda95-f338-4c0d-8eea-46ce37938021/snapshots/68506307-7063-46f1-994a-a145ec543bb6", + "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": 1.37, + "duration_ms": 3.59, "detail": "" }, { @@ -25107,12 +25181,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/2cfd9ebd-c0a0-4eb3-8b87-01c8d62fc68d/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.53, + "duration_ms": 5.4, "detail": "" }, { @@ -25120,12 +25194,12 @@ "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/091a3518-ea31-4d58-89b6-67ccb8a8cfce/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.37, + "duration_ms": 7.48, "detail": "" }, { @@ -25133,12 +25207,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/0f53eaf7-ef93-4007-b15d-a553011b040c/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.15, + "duration_ms": 6.31, "detail": "" }, { @@ -25146,12 +25220,12 @@ "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/799f7f2a-d031-4c4a-a748-3681694f2efb/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.55, + "duration_ms": 7.92, "detail": "" }, { @@ -25159,12 +25233,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/0ebffe77-ff5b-4a11-9700-1aa0648542e2/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.54, + "duration_ms": 8.51, "detail": "" }, { @@ -25172,12 +25246,12 @@ "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/24a3aa0a-4df7-400a-b492-b298b7506276/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 4.88, "detail": "" }, { @@ -25185,12 +25259,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/ee3aee3e-4c14-4f37-bc6c-ad8cf652e02e/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.66, + "duration_ms": 5.49, "detail": "" }, { @@ -25198,12 +25272,12 @@ "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/e8cb333a-006f-48f2-accb-1ea94c8b3270/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.59, + "duration_ms": 5.67, "detail": "" }, { @@ -25211,12 +25285,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/15e834f0-657f-420c-ac14-86c63a99e122/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.53, + "duration_ms": 4.99, "detail": "" }, { @@ -25224,12 +25298,12 @@ "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/1dfa0183-2467-4c52-9647-8c6bd59ef402/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.53, + "duration_ms": 5.3, "detail": "" }, { @@ -25237,12 +25311,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/9dc64bde-9727-44bf-9063-4a4a7136f4f1/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.53, + "duration_ms": 5.38, "detail": "" }, { @@ -25250,12 +25324,12 @@ "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/ac4d57b2-8e43-46d4-a3fd-70a0d6f8fc7d/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 5.61, "detail": "" }, { @@ -25266,9 +25340,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 6.78, "detail": "" }, { @@ -25276,12 +25350,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 5.42, "detail": "" }, { @@ -25294,7 +25368,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 5.13, "detail": "" }, { @@ -25307,7 +25381,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 4.27, "detail": "" }, { @@ -25320,7 +25394,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 3.78, "detail": "" }, { @@ -25331,9 +25405,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 4.36, "detail": "" }, { @@ -25344,9 +25418,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 5.34, "detail": "" }, { @@ -25357,9 +25431,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.39, "detail": "" }, { @@ -25370,9 +25444,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 5.3, "detail": "" }, { @@ -25380,12 +25454,12 @@ "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/5a56cb28-8d3f-41bc-a219-aaa26e39048e", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 6.04, "detail": "" }, { @@ -25398,7 +25472,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 5.47, "detail": "" }, { @@ -25406,12 +25480,12 @@ "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/320f7329-0f78-4ddf-be85-3c2957ed775d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 5.16, "detail": "" }, { @@ -25424,7 +25498,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 5.03, "detail": "" }, { @@ -25437,7 +25511,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 6.32, "detail": "" }, { @@ -25450,7 +25524,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 6.83, "detail": "" }, { @@ -25461,9 +25535,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 6.03, "detail": "" }, { @@ -25476,7 +25550,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 4.78, "detail": "" }, { @@ -25489,7 +25563,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 8.1, "detail": "" }, { @@ -25502,7 +25576,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 5.35, "detail": "" }, { @@ -25513,9 +25587,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 6.75, "detail": "" }, { @@ -25528,7 +25602,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 6.6, "detail": "" }, { @@ -25539,9 +25613,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.36, + "duration_ms": 6.72, "detail": "" }, { @@ -25549,12 +25623,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/c0c4d043-8921-4bb9-9865-80a2333360f0/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": 1.6, + "duration_ms": 5.97, "detail": "" }, { @@ -25562,12 +25636,12 @@ "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/c0c4d043-8921-4bb9-9865-80a2333360f0/steps/a6f2d9b1-227e-4861-a454-1eaaf4b1ab4d", + "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": 1.29, + "duration_ms": 4.82, "detail": "" }, { @@ -25580,7 +25654,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.19, + "duration_ms": 9.7, "detail": "" }, { @@ -25593,7 +25667,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 3.53, "detail": "" }, { @@ -25606,7 +25680,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.52, + "duration_ms": 4.26, "detail": "" }, { @@ -25619,7 +25693,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.9, "detail": "" }, { @@ -25627,12 +25701,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/efb00394-75ef-4c7e-857d-633a0c512896", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 3.49, "detail": "" }, { @@ -25640,12 +25714,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/467b38ef-0f76-42be-9be6-b20fdf1899bc", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.73, "detail": "" }, { @@ -25658,7 +25732,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 2.38, "detail": "" }, { @@ -25671,7 +25745,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.68, + "duration_ms": 4.27, "detail": "" }, { @@ -25684,7 +25758,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 6.64, "detail": "" }, { @@ -25692,12 +25766,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/9b9abc2b-2320-451f-b4d4-4969cf007076", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 7.5, "detail": "" }, { @@ -25705,12 +25779,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/2cb75843-8181-47d3-b76b-7257992d4ce0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 8.16, "detail": "" }, { @@ -25723,7 +25797,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.35, + "duration_ms": 10.1, "detail": "" }, { @@ -25736,7 +25810,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.67, + "duration_ms": 6.38, "detail": "" }, { @@ -25749,7 +25823,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.72, + "duration_ms": 3.81, "detail": "" }, { @@ -25762,7 +25836,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.45, "detail": "" }, { @@ -25775,7 +25849,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.44, + "duration_ms": 3.87, "detail": "" }, { @@ -25788,7 +25862,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 2.6, "detail": "" }, { @@ -25796,12 +25870,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/d684062a-90e4-4ed2-a9b2-fb05cde1f696", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 3.14, "detail": "" }, { @@ -25809,12 +25883,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/e92defbd-a153-4c86-b3b3-d4a595006d05", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 4.57, "detail": "" }, { @@ -25827,7 +25901,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.67, + "duration_ms": 4.19, "detail": "" }, { @@ -25840,7 +25914,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 3.16, "detail": "" }, { @@ -25853,7 +25927,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.3, + "duration_ms": 6.8, "detail": "" }, { @@ -25866,7 +25940,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 2.41, "detail": "" }, { @@ -25874,12 +25948,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/9a562a8f-264a-4ab2-8722-2fe774a5c735", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 2.83, "detail": "" }, { @@ -25887,12 +25961,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/6330a886-6648-4441-acc1-3542c6d84ccb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 3.08, "detail": "" }, { @@ -25905,7 +25979,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.83, + "duration_ms": 6.52, "detail": "" }, { @@ -25918,7 +25992,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.58, + "duration_ms": 3.53, "detail": "" }, { @@ -25931,7 +26005,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.91, + "duration_ms": 4.51, "detail": "" }, { @@ -25944,7 +26018,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.67, + "duration_ms": 3.48, "detail": "" }, { @@ -25957,7 +26031,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.39, "detail": "" }, { @@ -25970,7 +26044,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.04, + "duration_ms": 2.75, "detail": "" }, { @@ -25983,7 +26057,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 2.39, "detail": "" }, { @@ -25996,7 +26070,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 2.71, "detail": "" }, { @@ -26004,12 +26078,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/domains/{id}", - "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/domains/aa3ad354-6ca3-4545-b0d5-1d221207d73d", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.93, + "duration_ms": 1.68, "detail": "" }, { @@ -26022,7 +26096,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 2.42, "detail": "" }, { @@ -26035,7 +26109,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.98, + "duration_ms": 2.28, "detail": "" }, { @@ -26043,12 +26117,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1108", + "path_resolved": "/ovirt-engine/api/events/51", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 2.23, "detail": "" }, { @@ -26056,12 +26130,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1108", + "path_resolved": "/ovirt-engine/api/events/51", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.01, + "duration_ms": 2.07, "detail": "" }, { @@ -26069,12 +26143,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1108", + "path_resolved": "/ovirt-engine/api/events/c0049667-3195-44da-9ed7-a327521e29f5", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 1.94, "detail": "" }, { @@ -26087,7 +26161,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.53, "detail": "" }, { @@ -26100,7 +26174,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.93, + "duration_ms": 5.14, "detail": "" }, { @@ -26113,7 +26187,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 3.21, "detail": "" }, { @@ -26121,12 +26195,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/c1f379b2-1f8b-4bda-b61e-3a29c91be458", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 5.26, "detail": "" }, { @@ -26134,12 +26208,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/8df8d2f8-d4d8-4733-8907-d8a32dd4fdc8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 6.39, "detail": "" }, { @@ -26152,7 +26226,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 4.96, "detail": "" }, { @@ -26163,9 +26237,9 @@ "path_resolved": "/ovirt-engine/api/hosts", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.73, + "duration_ms": 8.49, "detail": "" }, { @@ -26173,12 +26247,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/60bd0e97-cfda-40f8-8c5f-a8f45d333e21", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 7.01, "detail": "" }, { @@ -26186,12 +26260,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/1ab5d004-725b-46d0-a247-4c0e4f573567", + "path_resolved": "/ovirt-engine/api/hosts/6e5bce90-28a6-4395-95b2-2332e50716de", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 8.93, "detail": "" }, { @@ -26199,12 +26273,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ba227e43-5847-4634-881b-4dba6b96ad1a", + "path_resolved": "/ovirt-engine/api/hosts/f39db442-de01-4b69-a8d7-ded45ae859a9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 6.42, "detail": "" }, { @@ -26212,12 +26286,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/hosts/0dfa9374-764e-429f-842d-c12594be16a3/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": 2.07, + "duration_ms": 10.33, "detail": "" }, { @@ -26225,12 +26299,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/hosts/308852bb-e3e9-4bce-a891-49cdce5a0330/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": 1.81, + "duration_ms": 9.17, "detail": "" }, { @@ -26238,12 +26312,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/hosts/eb7f5d2b-582b-4ecd-b204-70f55705fa0c/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.69, + "duration_ms": 9.13, "detail": "" }, { @@ -26251,12 +26325,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/hosts/6a6e2ea7-dfa0-4393-b860-c9d36e5f8fd2/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": 1.81, + "duration_ms": 10.18, "detail": "" }, { @@ -26264,12 +26338,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/hosts/fb99fe05-c697-49c4-ada4-f18163523016/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": 1.88, + "duration_ms": 19.04, "detail": "" }, { @@ -26277,12 +26351,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/hosts/a7a5bf14-80e0-46c7-a3d1-ba6d3bcaa16a/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": 2.37, + "duration_ms": 8.67, "detail": "" }, { @@ -26290,12 +26364,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/hosts/2d18c211-0bbb-4ec2-9e19-e2b6e2a6345a/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": 1.76, + "duration_ms": 9.6, "detail": "" }, { @@ -26303,12 +26377,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/hosts/ff08fd26-545d-4eb1-a518-2b8624c1dbaf/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": 1.7, + "duration_ms": 8.78, "detail": "" }, { @@ -26316,12 +26390,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/hosts/15eead42-28d1-40b9-b8a6-26fd2f45357b/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": 1.67, + "duration_ms": 8.56, "detail": "" }, { @@ -26329,12 +26403,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/hosts/9c7e2bf0-8ebb-41cb-8dab-8d04c20e3c9f/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": 1.65, + "duration_ms": 7.57, "detail": "" }, { @@ -26347,7 +26421,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 5.67, "detail": "" }, { @@ -26360,7 +26434,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.09, + "duration_ms": 4.62, "detail": "" }, { @@ -26368,12 +26442,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/3767e7a2-9f89-405a-917d-e16d0c8c3935", + "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 3.94, "detail": "" }, { @@ -26381,12 +26455,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/3767e7a2-9f89-405a-917d-e16d0c8c3935", + "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.98, + "duration_ms": 3.44, "detail": "" }, { @@ -26394,12 +26468,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/3767e7a2-9f89-405a-917d-e16d0c8c3935", + "path_resolved": "/ovirt-engine/api/jobs/531b3bcd-507b-4659-a9c6-930f96849150", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 4.05, "detail": "" }, { @@ -26412,7 +26486,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 4.17, "detail": "" }, { @@ -26425,7 +26499,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 17.47, "detail": "" }, { @@ -26433,12 +26507,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/05bd601f-3c17-4fb9-aeda-6de2549d49f7", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 3.61, "detail": "" }, { @@ -26446,12 +26520,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/05bd601f-3c17-4fb9-aeda-6de2549d49f7", + "path_resolved": "/ovirt-engine/api/networks/865029d9-f75d-4496-ab39-b8f043178f5a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 5.19, "detail": "" }, { @@ -26459,12 +26533,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/05bd601f-3c17-4fb9-aeda-6de2549d49f7", + "path_resolved": "/ovirt-engine/api/networks/313d6490-10fc-4381-a23c-75598469859c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 4.26, "detail": "" }, { @@ -26477,7 +26551,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 3.84, "detail": "" }, { @@ -26490,7 +26564,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 4.38, "detail": "" }, { @@ -26503,7 +26577,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 3.54, "detail": "" }, { @@ -26511,12 +26585,12 @@ "operation_id": "openstackimageproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/77b9674e-4758-401e-a459-ebba15da5950", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 5.33, "detail": "" }, { @@ -26524,12 +26598,12 @@ "operation_id": "openstackimageproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/2da70e76-bfc0-40ab-8284-a5236b0150a1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 3.72, "detail": "" }, { @@ -26542,7 +26616,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 4.32, "detail": "" }, { @@ -26555,7 +26629,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.32, + "duration_ms": 4.88, "detail": "" }, { @@ -26568,7 +26642,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 3.9, "detail": "" }, { @@ -26576,12 +26650,12 @@ "operation_id": "openstacknetworkproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/2bb5e51d-9475-4d5d-be02-478512d5813e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 5.3, "detail": "" }, { @@ -26589,12 +26663,12 @@ "operation_id": "openstacknetworkproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/7b7f7b57-412c-4b03-8f74-9ca945ce045f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 5.44, "detail": "" }, { @@ -26607,7 +26681,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 5.19, "detail": "" }, { @@ -26620,7 +26694,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.97, + "duration_ms": 4.2, "detail": "" }, { @@ -26633,7 +26707,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 8.32, "detail": "" }, { @@ -26646,7 +26720,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.95, + "duration_ms": 4.76, "detail": "" }, { @@ -26654,12 +26728,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/permissions/{id}", - "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/permissions/32ed34d6-9e24-4637-bc7d-01a52b6422aa", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.9, + "duration_ms": 3.31, "detail": "" }, { @@ -26672,7 +26746,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 4.24, "detail": "" }, { @@ -26685,7 +26759,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.27, + "duration_ms": 5.06, "detail": "" }, { @@ -26698,7 +26772,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 5.81, "detail": "" }, { @@ -26706,12 +26780,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/b263b194-8559-4cc3-b7d4-71140b4aec59", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 7.1, "detail": "" }, { @@ -26719,12 +26793,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/591b9873-12be-4a76-b20d-8e9082b738fd", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 5.07, "detail": "" }, { @@ -26737,7 +26811,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 4.42, "detail": "" }, { @@ -26750,7 +26824,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 4.4, "detail": "" }, { @@ -26763,7 +26837,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 4.21, "detail": "" }, { @@ -26771,12 +26845,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/0e2ed0b0-e4b9-4023-a7f8-22ff0be669b1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 5.53, "detail": "" }, { @@ -26784,12 +26858,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/bd65d746-e97d-4238-b4be-b5a644c61f21", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 6.3, "detail": "" }, { @@ -26802,7 +26876,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 6.24, "detail": "" }, { @@ -26815,7 +26889,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 8.82, "detail": "" }, { @@ -26828,7 +26902,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 3.69, "detail": "" }, { @@ -26836,12 +26910,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/b29401e0-7c67-4550-9354-95f4a01fc8aa", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 4.6, "detail": "" }, { @@ -26849,12 +26923,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/f3c08569-e14b-485b-9195-a488d4161fb3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 6.08, "detail": "" }, { @@ -26867,7 +26941,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 7.84, "detail": "" }, { @@ -26880,7 +26954,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.31, + "duration_ms": 59.37, "detail": "" }, { @@ -26888,12 +26962,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/a7f5ffbc-33aa-455f-a159-f822ad157f95", + "path_resolved": "/ovirt-engine/api/storageconnections/45bf64d6-cd05-4b2c-ae43-bb3ef37f38c0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 8.05, "detail": "" }, { @@ -26901,12 +26975,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/a7f5ffbc-33aa-455f-a159-f822ad157f95", + "path_resolved": "/ovirt-engine/api/storageconnections/54601e1d-236a-450f-ae9a-6dda4ea74570", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 8.04, "detail": "" }, { @@ -26914,12 +26988,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/a7f5ffbc-33aa-455f-a159-f822ad157f95", + "path_resolved": "/ovirt-engine/api/storageconnections/b1f74437-6f92-4237-bc95-481a17883fe5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 7.83, "detail": "" }, { @@ -26932,7 +27006,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 5.48, "detail": "" }, { @@ -26945,7 +27019,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.52, + "duration_ms": 8.61, "detail": "" }, { @@ -26958,7 +27032,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 5.88, "detail": "" }, { @@ -26966,12 +27040,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/7f1ba811-e144-45d0-ade2-13f3031403e1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.36, + "duration_ms": 4.11, "detail": "" }, { @@ -26979,12 +27053,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/bec7bb4d-7d38-460e-9314-939dc4ba7191", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 3.32, "detail": "" }, { @@ -26997,7 +27071,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 6.76, "detail": "" }, { @@ -27010,7 +27084,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 11.3, "detail": "" }, { @@ -27023,7 +27097,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 14.07, "detail": "" }, { @@ -27036,7 +27110,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.39, + "duration_ms": 4.36, "detail": "" }, { @@ -27049,7 +27123,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.81, "detail": "" }, { @@ -27057,12 +27131,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/ef098d0d-095c-4347-9245-1a80ecefae9a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 2.93, "detail": "" }, { @@ -27070,12 +27144,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/eea372bd-bceb-4b0e-9381-c489bdac253b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 4.99, "detail": "" }, { @@ -27088,7 +27162,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 3.71, "detail": "" }, { @@ -27101,7 +27175,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.53, + "duration_ms": 5.48, "detail": "" }, { @@ -27114,7 +27188,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 3.13, "detail": "" }, { @@ -27122,12 +27196,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/d961d646-8895-4042-af22-badaf27b8786", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 2.13, "detail": "" }, { @@ -27135,12 +27209,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/840fa8a5-8bb5-4d10-b5ae-bab6bb320e32", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 2.36, "detail": "" }, { @@ -27153,7 +27227,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.68, + "duration_ms": 3.1, "detail": "" }, { @@ -27166,7 +27240,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 2.64, "detail": "" }, { @@ -27179,7 +27253,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.04, + "duration_ms": 1.69, "detail": "" }, { @@ -27192,7 +27266,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 2.64, "detail": "" }, { @@ -27205,7 +27279,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 1.79, "detail": "" }, { @@ -27213,12 +27287,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/users/{id}", - "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/users/6d6613ba-087f-4c94-9c09-056574462f41", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 2.03, "detail": "" }, { @@ -27231,7 +27305,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 3.14, "detail": "" }, { @@ -27244,7 +27318,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.32, + "duration_ms": 2.21, "detail": "" }, { @@ -27257,7 +27331,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 1.9, "detail": "" }, { @@ -27265,12 +27339,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/3bb7bd94-8762-42b7-b279-546c245bfe5e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.6, "detail": "" }, { @@ -27278,12 +27352,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/10954197-b1a7-4ab8-8b25-950f4f253305", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 2.12, "detail": "" }, { @@ -27296,7 +27370,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 2.14, "detail": "" }, { @@ -27307,9 +27381,9 @@ "path_resolved": "/ovirt-engine/api/vms", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.17, + "duration_ms": 5.46, "detail": "" }, { @@ -27317,12 +27391,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/42d921b4-fae5-486d-a3c9-2a43c5599b39", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.51, + "duration_ms": 2.3, "detail": "" }, { @@ -27330,12 +27404,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/4439f430-b892-4c63-bf9f-3a1c0b822d5c", + "path_resolved": "/ovirt-engine/api/vms/62830b40-d1de-4fbc-b0d3-0f54989e9884", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.61, "detail": "" }, { @@ -27343,12 +27417,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/321609a7-235d-48d4-820b-ce160cafb8d7", + "path_resolved": "/ovirt-engine/api/vms/7906d2ab-90c4-49a6-b1b7-183daad50b2d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 4.08, "detail": "" }, { @@ -27356,12 +27430,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/vms/82890abe-da41-4224-9032-374efd730247/start", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.06, + "duration_ms": 4.34, "detail": "" }, { @@ -27369,12 +27443,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/vms/4aa86daa-e367-4209-b4bc-6cf344831b17/stop", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.0, + "duration_ms": 3.63, "detail": "" }, { @@ -27382,12 +27456,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/vms/17e1ac8c-adc6-4a02-a80f-d36b42c05ff0/shutdown", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.06, + "duration_ms": 3.37, "detail": "" }, { @@ -27395,12 +27469,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/vms/701d9401-e07a-4661-9ec4-9b5270b41cfe/reboot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.09, + "duration_ms": 3.48, "detail": "" }, { @@ -27408,12 +27482,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/vms/61867136-81da-411e-a1ee-63852f264c60/suspend", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.07, + "duration_ms": 3.03, "detail": "" }, { @@ -27421,12 +27495,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/vms/46b4dbfa-be8c-43d7-aa00-2ecc61bdd971/migrate", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.29, + "duration_ms": 3.56, "detail": "" }, { @@ -27434,12 +27508,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/vms/80937f7c-c954-4a9d-b93d-7011b272c961/cancelmigration", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.18, + "duration_ms": 3.35, "detail": "" }, { @@ -27447,12 +27521,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/vms/5755083e-e3b4-4a44-85c9-faf21cf334ba/clone", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 6.42, "detail": "" }, { @@ -27460,12 +27534,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/vms/fe6e23ba-d9be-46cd-a2ca-3e6fcb7ca13c/export", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.21, + "duration_ms": 3.09, "detail": "" }, { @@ -27473,12 +27547,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/vms/a2d07f93-c071-43a3-905d-501e88e36c9a/detach", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.11, + "duration_ms": 3.12, "detail": "" }, { @@ -27486,12 +27560,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/vms/3abd6464-70a0-4aa5-86e2-216d502a0d73/screenthumbnail", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 2.79, "detail": "" }, { @@ -27499,12 +27573,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/vms/c2c72196-7829-4b84-96f4-b41736de8441/ticket", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 3.35, "detail": "" }, { @@ -27512,12 +27586,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/vms/2702241d-c983-4fe4-bab0-89000ff586f3/logon", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.62, + "duration_ms": 3.14, "detail": "" }, { @@ -27525,12 +27599,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/vms/36639ddd-dd98-4390-a5e4-0d2535e79215/preview_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.37, + "duration_ms": 3.33, "detail": "" }, { @@ -27538,12 +27612,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/vms/ffbddc88-91e1-4700-94c8-2e5f26d96cbf/commit_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.25, + "duration_ms": 2.85, "detail": "" }, { @@ -27551,12 +27625,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/vms/6ba7b9e3-c3c4-4c07-b92f-ef69b78bb82c/undo_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.23, + "duration_ms": 3.51, "detail": "" }, { @@ -27564,12 +27638,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/vms/011f2d1a-6a4b-4480-b99a-0c5ff797c216/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.19, + "duration_ms": 4.33, "detail": "" }, { @@ -27577,12 +27651,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/vms/36794e5f-2d6d-4359-8b7b-43ee8454e354/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 3.66, "detail": "" }, { @@ -27595,7 +27669,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 2.02, "detail": "" }, { @@ -27606,9 +27680,9 @@ "path_resolved": "/ovirt-engine/api/vnicprofiles", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.71, + "duration_ms": 2.98, "detail": "" }, { @@ -27616,12 +27690,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/e5d8259e-b693-466f-9560-d34730c638bf", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 1.94, "detail": "" }, { @@ -27629,12 +27703,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/5e62dfcc-fbb4-4e8a-b2bc-2a604cdcf2b2", + "path_resolved": "/ovirt-engine/api/vnicprofiles/9e32519f-ecbd-484d-b565-085b5b4a8ccc", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 1.95, "detail": "" }, { @@ -27642,12 +27716,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/498d20b4-7e40-431a-b70a-712b50172d92", + "path_resolved": "/ovirt-engine/api/vnicprofiles/70b327eb-df89-4392-bfd8-b9328307a37d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 2.14, "detail": "" }, { @@ -27655,12 +27729,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/02b2b113-e4f2-4d1d-a0c9-c48acbfd8003/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, + "duration_ms": 2.22, "detail": "" }, { @@ -27668,12 +27742,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/cf9c3701-7560-4768-960e-5df08cbc5256/diskattachments", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.31, + "duration_ms": 3.75, "detail": "" }, { @@ -27681,12 +27755,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/42569b43-60a4-409b-ab0e-edbad3867ead/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.17, + "duration_ms": 2.08, "detail": "" }, { @@ -27694,12 +27768,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/1b4c6e4b-6da7-4fc3-8b6e-6aac2d60468b/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.0, + "duration_ms": 1.6, "detail": "" }, { @@ -27707,12 +27781,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/2e37f17c-1e06-4955-87da-787aee7e30de/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.61, + "duration_ms": 2.48, "detail": "" }, { @@ -27720,12 +27794,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/0cad1c2b-ca4d-4bb5-86a5-f51746147bf5/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.22, + "duration_ms": 2.36, "detail": "" }, { @@ -27733,12 +27807,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/6bd95186-8983-4c53-983a-5e549183ce30/nics", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.33, + "duration_ms": 3.36, "detail": "" }, { @@ -27746,12 +27820,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/96c9eb09-d25a-4b05-b418-b0096fc653d7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.13, + "duration_ms": 2.28, "detail": "" }, { @@ -27759,12 +27833,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/b8097a85-0bbd-4ba0-8505-8f37502b305a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/92a56508-a92f-4340-9232-620be9281b26", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 3.61, "detail": "" }, { @@ -27772,12 +27846,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/32df5a4c-c4f7-4bd8-9396-f267f4dfa60b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.31, + "duration_ms": 2.3, "detail": "" }, { @@ -27785,12 +27859,12 @@ "operation_id": "nics.activate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate", - "path_resolved": "/ovirt-engine/api/vms/30f5da45-fc76-42d3-a3a9-223ae81ff3a6/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.67, + "duration_ms": 3.27, "detail": "" }, { @@ -27798,12 +27872,12 @@ "operation_id": "nics.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/vms/cff28a79-3995-45b1-b8e0-4c89d1190d8f/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.19, + "duration_ms": 2.99, "detail": "" }, { @@ -27811,12 +27885,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/bf7a1210-8b9a-4923-aec5-be40532391d6/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.25, + "duration_ms": 2.33, "detail": "" }, { @@ -27824,12 +27898,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/a4d08290-68a3-4373-b34b-dd81ba8ebbe8/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.46, + "duration_ms": 2.4, "detail": "" }, { @@ -27837,12 +27911,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/1a85e0a6-c0ec-43c7-a579-8b02058e7232/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.19, + "duration_ms": 2.29, "detail": "" }, { @@ -27850,12 +27924,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/ca7b4757-8169-4368-a0cf-efc32355f9cf/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.39, + "duration_ms": 3.15, "detail": "" }, { @@ -27863,12 +27937,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/5756b4ef-6e69-413b-b317-84c2153d5fc0/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.13, + "duration_ms": 2.58, "detail": "" }, { @@ -27876,12 +27950,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/e7768588-2579-4399-93b7-70f4031b37d3/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.23, + "duration_ms": 2.38, "detail": "" }, { @@ -27889,12 +27963,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/f0951270-ed74-49cd-a4fd-16e9405ecbf4/snapshots", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.35, + "duration_ms": 3.55, "detail": "" }, { @@ -27902,12 +27976,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/79121749-653b-49b9-922f-21c2e69d9d94/snapshots/19da0e51-65a4-4d50-957c-46942ee305f1", + "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": 1.0, + "duration_ms": 2.1, "detail": "" }, { @@ -27915,12 +27989,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/9d1387a3-2584-477b-9e3a-28ee99061644/snapshots/3a9d2f40-5ada-4dd6-b9af-3b6f5d201f04", + "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": 1.05, + "duration_ms": 3.54, "detail": "" }, { @@ -27928,12 +28002,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/1180a840-abb1-4880-835f-d89f41efc9ec/snapshots/c219d434-4781-4f58-8b71-f7e2c20bc126", + "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": 1.08, + "duration_ms": 3.71, "detail": "" }, { @@ -27941,12 +28015,12 @@ "operation_id": "snapshots.restore", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore", - "path_resolved": "/ovirt-engine/api/vms/34db1b1f-ac01-4dee-bcbe-359a813b5b06/snapshots/44c99a9b-272f-471d-b354-9b55401ed34c/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": 1.81, + "duration_ms": 3.26, "detail": "" }, { @@ -27954,12 +28028,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/0154efa1-19e8-4086-aeec-f2b6ea5a9133/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.33, + "duration_ms": 2.41, "detail": "" }, { @@ -27967,12 +28041,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/23e4681d-59cf-455a-94dc-f8f6a4e15d55/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": 1.75, + "duration_ms": 3.91, "detail": "" }, { @@ -27980,254 +28054,7 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/6afab993-8c1f-4132-9b42-a3cb7a0cdca0/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.04, - "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/07803ed5-0c90-4678-bb63-fd26ae1d76b6/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.04, - "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/1c378568-7847-4aa0-a151-ebd5468e5d28/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.0, - "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/cff6fe86-168e-457a-b9d6-2b832b0a4239/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.36, - "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/7d24f73b-e9f7-4420-b008-489ec4fabee3/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.45, - "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/2b63ea5a-d603-43b2-8080-5eb8c72968e3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.19, - "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/f907b948-2e8c-4273-b911-3f0c3ff825a9/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.2, - "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/4fac67ce-df93-4e53-a6c4-ad4f8f30bf82/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.14, - "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/d24a27cd-29ba-4110-a820-34de35120601/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.87, - "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/e62091aa-fa0e-4155-b578-d1581e964c22/nics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.26, - "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/abeb093b-cec8-4fb2-ab34-b755b62dbdd1/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": "nics.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/cfd469ba-f3df-4412-91a9-f9323544b9f8/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.7, - "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/40ac9185-3db5-48ef-83a3-fc3c56ed8696/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 4.24, - "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/2ac2cd72-8c25-435a-b702-d24da5b17d69/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 6.43, - "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/ae9a7081-2a01-4275-986b-493d6e494d8a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.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/6a071536-44d1-4c6d-879c-3036b6060ec2/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.79, - "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/2fd1015b-0259-4078-8fc7-1a56198de274/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.73, - "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/8739e0cb-55ab-490e-af67-71002d5315b0/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.7, - "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/d64837f4-0a3a-46f1-8043-76493d235c1b/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.94, - "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/686381ae-f84f-4986-83c7-9fdbb730abf0/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", "http_status": 404, @@ -28237,309 +28064,296 @@ }, { "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/306d2739-cf44-46c0-9172-e5afd92cddf0/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 200, + "http_status": 404, "expected_hint": 200, - "duration_ms": 1.69, + "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/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/e10ed700-e6c0-4ed7-971e-8e66b6a14fed/permissions", + "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": 1.73, + "duration_ms": 4.31, "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/d378f072-7613-45ef-ad7e-47fc8254afec/permissions", + "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.29, + "duration_ms": 4.78, "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/5c80f2b7-2581-4dfc-8ae7-1223813799a6/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.89, + "duration_ms": 3.1, "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/94e22dab-1e84-4fe9-b505-5ba8c000f1db/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.14, - "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/5c3e4480-188d-4b3f-a994-8da90caa41bf/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.69, - "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/ce5fb7e6-5f65-4e42-a5f6-04c97b73e49f/statistics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, "duration_ms": 3.25, "detail": "" }, { "series": "3.3", - "operation_id": "statistics.add", + "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}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/a1501134-a089-495e-b443-d15a78870094/statistics", + "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.65, + "duration_ms": 3.56, "detail": "" }, { "series": "3.3", - "operation_id": "statistics.get", + "operation_id": "nics.get", "method": "GET", - "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/23ece9ee-f15f-4593-8e1c-29cd36a78519/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.36, + "duration_ms": 3.4, "detail": "" }, { "series": "3.3", - "operation_id": "statistics.update", + "operation_id": "nics.update", "method": "PUT", - "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ff5e97d8-3cdb-47ef-b25f-7cf40f044fc1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 2.45, - "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/eaf29099-729f-4707-9de3-6ed5e493f951/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.08, - "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": 1.64, - "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": 200, - "expected_hint": 201, - "duration_ms": 2.76, - "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/6481d6f1-ba3a-45bb-b791-b806b5d19d5c", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.72, - "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/b255b777-a2bd-4718-acd6-4ff0ef17f6c2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.33, - "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/06e19b4d-83bb-48d6-8db0-eef3968c1e0b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.04, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.23, - "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": 200, - "expected_hint": 201, - "duration_ms": 11.12, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 4.14, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, "duration_ms": 3.29, "detail": "" }, { "series": "3.3", - "operation_id": "networks.remove", + "operation_id": "nics.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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", + "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": 5.49, + "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/clusters/{cluster_id}/permissions", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions", + "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.47, + "duration_ms": 3.14, "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", + "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, + "http_status": 201, "expected_hint": 201, - "duration_ms": 7.3, + "duration_ms": 3.56, "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", + "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, @@ -28551,13 +28365,273 @@ "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": 4.62, + "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": "" }, { @@ -28565,12 +28639,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 3.51, + "duration_ms": 4.69, "detail": "" }, { @@ -28583,7 +28657,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.34, + "duration_ms": 4.88, "detail": "" }, { @@ -28596,7 +28670,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 3.34, + "duration_ms": 2.93, "detail": "" }, { @@ -28607,9 +28681,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.24, + "duration_ms": 3.02, "detail": "" }, { @@ -28617,12 +28691,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 6.46, + "duration_ms": 4.36, "detail": "" }, { @@ -28630,12 +28704,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 11.18, + "duration_ms": 3.96, "detail": "" }, { @@ -28648,7 +28722,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 28.98, + "duration_ms": 7.52, "detail": "" }, { @@ -28661,7 +28735,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 5.41, + "duration_ms": 7.2, "detail": "" }, { @@ -28672,9 +28746,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.89, + "duration_ms": 4.07, "detail": "" }, { @@ -28685,9 +28759,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.6, + "duration_ms": 4.52, "detail": "" }, { @@ -28698,9 +28772,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.27, + "duration_ms": 2.87, "detail": "" }, { @@ -28708,7 +28782,4336 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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, @@ -28716,4346 +33119,17 @@ "duration_ms": 2.31, "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.96, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.05, - "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": 404, - "expected_hint": 201, - "duration_ms": 1.9, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.81, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.94, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.94, - "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.96, - "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": 4.9, - "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/413d31be-4ac1-40e3-be24-60bc8d489591", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 4.81, - "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/413d31be-4ac1-40e3-be24-60bc8d489591", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 4.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/413d31be-4ac1-40e3-be24-60bc8d489591", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.84, - "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": 3.45, - "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": 8.27, - "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": 13.17, - "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": 10.35, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 6.01, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 5.33, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 6.53, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles/cf46c618-0769-4691-bf12-aee98ad908ea", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.95, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles/cc05b227-e0dc-4511-999b-6caa90dca9f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.21, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles/ff0f6957-9235-4090-8708-9cecb68bb04c", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.97, - "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": 1.93, - "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": 2.96, - "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": 1.58, - "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": 1.93, - "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/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.94, - "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": 1.79, - "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": 2.37, - "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": 1.79, - "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": 1.79, - "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.39, - "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": 1.65, - "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.1, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.76, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.72, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.39, - "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": 1.55, - "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.07, - "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": 1.55, - "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": 1.75, - "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/8c25e806-ce4d-573e-bc31-ed83976beb77", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.53, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.65, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps", - "kind": "collection", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.33, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps/5ef1d5b3-0ae5-4869-a0bf-e08202cdddfd", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.17, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps/52bc2207-2ba7-470a-b84d-736516041484", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.27, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps/80e51f73-3b05-4445-a2fc-f8119b6379a1", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.19, - "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": 3.11, - "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": 1.53, - "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.76, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.43, - "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/41bd259d-99ba-57db-b003-b8858163a652", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.47, - "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/41bd259d-99ba-57db-b003-b8858163a652", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.33, - "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": 1.37, - "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.04, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.23, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.43, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.22, - "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": 1.99, - "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": 1.87, - "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": 1.8, - "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": 1.34, - "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": 1.65, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.31, - "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/4aec0d88-bbe3-50a9-9547-b4493406ec4d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.37, - "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/4aec0d88-bbe3-50a9-9547-b4493406ec4d", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.29, - "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": 1.95, - "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": 1.42, - "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": 2.55, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.34, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.2, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.32, - "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": 2.15, - "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": 2.01, - "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.27, - "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": 2.02, - "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": 1.39, - "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": 1.23, - "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": 1.34, - "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": 1.2, - "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/13902786-7690-5fe2-9030-7b09d92b411d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.1, - "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": 1.32, - "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": 1.15, - "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/1108", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.4, - "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/1108", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.34, - "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/1108", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.27, - "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": 1.36, - "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": 2.36, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.69, - "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/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.51, - "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/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.75, - "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": 1.44, - "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.47, - "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/10b366f8-e32a-4e36-9b72-caf8327754a1", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.35, - "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/eafea953-26b2-4cb4-8166-f9bfe177d201", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.51, - "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/e69c2974-dbd6-4f6a-8cbb-613cc50553ab", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.42, - "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/e1a072d9-01c4-414d-9872-6ae38d43b102/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.46, - "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/9a16f5c7-30fc-4485-9841-bcef1ca94ec2/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.5, - "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/a68ccd18-14c8-40c6-bf80-b8d4cc2d12be/approve", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.22, - "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/13e914f5-75aa-42e4-9e4f-2840802028bf/install", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.29, - "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/b9cfb649-a9cc-4e18-83c3-86dad3d2e977/fence", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.23, - "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/10ef5a0b-ae37-45e7-8b66-b79a8b4aaca7/iscsidiscover", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.08, - "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/4167c837-d841-4613-b3b8-a5b420f84498/iscsilogin", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.08, - "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/b226f3c3-aeef-43c1-a26c-7ae477fbc659/commitnetconfig", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.04, - "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/352cdc41-afb2-4b7f-8faf-7e3cc66294fb/refresh", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.03, - "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/990923c8-8889-4783-9e3f-f4a892a1a2c8/upgradeCheck", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.12, - "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": 2.64, - "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.27, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.29, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.24, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.26, - "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": 1.39, - "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": 1.82, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.22, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.3, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.89, - "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.34, - "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": 1.58, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.42, - "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/f4351207-3aa7-5ea6-82dc-588edfb35949", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.22, - "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/f4351207-3aa7-5ea6-82dc-588edfb35949", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.28, - "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.19, - "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": 1.69, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.5, - "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/08d01c4b-421b-56b0-9c9d-60773e301b71", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.37, - "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/08d01c4b-421b-56b0-9c9d-60773e301b71", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.23, - "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": 1.49, - "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.13, - "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": 1.34, - "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.16, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.07, - "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.34, - "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.19, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.41, - "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/f1402964-b206-54ba-ad9a-3e521a89bca6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.32, - "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/f1402964-b206-54ba-ad9a-3e521a89bca6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.19, - "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.22, - "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": 1.54, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.83, - "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/b021976f-8f3f-5597-b9f6-8964d5cbd845", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.3, - "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/b021976f-8f3f-5597-b9f6-8964d5cbd845", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.29, - "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": 1.33, - "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": 1.66, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.32, - "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/41ce6e39-ebd5-584e-a875-65586bdc7f02", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.35, - "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/41ce6e39-ebd5-584e-a875-65586bdc7f02", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.4, - "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": 1.43, - "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": 1.93, - "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/a7f5ffbc-33aa-455f-a159-f822ad157f95", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.43, - "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/a7f5ffbc-33aa-455f-a159-f822ad157f95", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.18, - "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/a7f5ffbc-33aa-455f-a159-f822ad157f95", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.33, - "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.47, - "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.03, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.48, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.56, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.47, - "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.65, - "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": 2.5, - "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.81, - "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.64, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.92, - "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/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.35, - "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/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.1, - "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": 3.59, - "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": 3.03, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.21, - "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/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.47, - "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/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.48, - "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.3, - "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.71, - "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": 2.34, - "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.56, - "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.18, - "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/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.26, - "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.43, - "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": 1.73, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.34, - "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/2a487b4f-379b-5895-9ba3-0cd9aec1d566", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.32, - "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/2a487b4f-379b-5895-9ba3-0cd9aec1d566", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.31, - "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": 1.36, - "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": 2.9, - "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/916f4bd4-921d-4243-84f2-75836579913b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.96, - "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/b4c1c9ef-d634-4b85-b4a5-3399824ac4e1", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.25, - "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/add29004-fd62-4a46-a197-895eeca28c62", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.18, - "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/4ed58890-6177-482d-9f76-b60f7727137f/start", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.19, - "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/87909622-76e9-4b0a-b5f8-e36d6d45323f/stop", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.24, - "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/ae9fefd1-6acd-4959-96b0-78be302319b6/shutdown", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.2, - "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/2e485700-d3dd-4ed8-a3db-18e33cb293e2/reboot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.15, - "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/a344e7a4-767f-489c-9118-cd97c339c6cb/suspend", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.18, - "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/8dcbe2fc-502d-4271-914d-44669eca4f59/migrate", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.17, - "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/4cd4a460-e9e1-4adf-921a-a5470ff2c200/cancelmigration", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.26, - "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/27b5f638-9520-4bc6-afda-b4852cfbeb34/clone", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.22, - "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/4bad4f58-3cfb-4bfe-9304-f83abb678073/export", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.5, - "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/ed21777a-69e2-4dfb-ba65-6cb1490d246d/detach", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.36, - "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/f3916baa-0caf-41de-a8e1-f6d6809dc325/screenthumbnail", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.39, - "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/ea25ab31-7c15-466a-9b40-582bfea73b43/ticket", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.32, - "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/8e78090a-2ae5-4e39-8b76-de7b55c75dda/logon", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.43, - "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/2efabe71-a820-4914-8009-6d0d5702f1fd/preview_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.33, - "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/b53fa871-4d1d-4973-a670-7620d5c31891/commit_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.32, - "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/0e44a06d-72ee-40df-91ad-7c616cb4028f/undo_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.39, - "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/724b7237-519d-4ec4-b349-2870ba030d74/freeze_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.3, - "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/98e93b7a-cc9a-416d-9e5d-6f3718263c6e/thaw_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.34, - "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": 2.06, - "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.3, - "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/2589d650-d921-4954-b237-0678188db09a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.5, - "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/f58953d5-d6c8-4998-94f0-ac273d4ab70d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.14, - "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/fe594d86-af41-40d5-88e1-4e0a05b3800a", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.23, - "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/6715ee6b-c834-40d4-be0a-40901e6576f3/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.36, - "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/36a5a573-a81c-47c6-ab85-86091631b2ea/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 2.09, - "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/26c96789-5771-4355-a889-1ffc7cc011aa/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.37, - "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/592fb008-39ad-43cc-ae4a-96b07aa8d7d2/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.25, - "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/33b3eaa6-0d10-40d4-b851-af2cf102c3bc/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.29, - "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/33685fee-6d40-479f-9e03-eae95fe47139/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.35, - "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/e42c2227-1799-4be6-a9b4-b9a8cf1eb843/nics", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 1.72, - "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/bae34206-9c34-420a-946d-4385c7c9d65f/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.31, - "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/cfcb79ee-33ab-4252-a622-967739b42588/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.6, - "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/7c3d2b8d-cd3f-4281-a420-7be985c30135/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.29, - "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/0a09f689-6e83-48e7-b12b-87e5516ffb8b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.65, - "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/43d875f9-b934-4c2b-b028-298b93c3ec84/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.4, - "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/a5079247-4cd8-42bc-8917-3b7c7afd0dd4/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.84, - "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/248ec7ca-66fc-45b4-be90-7b6971d192f5/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.67, - "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/0b378723-adf2-4273-960e-6d5450545495/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.43, - "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/c8430be9-348f-4636-8dc3-958775318c29/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.65, - "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/09821d7e-3fcf-47ff-88f8-7f46f9e067ce/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.35, - "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/7a485c69-4b13-4f07-a03b-bfc431b01426/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.33, - "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/0fdda04d-dd29-4413-b818-b500813bba11/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 1.57, - "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/39c52d97-4651-428d-96ad-349765000a24/snapshots/d26f3b79-ea06-4b96-881f-6b7abaed35ad", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.18, - "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/24741e2b-30e7-4a1f-884c-704ef6acff7c/snapshots/15328868-e324-44d6-9f8c-fbee70ceacf2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.24, - "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/dfc6b747-9fe0-43d9-8e09-bb4d11d4f22a/snapshots/66d345c0-03b0-4fff-aa55-32a6d862f266", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.34, - "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/3e6d6848-09d2-49a6-a604-7a07c122bc6d/snapshots/cf8c85b8-5bde-4fc7-9b73-9c07f0fb8b96/restore", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.07, - "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/c2843ca2-ebbf-4e78-9f06-769a7256f99c/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.45, - "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/82cd85df-8eaa-4491-8e24-fed95623ecc0/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.93, - "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/619200d0-3b5f-4b77-a132-599e2ef965a0/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.2, - "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/dfece550-6948-414d-a3ca-922c16177d06/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.36, - "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/f976187e-aa12-4e73-af92-c388b8f3ff3b/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.87, - "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/ab27a58d-c15b-4462-a314-c35e78667b52/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.62, - "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/43d3408e-7e1e-42b7-ac8f-8ef4c08a18de/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.58, - "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/fd32148a-3a89-47f8-b809-12bd43fe63f1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.36, - "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/0205a726-bc5c-4efa-bd9a-7e98a5f24288/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.34, - "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/e65067ed-f39b-46b0-a84e-8a50593edf3d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.32, - "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/7c87953e-dfe1-46a0-aef1-16b151a79120/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.34, - "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/3e0d071b-a137-4812-ac08-c33b6f77b39b/nics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.6, - "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/526a246c-6976-4658-8d68-d2b76373f317/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.3, - "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/4726e908-bfbc-466f-91b4-d86c17b7c380/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.58, - "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/6a2be374-d8b0-4abb-b3b4-43820b653b20/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.27, - "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/6089a004-aa17-475f-ba3d-16321011132b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.02, - "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/be7e8748-11a4-483a-8f6a-aa72a8f94c69/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 1.94, - "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/74725eab-ac04-4eed-8347-a9600a13ac6b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.5, - "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/4928faec-dfd8-4c75-b27c-d937415d3fd0/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.52, - "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/af047c1d-4d92-433c-807b-5efae7ecb2f9/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.69, - "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/0a03e88f-11f2-454d-abb8-8cebb77f6241/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.47, - "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/0e458c63-e2de-4512-b139-06fa9cbb5a76/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.84, - "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/52bf5441-0ce4-498c-ace4-2c357dcf735b/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.51, - "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/9e48c987-e202-41c3-b329-a03f98b5cbcb/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.73, - "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/4a85a4ce-2b22-41d9-bcc3-374235b7a2d2/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.15, - "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/0dc6417b-6814-41ff-8a3d-02e4e9005660/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.27, - "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/fddac21a-eecf-4b85-82b1-da22331153c5/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.83, - "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/f1d58671-2e76-4093-a095-b7c26c8f1430/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.85, - "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/93d206ce-93fb-4e57-8184-ffbc72b40adb/statistics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.45, - "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/5081359c-8edb-4890-9b60-5740efb2c891/statistics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.64, - "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/deecca80-00e0-4945-8f21-455b2560778a/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.52, - "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/a406c851-c859-4f9a-88b5-4302207808ec/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.08, - "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/5d93bffa-5c66-48f3-beef-1b900f746e16/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.87, - "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": 15.31, - "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": 200, - "expected_hint": 201, - "duration_ms": 6.82, - "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/51270f8b-2ccc-41bf-a3b0-b9e89aa37a6b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 6.84, - "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/77590926-4d0d-454d-bf43-b3881a5cb324", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.56, - "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/5cabbc2c-0d11-49ae-9893-4baa4bfe473d", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.65, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.86, - "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": 200, - "expected_hint": 201, - "duration_ms": 3.37, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.29, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.6, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.37, - "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": 1.44, - "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.11, - "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.34, - "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": 1.35, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.3, - "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": 1.43, - "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": 1.23, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.41, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.26, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.26, - "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": 2.1, - "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": 2.06, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.38, - "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": 404, - "expected_hint": 201, - "duration_ms": 1.23, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.25, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.28, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.17, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.21, - "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": 404, - "expected_hint": 201, - "duration_ms": 1.22, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.19, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.21, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.17, - "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": 1.31, - "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": 1.78, - "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/413d31be-4ac1-40e3-be24-60bc8d489591", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.54, - "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/413d31be-4ac1-40e3-be24-60bc8d489591", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.83, - "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/413d31be-4ac1-40e3-be24-60bc8d489591", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.3, - "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": 1.43, - "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": 1.49, - "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.29, - "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": 1.33, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.36, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.45, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.55, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles/c3e4f33e-3233-445c-8bdf-f44f87351342", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.35, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles/2636e9af-237e-4ab8-afac-cb55b90fd7e6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.29, - "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles/1eb56ce1-64a0-470c-aedc-d3e6ab49f0f4", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.24, - "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": 1.28, - "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.05, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.35, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.85, - "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/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.2, - "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.27, - "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": 1.97, - "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": 1.28, - "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": 1.47, - "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.23, - "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": 1.42, - "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.82, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.01, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.52, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.28, - "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": 1.46, - "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.1, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.32, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.33, - "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/8c25e806-ce4d-573e-bc31-ed83976beb77", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.2, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.89, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps", - "kind": "collection", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.15, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps/a03cb1c0-0fbd-462f-ae17-344a27b8bd39", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.14, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps/4c9290b7-7e3d-4797-92a8-046c1a2ab13b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.3, - "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/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps/700bf84d-9878-4875-acae-bf83ef527a5a", + "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": 1.26, + "duration_ms": 2.77, "detail": "" }, { @@ -33068,7 +33142,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.66, + "duration_ms": 6.16, "detail": "" }, { @@ -33081,7 +33155,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 2.64, "detail": "" }, { @@ -33092,9 +33166,9 @@ "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 2.8, "detail": "" }, { @@ -33107,7 +33181,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.76, "detail": "" }, { @@ -33118,9 +33192,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.08, "detail": "" }, { @@ -33133,7 +33207,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.3, "detail": "" }, { @@ -33144,9 +33218,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.99, "detail": "" }, { @@ -33159,7 +33233,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.36, "detail": "" }, { @@ -33170,9 +33244,9 @@ "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.34, "detail": "" }, { @@ -33185,7 +33259,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.56, "detail": "" }, { @@ -33198,7 +33272,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 3.82, "detail": "" }, { @@ -33211,7 +33285,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 3.5, "detail": "" }, { @@ -33219,12 +33293,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1108", + "path_resolved": "/ovirt-engine/api/events/51", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 2.93, "detail": "" }, { @@ -33237,7 +33311,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.2, "detail": "" }, { @@ -33248,9 +33322,9 @@ "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 2.59, "detail": "" }, { @@ -33263,7 +33337,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 2.84, "detail": "" }, { @@ -33271,12 +33345,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/737a1844-b612-489e-bebe-ee6e195fdfb3", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 2.17, "detail": "" }, { @@ -33289,7 +33363,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 4.06, "detail": "" }, { @@ -33297,12 +33371,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/3767e7a2-9f89-405a-917d-e16d0c8c3935", + "path_resolved": "/ovirt-engine/api/jobs/63b62d1f-dbd5-4020-bad5-f30c1ad4f86b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 2.03, "detail": "" }, { @@ -33315,7 +33389,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 2.43, "detail": "" }, { @@ -33323,12 +33397,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/05bd601f-3c17-4fb9-aeda-6de2549d49f7", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.61, "detail": "" }, { @@ -33341,7 +33415,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.41, "detail": "" }, { @@ -33352,9 +33426,9 @@ "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.73, "detail": "" }, { @@ -33367,7 +33441,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 2.65, "detail": "" }, { @@ -33378,9 +33452,9 @@ "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.17, "detail": "" }, { @@ -33393,7 +33467,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 2.73, "detail": "" }, { @@ -33406,7 +33480,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 2.82, "detail": "" }, { @@ -33419,7 +33493,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.62, "detail": "" }, { @@ -33430,9 +33504,9 @@ "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 2.5, "detail": "" }, { @@ -33445,7 +33519,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.83, "detail": "" }, { @@ -33456,9 +33530,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.87, "detail": "" }, { @@ -33471,7 +33545,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.15, "detail": "" }, { @@ -33482,9 +33556,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.38, "detail": "" }, { @@ -33497,7 +33571,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.54, "detail": "" }, { @@ -33505,12 +33579,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/a7f5ffbc-33aa-455f-a159-f822ad157f95", + "path_resolved": "/ovirt-engine/api/storageconnections/45bf64d6-cd05-4b2c-ae43-bb3ef37f38c0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 2.26, "detail": "" }, { @@ -33523,7 +33597,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.69, "detail": "" }, { @@ -33534,9 +33608,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 2.37, "detail": "" }, { @@ -33549,7 +33623,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.35, "detail": "" }, { @@ -33560,9 +33634,9 @@ "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 2.25, "detail": "" }, { @@ -33575,7 +33649,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 3.26, "detail": "" }, { @@ -33586,9 +33660,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.27, "detail": "" }, { @@ -33601,7 +33675,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 3.33, "detail": "" }, { @@ -33614,7 +33688,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.45, "detail": "" }, { @@ -33627,7 +33701,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 2.12, "detail": "" }, { @@ -33638,9 +33712,9 @@ "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.95, + "duration_ms": 2.31, "detail": "" }, { @@ -33653,7 +33727,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.63, "detail": "" }, { @@ -33661,12 +33735,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/7c3255d5-8753-491d-9d27-0f261fa7bd13", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 2.2, "detail": "" }, { @@ -33679,7 +33753,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 2.11, "detail": "" }, { @@ -33687,12 +33761,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/fdef02b9-1268-4417-be4d-205136ab4468", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 2.81, "detail": "" }, { @@ -33700,12 +33774,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/2f32b350-e9ad-4a4b-926d-07dfc15bac73/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.43, + "duration_ms": 2.87, "detail": "" }, { @@ -33713,12 +33787,12 @@ "operation_id": "head.diskattachments.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/21b923f2-e963-44b7-bbce-724abaa5de31/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.37, + "duration_ms": 2.75, "detail": "" }, { @@ -33726,12 +33800,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/b51ad513-9c14-4cdd-94a0-36e9433f9c27/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.37, + "duration_ms": 3.13, "detail": "" }, { @@ -33739,12 +33813,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/678f5f66-b356-49ed-bb49-82592e5d7745/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.34, + "duration_ms": 2.63, "detail": "" }, { @@ -33752,12 +33826,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/177c2903-59e1-4f1f-a893-a1d09311129c/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.5, + "duration_ms": 2.65, "detail": "" }, { @@ -33765,12 +33839,12 @@ "operation_id": "head.cdroms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/285bd51e-51a5-4ce6-b147-eb5eae445235/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.5, + "duration_ms": 2.73, "detail": "" }, { @@ -33778,12 +33852,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/eacf0ca6-8f11-4b67-9700-108bbde6d402/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.37, + "duration_ms": 2.38, "detail": "" }, { @@ -33791,12 +33865,12 @@ "operation_id": "head.snapshots.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/e6e019de-b9f4-41ef-a384-5dd5186feebb/snapshots/0da825ae-0f83-4624-a4ad-da17451e3923", + "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": 1.32, + "duration_ms": 2.45, "detail": "" }, { @@ -33804,12 +33878,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/381a97ec-fecd-4c25-b493-e000e8168470/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.91, + "duration_ms": 3.16, "detail": "" }, { @@ -33817,12 +33891,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/1e878718-6084-42ef-aa37-a5c1371f5906/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.38, + "duration_ms": 2.3, "detail": "" }, { @@ -33830,12 +33904,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/ecaf4654-099e-42e6-a857-d20c914c2134/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": 1.74, + "duration_ms": 2.35, "detail": "" }, { @@ -33843,12 +33917,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/1d8e41b9-6009-4fb3-8e3d-a95e2e3982cb/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.69, + "duration_ms": 2.91, "detail": "" }, { @@ -33856,12 +33930,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/833adaf1-b63a-4bdf-b9c6-f415d6456aea/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.46, + "duration_ms": 2.59, "detail": "" }, { @@ -33869,12 +33943,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/545820dd-8a6f-4fad-b491-744da730f1c7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.72, + "duration_ms": 2.08, "detail": "" }, { @@ -33882,12 +33956,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/efa6baf9-f94f-4caa-b702-520ab0b16b20/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.09, + "duration_ms": 2.6, "detail": "" }, { @@ -33895,12 +33969,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/f918f810-a79d-483d-9a22-8f0403f22f58/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.66, + "duration_ms": 2.38, "detail": "" }, { @@ -33908,12 +33982,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/a952c857-fe2b-4f48-8fd2-23e3a87f5af9/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.9, + "duration_ms": 2.4, "detail": "" }, { @@ -33921,12 +33995,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/28a3e512-0b20-4208-88d2-a4a64c70edc3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.94, + "duration_ms": 2.6, "detail": "" }, { @@ -33934,12 +34008,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/3fb7542d-dc49-40f4-9e13-3443373c2e02/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.92, + "duration_ms": 4.15, "detail": "" }, { @@ -33947,12 +34021,12 @@ "operation_id": "head.statistics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/07bc5a19-30da-4955-a00d-bc2d3f163f9c/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 3.31, "detail": "" }, { @@ -33965,7 +34039,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 3.55, "detail": "" }, { @@ -33973,12 +34047,12 @@ "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/cbf50143-5107-452f-b838-c866ceacebbd", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/8ff0be17-5e33-4a4f-a5be-4c45ead63de1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 3.01, "detail": "" }, { @@ -33989,9 +34063,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 3.1, "detail": "" }, { @@ -33999,12 +34073,12 @@ "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 2.74, "detail": "" }, { @@ -34017,7 +34091,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 2.8, "detail": "" }, { @@ -34030,7 +34104,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 2.89, "detail": "" }, { @@ -34043,7 +34117,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 2.36, "detail": "" }, { @@ -34054,9 +34128,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 2.31, "detail": "" }, { @@ -34067,9 +34141,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 2.08, "detail": "" }, { @@ -34080,9 +34154,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 2.15, "detail": "" }, { @@ -34093,9 +34167,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 2.29, "detail": "" }, { @@ -34103,12 +34177,12 @@ "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.04, "detail": "" }, { @@ -34121,7 +34195,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 1.81, "detail": "" }, { @@ -34129,12 +34203,12 @@ "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/413d31be-4ac1-40e3-be24-60bc8d489591", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.89, "detail": "" }, { @@ -34147,7 +34221,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 1.86, "detail": "" }, { @@ -34160,7 +34234,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 1.79, "detail": "" }, { @@ -34168,12 +34242,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/05bd601f-3c17-4fb9-aeda-6de2549d49f7/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.37, + "duration_ms": 1.94, "detail": "" }, { @@ -34181,12 +34255,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles/16b4a3fe-f1b9-46c2-b99c-ff1331ec1348", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 1.97, "detail": "" }, { @@ -34199,7 +34273,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 1.92, "detail": "" }, { @@ -34210,9 +34284,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.1, "detail": "" }, { @@ -34225,7 +34299,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 2.15, "detail": "" }, { @@ -34238,7 +34312,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 1.9, "detail": "" }, { @@ -34251,7 +34325,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 2.09, "detail": "" }, { @@ -34262,9 +34336,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 1.96, "detail": "" }, { @@ -34277,7 +34351,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.09, "detail": "" }, { @@ -34288,9 +34362,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 1.76, "detail": "" }, { @@ -34298,12 +34372,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/3767e7a2-9f89-405a-917d-e16d0c8c3935/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.34, + "duration_ms": 1.81, "detail": "" }, { @@ -34311,12 +34385,12 @@ "operation_id": "head.steps.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps/2fdd9b55-9880-4e9c-91c9-16ce39f39f00", + "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.24, + "duration_ms": 1.71, "detail": "" }, { @@ -34329,7 +34403,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.46, + "duration_ms": 2.87, "detail": "" }, { @@ -34342,7 +34416,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 1.83, "detail": "" }, { @@ -34353,9 +34427,9 @@ "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 2.16, "detail": "" }, { @@ -34368,7 +34442,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 2.48, "detail": "" }, { @@ -34379,9 +34453,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 1.89, "detail": "" }, { @@ -34394,7 +34468,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.88, "detail": "" }, { @@ -34405,9 +34479,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 3.12, "detail": "" }, { @@ -34420,7 +34494,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 2.52, "detail": "" }, { @@ -34431,9 +34505,9 @@ "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 3.34, "detail": "" }, { @@ -34446,7 +34520,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 2.38, "detail": "" }, { @@ -34459,7 +34533,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 2.12, "detail": "" }, { @@ -34472,7 +34546,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 1.86, "detail": "" }, { @@ -34480,12 +34554,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1108", + "path_resolved": "/ovirt-engine/api/v3/events/51", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 1.75, "detail": "" }, { @@ -34498,7 +34572,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.79, + "duration_ms": 2.02, "detail": "" }, { @@ -34509,9 +34583,9 @@ "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.87, + "duration_ms": 1.87, "detail": "" }, { @@ -34524,7 +34598,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.47, + "duration_ms": 1.93, "detail": "" }, { @@ -34532,12 +34606,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/95d66faf-4b68-465b-9cff-c0f6e2973f99", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.91, + "duration_ms": 2.11, "detail": "" }, { @@ -34550,7 +34624,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.26, + "duration_ms": 3.01, "detail": "" }, { @@ -34558,12 +34632,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/3767e7a2-9f89-405a-917d-e16d0c8c3935", + "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.46, + "duration_ms": 1.94, "detail": "" }, { @@ -34576,7 +34650,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 2.04, "detail": "" }, { @@ -34584,12 +34658,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/05bd601f-3c17-4fb9-aeda-6de2549d49f7", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 1.77, "detail": "" }, { @@ -34602,7 +34676,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.03, "detail": "" }, { @@ -34613,9 +34687,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 2.05, "detail": "" }, { @@ -34628,7 +34702,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.53, + "duration_ms": 1.79, "detail": "" }, { @@ -34639,9 +34713,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 1.75, "detail": "" }, { @@ -34654,7 +34728,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.24, + "duration_ms": 1.92, "detail": "" }, { @@ -34667,7 +34741,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.51, + "duration_ms": 1.9, "detail": "" }, { @@ -34680,7 +34754,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.99, + "duration_ms": 1.61, "detail": "" }, { @@ -34691,9 +34765,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 1.61, "detail": "" }, { @@ -34706,7 +34780,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.2, + "duration_ms": 2.0, "detail": "" }, { @@ -34717,9 +34791,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.0, + "duration_ms": 1.76, "detail": "" }, { @@ -34732,7 +34806,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.19, + "duration_ms": 2.09, "detail": "" }, { @@ -34743,9 +34817,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.68, + "duration_ms": 1.93, "detail": "" }, { @@ -34758,7 +34832,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.2, + "duration_ms": 1.72, "detail": "" }, { @@ -34766,12 +34840,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/a7f5ffbc-33aa-455f-a159-f822ad157f95", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/45bf64d6-cd05-4b2c-ae43-bb3ef37f38c0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.53, + "duration_ms": 1.71, "detail": "" }, { @@ -34784,7 +34858,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.26, + "duration_ms": 1.85, "detail": "" }, { @@ -34795,9 +34869,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 2.53, "detail": "" }, { @@ -34810,7 +34884,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.88, + "duration_ms": 1.76, "detail": "" }, { @@ -34821,9 +34895,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.2, + "duration_ms": 1.92, "detail": "" }, { @@ -34836,7 +34910,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 1.98, "detail": "" }, { @@ -34847,9 +34921,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 1.83, "detail": "" }, { @@ -34862,7 +34936,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 1.87, "detail": "" }, { @@ -34875,7 +34949,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 1.99, "detail": "" }, { @@ -34888,7 +34962,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.89, + "duration_ms": 1.74, "detail": "" }, { @@ -34899,9 +34973,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 1.7, "detail": "" }, { @@ -34914,7 +34988,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 2.09, "detail": "" }, { @@ -34922,12 +34996,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/6060982a-8662-4eb9-8f2f-fa0c93a8edb6", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 2.15, "detail": "" }, { @@ -34940,7 +35014,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 2.56, "detail": "" }, { @@ -34948,12 +35022,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/d253201d-1c21-4c9e-8bd9-5c94d85f642a", + "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 2.0, "detail": "" }, { @@ -34961,12 +35035,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/0ede7684-903f-48ef-ba14-213654bc393e/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.09, + "duration_ms": 2.15, "detail": "" }, { @@ -34974,12 +35048,12 @@ "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/887c5f87-692f-4b17-b550-47a143299cc3/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.57, + "duration_ms": 2.01, "detail": "" }, { @@ -34987,12 +35061,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/a96f71eb-9f39-4684-be60-589ee9f1a4e3/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.13, + "duration_ms": 1.88, "detail": "" }, { @@ -35000,12 +35074,12 @@ "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/eeb4333d-ed26-44db-b7f0-2a4ce82c8764/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.74, + "duration_ms": 2.07, "detail": "" }, { @@ -35013,7 +35087,163 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/36d53272-0bf8-41c8-b74b-9ed19ee59666/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, @@ -35021,173 +35251,17 @@ "duration_ms": 2.04, "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/b7792533-65b4-4f17-8dcf-0e64d6f9a1b8/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.02, - "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/212a14ff-46e7-46f6-a46a-2c0a9ea4c0b4/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.54, - "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/1160a7b5-45fa-49ff-a2f7-e548310db041/snapshots/6631ab72-b363-4503-a125-7c7ac665f9dd", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.69, - "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/695a1cc7-91c1-4ed7-9945-b97ca6310cd7/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.72, - "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/19e2169d-aa5d-414f-bc81-ac31278a3341/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.6, - "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/1ec6171c-3f0f-4dd5-b388-cf97837eaf0e/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.73, - "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/fcfb2634-a3ff-4ed4-a6b0-0b368c2159c0/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.95, - "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/f56d17e9-342b-4fb3-ab03-c574c6953af7/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.69, - "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/56b64ab0-4016-451e-b145-a038c97bb3d4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.78, - "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/7e61ffa3-2d87-4458-9330-bc6f6aebf445/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.89, - "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/81c6e435-aaa4-41ca-8c1b-dec9fde5b9dc/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.72, - "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/96fe23a6-f9a3-48a1-92d9-71fd45602e18/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.79, - "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/90e7c43f-7658-4a5d-82d0-bcb7b019b981/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.71, + "duration_ms": 1.86, "detail": "" }, { @@ -35195,12 +35269,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/407157e3-cc82-47bf-a4dd-f56cc94d176f/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.81, + "duration_ms": 2.47, "detail": "" }, { @@ -35208,12 +35282,12 @@ "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/8d2c4b92-bccb-40f0-9b32-ae6dc8cfbca7/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 2.02, "detail": "" }, { @@ -35226,7 +35300,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 1.93, "detail": "" }, { @@ -35234,12 +35308,12 @@ "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/221d49d5-7a46-406c-9886-8404a79d14f1", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/8ff0be17-5e33-4a4f-a5be-4c45ead63de1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 1.77, "detail": "" }, { @@ -35250,9 +35324,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 2.05, "detail": "" }, { @@ -35260,12 +35334,12 @@ "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.09, "detail": "" }, { @@ -35278,7 +35352,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 1.84, "detail": "" }, { @@ -35291,7 +35365,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 2.35, "detail": "" }, { @@ -35304,7 +35378,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.58, + "duration_ms": 2.12, "detail": "" }, { @@ -35315,9 +35389,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 1.94, "detail": "" }, { @@ -35328,9 +35402,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 1.92, "detail": "" }, { @@ -35341,9 +35415,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 1.86, "detail": "" }, { @@ -35354,9 +35428,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.41, + "duration_ms": 2.08, "detail": "" }, { @@ -35364,12 +35438,12 @@ "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 1.93, "detail": "" }, { @@ -35382,7 +35456,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 1.71, "detail": "" }, { @@ -35390,12 +35464,12 @@ "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/413d31be-4ac1-40e3-be24-60bc8d489591", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 2.32, "detail": "" }, { @@ -35408,7 +35482,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 1.85, "detail": "" }, { @@ -35429,12 +35503,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v3/networks/05bd601f-3c17-4fb9-aeda-6de2549d49f7/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.57, + "duration_ms": 1.71, "detail": "" }, { @@ -35442,12 +35516,12 @@ "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/05bd601f-3c17-4fb9-aeda-6de2549d49f7/vnicprofiles/d4d06b54-4638-4075-b5f7-18354ce69885", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 1.85, "detail": "" }, { @@ -35460,7 +35534,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.13, + "duration_ms": 1.94, "detail": "" }, { @@ -35471,9 +35545,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 1.88, "detail": "" }, { @@ -35486,7 +35560,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 1.82, "detail": "" }, { @@ -35499,7 +35573,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.16, "detail": "" }, { @@ -35512,7 +35586,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.0, "detail": "" }, { @@ -35523,9 +35597,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 1.83, "detail": "" }, { @@ -35538,7 +35612,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.17, "detail": "" }, { @@ -35549,9 +35623,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 1.79, "detail": "" }, { @@ -35559,12 +35633,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/3767e7a2-9f89-405a-917d-e16d0c8c3935/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.48, + "duration_ms": 1.86, "detail": "" }, { @@ -35572,12 +35646,12 @@ "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/3767e7a2-9f89-405a-917d-e16d0c8c3935/steps/91de22f0-0415-48ee-a6b1-d9cff60db0c1", + "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.45, + "duration_ms": 1.83, "detail": "" }, { @@ -35590,7 +35664,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.48, + "duration_ms": 9.35, "detail": "" }, { @@ -35603,7 +35677,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 3.64, "detail": "" }, { @@ -35616,7 +35690,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.01, + "duration_ms": 5.82, "detail": "" }, { @@ -35629,7 +35703,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 4.25, "detail": "" }, { @@ -35637,12 +35711,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/ed0eaca5-1c7d-42c0-9364-c1548774d559", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 5.9, "detail": "" }, { @@ -35650,12 +35724,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/8a6992d0-32a2-4b70-aae1-daa0b75176eb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 3.72, "detail": "" }, { @@ -35668,7 +35742,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 4.01, "detail": "" }, { @@ -35681,7 +35755,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.93, + "duration_ms": 5.39, "detail": "" }, { @@ -35694,7 +35768,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 3.11, "detail": "" }, { @@ -35702,12 +35776,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/a51a972e-321b-44ef-b748-2a04255c3585", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 3.85, "detail": "" }, { @@ -35715,12 +35789,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/846aa41e-bd47-4074-86a5-2f7f27c453be", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 3.45, "detail": "" }, { @@ -35733,7 +35807,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.14, + "duration_ms": 4.63, "detail": "" }, { @@ -35746,7 +35820,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.8, + "duration_ms": 2.54, "detail": "" }, { @@ -35759,7 +35833,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.78, + "duration_ms": 4.12, "detail": "" }, { @@ -35772,7 +35846,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 1.7, "detail": "" }, { @@ -35785,7 +35859,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.6, + "duration_ms": 2.5, "detail": "" }, { @@ -35798,7 +35872,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 2.34, "detail": "" }, { @@ -35806,12 +35880,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/b14a345a-abd1-4640-9885-7383ba8ed719", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.15, "detail": "" }, { @@ -35819,12 +35893,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/48ba2622-f6de-43c0-a34a-9c22bc249010", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 4.24, "detail": "" }, { @@ -35837,7 +35911,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.89, + "duration_ms": 3.79, "detail": "" }, { @@ -35850,7 +35924,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 3.39, "detail": "" }, { @@ -35863,7 +35937,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.4, + "duration_ms": 3.87, "detail": "" }, { @@ -35876,7 +35950,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 2.06, "detail": "" }, { @@ -35884,12 +35958,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/6f2501ed-2078-476b-b5d4-c8c13ab3d5a0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.02, + "duration_ms": 3.69, "detail": "" }, { @@ -35897,12 +35971,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/e4a5906f-8f98-41ca-9ebe-90f6760501e9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.25, + "duration_ms": 3.27, "detail": "" }, { @@ -35915,7 +35989,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.94, + "duration_ms": 3.26, "detail": "" }, { @@ -35928,7 +36002,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.16, + "duration_ms": 3.83, "detail": "" }, { @@ -35941,7 +36015,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.94, + "duration_ms": 3.34, "detail": "" }, { @@ -35954,7 +36028,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 2.71, "detail": "" }, { @@ -35967,7 +36041,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.34, "detail": "" }, { @@ -35980,7 +36054,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.0, + "duration_ms": 2.06, "detail": "" }, { @@ -35993,7 +36067,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 1.86, "detail": "" }, { @@ -36006,7 +36080,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 2.13, "detail": "" }, { @@ -36014,12 +36088,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/domains/{id}", - "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/domains/c9946025-c1ef-459c-b533-61e7db2a0c57", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 1.49, "detail": "" }, { @@ -36032,7 +36106,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 2.35, "detail": "" }, { @@ -36045,7 +36119,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.96, + "duration_ms": 2.29, "detail": "" }, { @@ -36053,12 +36127,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1109", + "path_resolved": "/ovirt-engine/api/events/52", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 6.94, "detail": "" }, { @@ -36066,12 +36140,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1109", + "path_resolved": "/ovirt-engine/api/events/52", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 5.56, "detail": "" }, { @@ -36079,12 +36153,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1109", + "path_resolved": "/ovirt-engine/api/events/ef6a553d-065d-449f-98bc-99d46a703698", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 4.44, "detail": "" }, { @@ -36097,7 +36171,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 5.52, "detail": "" }, { @@ -36110,7 +36184,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.19, + "duration_ms": 8.27, "detail": "" }, { @@ -36123,7 +36197,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 11.65, "detail": "" }, { @@ -36131,12 +36205,12 @@ "operation_id": "externalhostproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/c91bbf34-ce34-4492-b35d-680d90d83a8f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.52, + "duration_ms": 10.44, "detail": "" }, { @@ -36144,12 +36218,12 @@ "operation_id": "externalhostproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/9d19caab-5edd-4d1e-9ae5-392986814b70", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.7, + "duration_ms": 5.02, "detail": "" }, { @@ -36162,7 +36236,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 6.2, "detail": "" }, { @@ -36175,7 +36249,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.93, + "duration_ms": 8.12, "detail": "" }, { @@ -36188,7 +36262,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 4.58, "detail": "" }, { @@ -36196,12 +36270,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/69657777-9427-4c58-8c5d-bbbf7e7971b8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 5.73, "detail": "" }, { @@ -36209,12 +36283,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/c06278f7-34e5-4d07-9c3f-53b4ad6954d9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 3.15, "detail": "" }, { @@ -36227,7 +36301,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 2.82, "detail": "" }, { @@ -36238,9 +36312,9 @@ "path_resolved": "/ovirt-engine/api/hosts", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.69, + "duration_ms": 4.71, "detail": "" }, { @@ -36248,12 +36322,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/0ddb79d7-8fe8-4ad7-ba4b-808544444c64", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.93, "detail": "" }, { @@ -36261,12 +36335,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/43450e3e-a741-406c-9141-0ef8d2a0b196", + "path_resolved": "/ovirt-engine/api/hosts/10744b23-72ec-42d3-82f3-b87508481133", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 2.89, "detail": "" }, { @@ -36274,12 +36348,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/99201174-1856-4f65-86ca-2cbd781a6294", + "path_resolved": "/ovirt-engine/api/hosts/373e19e0-4e01-4156-9d05-ee331ba1dd80", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 2.94, "detail": "" }, { @@ -36287,12 +36361,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/hosts/78d1723e-5cf6-47dc-847d-a34a90b5c14f/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": 2.05, + "duration_ms": 4.05, "detail": "" }, { @@ -36300,12 +36374,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/hosts/4c512c70-ea3a-44a9-9db1-ec439d40d61d/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": 1.84, + "duration_ms": 4.02, "detail": "" }, { @@ -36313,12 +36387,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/hosts/0b2ad42c-219e-4fbb-8f03-ca609219a5e2/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.74, + "duration_ms": 3.86, "detail": "" }, { @@ -36326,12 +36400,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/hosts/6702687e-4d90-48d5-bc1a-9e8ba7ac84cd/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": 1.97, + "duration_ms": 4.39, "detail": "" }, { @@ -36339,12 +36413,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/hosts/ad95a86e-d89b-4cca-91a1-1b52a1c59bb4/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": 1.82, + "duration_ms": 3.39, "detail": "" }, { @@ -36352,12 +36426,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/hosts/5fa0efbb-b044-4c89-8eed-ada19bd34470/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": 1.81, + "duration_ms": 3.4, "detail": "" }, { @@ -36365,12 +36439,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/hosts/96b85c31-3d49-4029-8a27-05caa72a1f95/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": 1.7, + "duration_ms": 3.32, "detail": "" }, { @@ -36378,12 +36452,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/hosts/a01323f9-5d3f-461c-ab03-128465a107d9/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": 1.8, + "duration_ms": 3.06, "detail": "" }, { @@ -36391,12 +36465,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/hosts/17d4ccbc-1077-4d33-8768-53c20b0b4ac5/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": 1.75, + "duration_ms": 3.57, "detail": "" }, { @@ -36404,12 +36478,12 @@ "operation_id": "hosts.unregisteredstoragedomainsdiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/hosts/1bc21ae1-9caf-4aa8-a422-dc03664de4ad/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": 1.68, + "duration_ms": 3.24, "detail": "" }, { @@ -36417,12 +36491,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/hosts/d64fe0bc-7e8e-46e0-ae88-4381b7f19070/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": 1.71, + "duration_ms": 3.84, "detail": "" }, { @@ -36435,7 +36509,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.42, "detail": "" }, { @@ -36448,7 +36522,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.01, + "duration_ms": 1.65, "detail": "" }, { @@ -36456,12 +36530,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb", + "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.01, + "duration_ms": 2.28, "detail": "" }, { @@ -36469,12 +36543,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb", + "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 1.62, "detail": "" }, { @@ -36482,12 +36556,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb", + "path_resolved": "/ovirt-engine/api/jobs/d5445451-f6b2-4818-9ad5-46898bd31a26", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 1.69, "detail": "" }, { @@ -36500,7 +36574,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 1.97, "detail": "" }, { @@ -36513,7 +36587,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.62, + "duration_ms": 2.4, "detail": "" }, { @@ -36521,12 +36595,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 2.5, "detail": "" }, { @@ -36534,12 +36608,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/networks/81f08b97-5567-4579-8730-610c44d9f59e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.36, "detail": "" }, { @@ -36547,12 +36621,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/networks/483697e6-ca16-40c6-bbc5-400363ea6aaf", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 2.25, "detail": "" }, { @@ -36565,7 +36639,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 1.85, "detail": "" }, { @@ -36578,7 +36652,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.21, + "duration_ms": 2.16, "detail": "" }, { @@ -36591,7 +36665,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 1.86, "detail": "" }, { @@ -36599,12 +36673,12 @@ "operation_id": "openstackimageproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/b2597ac4-bdf1-476c-8c7a-5f0a8ab4cf5b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 2.63, "detail": "" }, { @@ -36612,12 +36686,12 @@ "operation_id": "openstackimageproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/4d36c686-a532-4c69-98e4-73aa7a34a10c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 1.92, "detail": "" }, { @@ -36630,7 +36704,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.01, + "duration_ms": 1.91, "detail": "" }, { @@ -36643,7 +36717,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 2.05, "detail": "" }, { @@ -36656,7 +36730,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 1.55, "detail": "" }, { @@ -36664,12 +36738,12 @@ "operation_id": "openstacknetworkproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/27a265df-259a-4af6-9802-e25cc80ea2f4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 1.95, "detail": "" }, { @@ -36677,12 +36751,12 @@ "operation_id": "openstacknetworkproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/f81b481d-d9cd-48d5-a7e9-86fca87e4bfc", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 2.7, "detail": "" }, { @@ -36695,7 +36769,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 1.79, "detail": "" }, { @@ -36708,7 +36782,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 2.07, "detail": "" }, { @@ -36721,7 +36795,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 1.79, "detail": "" }, { @@ -36729,12 +36803,12 @@ "operation_id": "openstackvolumeproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/4e7e9aa4-d0e0-4a9f-aed6-a89b603a0bd1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 2.24, "detail": "" }, { @@ -36742,12 +36816,12 @@ "operation_id": "openstackvolumeproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/a4ea971a-6a82-4619-9b28-3272fd45077a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 3.5, "detail": "" }, { @@ -36760,7 +36834,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 3.66, "detail": "" }, { @@ -36773,7 +36847,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 2.18, "detail": "" }, { @@ -36786,7 +36860,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 2.04, "detail": "" }, { @@ -36799,7 +36873,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 1.77, "detail": "" }, { @@ -36807,12 +36881,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/permissions/{id}", - "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/permissions/e7d1af59-993e-4d1b-be47-693e71f77b98", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.92, + "duration_ms": 1.33, "detail": "" }, { @@ -36825,7 +36899,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 1.68, "detail": "" }, { @@ -36838,7 +36912,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.46, + "duration_ms": 2.85, "detail": "" }, { @@ -36851,7 +36925,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 1.67, "detail": "" }, { @@ -36859,12 +36933,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/e9fc8a50-d71e-48cc-8de6-cf9472ddafea", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 2.37, "detail": "" }, { @@ -36872,12 +36946,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/545cb0e5-78f0-4054-b6c2-f16ccf28b826", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 2.15, "detail": "" }, { @@ -36890,7 +36964,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 1.81, "detail": "" }, { @@ -36903,7 +36977,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.25, + "duration_ms": 2.12, "detail": "" }, { @@ -36916,7 +36990,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 1.59, "detail": "" }, { @@ -36924,12 +36998,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/db2146d6-747c-4d7b-9749-a238a93d6cf3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 2.04, "detail": "" }, { @@ -36937,12 +37011,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/71495077-9238-43a5-9b44-4f07b610eb80", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 2.36, "detail": "" }, { @@ -36955,7 +37029,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 1.66, "detail": "" }, { @@ -36968,7 +37042,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.29, + "duration_ms": 2.02, "detail": "" }, { @@ -36981,7 +37055,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 1.53, "detail": "" }, { @@ -36989,12 +37063,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/c87a91e8-6ca3-4f34-8de8-cbab61cae736", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 2.08, "detail": "" }, { @@ -37002,12 +37076,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/cea5ab21-8318-43d2-8633-46bef63f0d4f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 1.71, "detail": "" }, { @@ -37020,7 +37094,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 1.89, "detail": "" }, { @@ -37033,7 +37107,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.38, + "duration_ms": 2.2, "detail": "" }, { @@ -37041,12 +37115,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/baae0b7d-6397-4d94-9d2d-b1dda2e24ea8", + "path_resolved": "/ovirt-engine/api/storageconnections/40a8e689-a171-47d0-9ef6-02b99642071a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 1.82, "detail": "" }, { @@ -37054,12 +37128,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/baae0b7d-6397-4d94-9d2d-b1dda2e24ea8", + "path_resolved": "/ovirt-engine/api/storageconnections/a333d89d-7766-4368-b021-6c17cc8b7581", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 1.51, "detail": "" }, { @@ -37067,12 +37141,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/baae0b7d-6397-4d94-9d2d-b1dda2e24ea8", + "path_resolved": "/ovirt-engine/api/storageconnections/74c8dd37-5f13-4e56-892e-9bca6580a363", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.82, "detail": "" }, { @@ -37085,7 +37159,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 1.55, "detail": "" }, { @@ -37098,7 +37172,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.57, + "duration_ms": 2.68, "detail": "" }, { @@ -37111,7 +37185,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 4.43, "detail": "" }, { @@ -37119,12 +37193,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/492f331b-feb5-4d8b-98b3-eeb8aae09f59", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 3.24, "detail": "" }, { @@ -37132,12 +37206,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/47f4f58d-ad5b-41fb-a2d3-9fd208716fba", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 2.14, "detail": "" }, { @@ -37150,7 +37224,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.69, + "duration_ms": 2.48, "detail": "" }, { @@ -37163,7 +37237,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.59, + "duration_ms": 2.79, "detail": "" }, { @@ -37176,7 +37250,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 2.04, "detail": "" }, { @@ -37189,7 +37263,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.46, + "duration_ms": 2.26, "detail": "" }, { @@ -37202,7 +37276,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 1.82, "detail": "" }, { @@ -37210,12 +37284,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/60c2287f-a5ac-4098-a6d7-f8355b9465ee", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.37, "detail": "" }, { @@ -37223,12 +37297,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/59747478-87ac-46f2-9e27-f12f3354178b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 3.21, "detail": "" }, { @@ -37241,7 +37315,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 2.23, "detail": "" }, { @@ -37254,7 +37328,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.48, + "duration_ms": 3.29, "detail": "" }, { @@ -37267,7 +37341,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 1.98, "detail": "" }, { @@ -37275,12 +37349,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/c3477499-9833-4436-864d-9b6ddabdda1f", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 1.8, "detail": "" }, { @@ -37288,12 +37362,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/94fea5d8-c5e8-4e7c-a7e0-7426df19f42d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 3.27, "detail": "" }, { @@ -37306,7 +37380,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.7, + "duration_ms": 2.99, "detail": "" }, { @@ -37319,7 +37393,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 2.55, "detail": "" }, { @@ -37332,7 +37406,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.97, + "duration_ms": 1.92, "detail": "" }, { @@ -37345,7 +37419,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 2.5, "detail": "" }, { @@ -37358,7 +37432,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.01, + "duration_ms": 1.44, "detail": "" }, { @@ -37366,12 +37440,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/users/{id}", - "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/users/1ee0f66e-aeb3-40b3-994e-ee7850807d2e", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.95, + "duration_ms": 1.78, "detail": "" }, { @@ -37384,7 +37458,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 2.14, "detail": "" }, { @@ -37397,7 +37471,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.24, + "duration_ms": 2.22, "detail": "" }, { @@ -37410,7 +37484,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 2.34, "detail": "" }, { @@ -37418,12 +37492,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/76450537-3015-47fc-8089-47dcb69c781a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 2.49, "detail": "" }, { @@ -37431,12 +37505,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/37ea9571-2c0f-4686-95fc-481f86a7e493", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 2.46, "detail": "" }, { @@ -37449,7 +37523,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 2.46, "detail": "" }, { @@ -37460,9 +37534,9 @@ "path_resolved": "/ovirt-engine/api/vms", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.14, + "duration_ms": 6.85, "detail": "" }, { @@ -37470,12 +37544,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/35dac0a4-ba73-4f7c-9226-c248b741fe78", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 3.34, "detail": "" }, { @@ -37483,12 +37557,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/92c4e3ba-cf20-48f3-894a-7975bf018408", + "path_resolved": "/ovirt-engine/api/vms/ef0dda99-1445-44a4-82d1-53f46aa6ccc4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 3.11, "detail": "" }, { @@ -37496,12 +37570,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/cbd5fea8-6aaf-490c-9a30-f5072087097c", + "path_resolved": "/ovirt-engine/api/vms/1b745c77-8d31-4622-8ea0-b8581eb5b3f1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 4.65, "detail": "" }, { @@ -37509,12 +37583,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/vms/1c6cc53f-d1e6-4736-b96f-24162ca9ad14/start", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.14, + "duration_ms": 4.62, "detail": "" }, { @@ -37522,12 +37596,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/vms/e56b670c-3d53-4e77-9940-44cd50bb1e73/stop", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 0.99, + "duration_ms": 4.07, "detail": "" }, { @@ -37535,12 +37609,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/vms/2213ceb1-5bbe-440f-8fc8-c4d2f494e29e/shutdown", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.06, + "duration_ms": 3.58, "detail": "" }, { @@ -37548,12 +37622,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/vms/a1094378-a379-408e-8205-37d71c90886b/reboot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.51, + "duration_ms": 3.84, "detail": "" }, { @@ -37561,12 +37635,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/vms/38154e12-87bf-4551-acfc-8fe16630df00/suspend", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.1, + "duration_ms": 4.17, "detail": "" }, { @@ -37574,12 +37648,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/vms/4333e6dd-54c2-4e4d-a537-756d37793f81/migrate", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.07, + "duration_ms": 3.91, "detail": "" }, { @@ -37587,12 +37661,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/vms/a76aeacc-5637-428f-8b04-6504bb087999/cancelmigration", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.02, + "duration_ms": 3.92, "detail": "" }, { @@ -37600,12 +37674,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/vms/459f7570-8df9-42fa-9e1a-a8fb61e715dd/clone", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.15, + "duration_ms": 7.93, "detail": "" }, { @@ -37613,12 +37687,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/vms/94b060bb-05fc-4269-991d-ca741d4038dc/export", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.18, + "duration_ms": 5.96, "detail": "" }, { @@ -37626,12 +37700,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/vms/20cd8058-aba6-47b0-ac51-c93e1c460147/detach", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 4.01, "detail": "" }, { @@ -37639,12 +37713,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/vms/ff75b8e0-daa3-45ea-8147-d3e63441d0c0/screenthumbnail", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 2.72, "detail": "" }, { @@ -37652,2542 +37726,7 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/vms/a2ad50d7-d1a3-4b90-abd2-73b60e7f2041/ticket", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.21, - "detail": "" - }, - { - "series": "3.4", - "operation_id": "vms.logon", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/vms/043e99a6-362f-4f96-aecb-9dc142401f73/logon", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.19, - "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/8cd716ee-ecd8-41ad-9d9d-ec91556369d4/preview_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.16, - "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/4b3fdbae-76aa-4e6b-a1f1-718e1191cff4/commit_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.15, - "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/6698c0ac-f13b-450f-9b71-6567a5629148/undo_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.17, - "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/803aa899-93a3-4a41-a6ad-f2ab9c020e9d/freeze_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.04, - "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/cc2be969-16d1-45ab-a759-32acde1fb5ae/thaw_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.49, - "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": 2.17, - "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": 400, - "expected_hint": 201, - "duration_ms": 2.4, - "detail": "" - }, - { - "series": "3.4", - "operation_id": "vnicprofiles.get", - "method": "GET", - "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/da41490a-941d-45ff-909a-2b5cbd6472b7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.65, - "detail": "" - }, - { - "series": "3.4", - "operation_id": "vnicprofiles.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/a5241bb1-e33d-4659-ab82-18a6d75292ef", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.13, - "detail": "" - }, - { - "series": "3.4", - "operation_id": "vnicprofiles.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/eb8a8ff7-438f-4a37-931d-354c71081864", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.14, - "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/6468ff25-41f9-48e5-85f2-f0a33e6b0260/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.28, - "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/b1e6c14d-c713-4dfd-9025-324e6c23b524/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 2.58, - "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/3518a0cc-b43a-4051-80a6-b1766c200138/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.29, - "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/02be6eeb-ab1d-4339-acad-c393ba79b9b7/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.14, - "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/0fb68689-67be-4091-b20d-0826aaf55f28/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.19, - "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/01156414-75fd-4470-ada6-de29b0af576d/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.25, - "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/0807a204-f2e0-491f-b27b-ce6eb49e1d96/nics", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 1.56, - "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/df141f82-12be-4946-9617-0413f714e79c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.22, - "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/f1669118-6b13-48a8-96cc-294635204a83/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.49, - "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/4499c0f4-3a22-4bbe-b5e3-9ac10f298824/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.31, - "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/f29a038d-48c5-4470-8b15-7fd4bfcd50f1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.51, - "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/0214b2f4-04cf-4098-812c-4dd67504ecf7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.04, - "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/00eae66f-daba-4089-bc76-a99e181f07d4/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.53, - "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/7b0db713-dc97-418e-8e13-43034427bbef/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.81, - "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/27cb308e-77c4-4513-a4ad-06900416a880/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.89, - "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/62d5f255-c1b7-461d-b607-0fa6aeed5cce/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.91, - "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/50a2aaa4-ec57-4e21-a03e-cbd2427cef45/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.08, - "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/46711a6c-2eb0-482f-b0ee-b841a9852851/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.84, - "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/71dcee76-0fe6-4bd4-b309-fcca6ada8cd2/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 2.15, - "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/9c443fe0-0653-4577-b20a-1b6ebffc5e96/snapshots/4f51bbdd-5871-4604-a068-c51874699e06", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.65, - "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/7228c80d-dcdb-4427-9d28-8b0f16b3e51d/snapshots/0f101fcc-2818-4cf7-bd50-14bbbd46999f", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.42, - "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/4c892917-0050-4bf6-b2cf-a632268ee352/snapshots/633341f4-3f33-4198-9184-17b6bea25245", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.69, - "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/10ab53cb-cc3b-4886-96e0-827393d53ee8/snapshots/ac45d916-905e-4823-9f34-adae14794f03/restore", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.42, - "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/2be87bb4-ec30-4320-9567-a8ec7ba3a247/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.62, - "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/73925914-c3d8-4e5a-b1c2-2f86b9447f8a/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.06, - "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/fdcd24af-88eb-43c0-bc37-351bf937b65c/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.16, - "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/59e3d538-5d6a-4194-b3dc-72def44ee4c0/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.1, - "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/a3f86069-89ae-4c4b-a653-49817aa77c19/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.07, - "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/d3c04d4d-f04f-438d-9886-1c3312a742f4/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.47, - "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/9c00d929-9196-445c-875a-89b1603099e5/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.43, - "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/7fa42a8b-ec3e-4656-a78c-e37a0581dd05/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.22, - "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/b5a06847-8447-43e6-8dda-de401026ac22/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.27, - "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/18dd4eaf-b143-4fc9-b584-082e0bb99e82/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.16, - "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/f3862a6e-dfb8-497b-85bc-b142becfe54b/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.29, - "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/30d212d3-4b58-49bf-8254-2014e58ed474/nics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.03, - "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/faa40cf8-a5da-43fc-b002-6ac535d4b24d/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.05, - "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/4c1de7c2-201b-49a9-9bfc-98397d588fdb/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.9, - "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/8f746cc5-fd6d-4de8-9505-1d768ed54221/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.46, - "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/6586c32d-939d-441e-badd-35a5d1ff4c9e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.49, - "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/cc5c92ff-bf49-438e-9042-b81fb416a464/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.94, - "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/034c04bd-f65d-4170-b3dd-fcbb891aa1d3/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.37, - "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/946df683-b2c6-407d-a0e0-26241f855bf4/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.48, - "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/cda54402-65bc-42b5-a0fd-010d9b531414/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.64, - "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/0bb3c80f-ab53-497d-b1ae-62273acecf6d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.68, - "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/e543a603-57d9-43cd-8fbf-5c2c70a2cce6/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 4.35, - "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/20f9576e-7b6d-4c9b-ae60-0765ad477fb4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.3, - "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/feac2284-f24a-4ba9-81c2-79dabba9043c/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.88, - "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/e9d4de86-a246-46f4-a9b2-1b9d69e4fc9d/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.12, - "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/ea9b08f4-ee8d-4f3f-a1c8-b6f8aa3850eb/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.41, - "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/bd18d2c5-6213-4331-b2c0-272882962518/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.84, - "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/c2bb6de6-e85d-4af5-8864-83e6f831e237/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.45, - "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/9d749259-ec76-4838-95a1-17150bf16caa/statistics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.38, - "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/5953ca19-3a74-45d8-848f-d6dfa9d66cf8/statistics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 6.55, - "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/a2165f1d-ca24-4a71-95a1-7d459b93fd3f/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.37, - "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/81272722-651b-4a7a-8422-5b5a2bd5bba1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.61, - "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/cb9b58bd-8be3-454a-8273-71ee0f713d99/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.74, - "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": 3.02, - "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": 200, - "expected_hint": 201, - "duration_ms": 3.42, - "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/f4277cf8-c2e8-439e-acaf-854ae74934be", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.52, - "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/22fcaa26-a678-438a-bc30-7f6c7660d31d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.47, - "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/48e9ed3f-2be2-402d-8d29-153f9ac80f95", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.52, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.93, - "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": 200, - "expected_hint": 201, - "duration_ms": 3.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/4b2b0d6b-021f-4105-b587-d481085a478e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.85, - "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/4b2b0d6b-021f-4105-b587-d481085a478e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.7, - "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/4b2b0d6b-021f-4105-b587-d481085a478e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.31, - "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.9, - "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.42, - "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.37, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.22, - "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.51, - "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.7, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.49, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.15, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.43, - "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": 3.15, - "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": 2.3, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.4, - "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": 404, - "expected_hint": 201, - "duration_ms": 1.2, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.14, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.16, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.94, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.24, - "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": 404, - "expected_hint": 201, - "duration_ms": 2.26, - "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/4b2b0d6b-021f-4105-b587-d481085a478e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.21, - "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/4b2b0d6b-021f-4105-b587-d481085a478e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.18, - "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/4b2b0d6b-021f-4105-b587-d481085a478e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.45, - "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.71, - "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": 1.95, - "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/8c69c8b0-2e3f-47f9-b4d1-329df44d99b4", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.5, - "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/8c69c8b0-2e3f-47f9-b4d1-329df44d99b4", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.62, - "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/8c69c8b0-2e3f-47f9-b4d1-329df44d99b4", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.38, - "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.36, - "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.5, - "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.21, - "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.33, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.23, - "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/4b2b0d6b-021f-4105-b587-d481085a478e/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.3, - "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/4b2b0d6b-021f-4105-b587-d481085a478e/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.52, - "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/4b2b0d6b-021f-4105-b587-d481085a478e/vnicprofiles/915ff659-e428-498f-9646-0723815f9800", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.26, - "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/4b2b0d6b-021f-4105-b587-d481085a478e/vnicprofiles/f6e26802-b312-4bc5-ac22-d0316e023496", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.3, - "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/4b2b0d6b-021f-4105-b587-d481085a478e/vnicprofiles/61c90591-3e5d-4098-a7ff-237716861589", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.25, - "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.36, - "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.35, - "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.19, - "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": 1.42, - "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/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.28, - "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": 1.26, - "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.58, - "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.46, - "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.16, - "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": 1.79, - "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": 1.74, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.26, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.23, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.17, - "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": 1.28, - "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": 1.75, - "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": 1.2, - "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": 1.35, - "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/8c25e806-ce4d-573e-bc31-ed83976beb77", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.22, - "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/266e86a8-f9b6-4aef-b7db-37df23363afb/steps", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.28, - "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/266e86a8-f9b6-4aef-b7db-37df23363afb/steps", - "kind": "collection", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.07, - "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/266e86a8-f9b6-4aef-b7db-37df23363afb/steps/763e9296-8a81-4cbb-bf2b-660e8590b1b8", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.07, - "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/266e86a8-f9b6-4aef-b7db-37df23363afb/steps/c1303180-d1c1-42df-a1d5-6b388daf8cd4", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.06, - "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/266e86a8-f9b6-4aef-b7db-37df23363afb/steps/283ab800-23e5-40f7-9116-82cddf6dfb3a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.02, - "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": 2.66, - "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": 1.21, - "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": 1.54, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.37, - "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/41bd259d-99ba-57db-b003-b8858163a652", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.37, - "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/41bd259d-99ba-57db-b003-b8858163a652", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.18, - "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": 1.22, - "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": 1.78, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.29, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.4, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.17, - "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": 1.78, - "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": 1.87, - "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": 1.79, - "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": 1.33, - "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": 2.2, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.23, - "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/4aec0d88-bbe3-50a9-9547-b4493406ec4d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.3, - "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/4aec0d88-bbe3-50a9-9547-b4493406ec4d", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.15, - "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": 1.86, - "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": 1.37, - "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": 2.46, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.24, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.21, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.22, - "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": 1.84, - "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": 1.85, - "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": 1.89, - "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": 1.88, - "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": 1.27, - "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": 1.12, - "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": 1.23, - "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": 1.07, - "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/13902786-7690-5fe2-9030-7b09d92b411d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.06, - "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": 1.27, - "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": 1.26, - "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/1109", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.37, - "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/1109", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.5, - "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/1109", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.19, - "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": 1.45, - "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": 2.79, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.63, - "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/b3313044-239a-5c84-8c75-f25bf5269a11", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.41, - "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/b3313044-239a-5c84-8c75-f25bf5269a11", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.45, - "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": 1.36, - "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": 1.97, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.36, - "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/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.1, - "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/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.35, - "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": 2.29, - "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": 2.61, - "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/dab9d07b-4255-4654-9b21-1ca5b8426a56", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.3, - "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/714f45b9-1e3b-4cac-a110-a8d278870f40", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.55, - "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/4c353ee4-4be2-401e-95e3-0d95b71fc17e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.47, - "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/8d9df8d3-5c4d-4fa7-a903-e42706a3b965/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.58, - "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/f24ccbe0-cd98-4587-810c-dab741444eb9/deactivate", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", "http_status": 200, @@ -40197,15 +37736,2550 @@ }, { "series": "3.4", - "operation_id": "hosts.approve", + "operation_id": "vms.logon", "method": "POST", - "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/v3/hosts/6b4a8f96-bbe3-4029-b070-c83e37e9f9d1/approve", + "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.86, + "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": "" }, { @@ -40213,12 +40287,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/v3/hosts/7e9c48d8-d926-4a13-ac08-72eb99073b5c/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": 3.82, + "duration_ms": 6.12, "detail": "" }, { @@ -40226,12 +40300,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/v3/hosts/91a75048-9f19-48a0-9995-8051c6755fce/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": 2.53, + "duration_ms": 6.27, "detail": "" }, { @@ -40239,12 +40313,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/v3/hosts/77cb8eab-cbfa-4b0b-8785-b76e0192d524/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": 3.09, + "duration_ms": 5.99, "detail": "" }, { @@ -40252,12 +40326,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/v3/hosts/98bd8460-a15e-4168-8d26-3af92394220f/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.06, + "duration_ms": 6.82, "detail": "" }, { @@ -40265,12 +40339,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/v3/hosts/9c2286cf-2448-405a-9e1d-b216eb87a4dd/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.51, + "duration_ms": 5.86, "detail": "" }, { @@ -40278,12 +40352,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/v3/hosts/4909acc4-1332-4b46-8a03-3d3133ae27a6/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.6, + "duration_ms": 5.68, "detail": "" }, { @@ -40291,12 +40365,12 @@ "operation_id": "hosts.unregisteredstoragedomainsdiscover", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/v3/hosts/677bff55-6ba6-441c-b84b-e9dde5562e7d/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": 2.18, + "duration_ms": 8.65, "detail": "" }, { @@ -40304,12 +40378,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/v3/hosts/f3fbcdef-fecb-4003-8df5-fbb4ad7ae4c9/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.16, + "duration_ms": 9.38, "detail": "" }, { @@ -40322,7 +40396,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 7.59, "detail": "" }, { @@ -40335,7 +40409,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.35, + "duration_ms": 3.75, "detail": "" }, { @@ -40343,12 +40417,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb", + "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 3.53, "detail": "" }, { @@ -40356,12 +40430,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb", + "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 2.12, "detail": "" }, { @@ -40369,12 +40443,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb", + "path_resolved": "/ovirt-engine/api/v3/jobs/1e6f6219-e450-4a95-83a6-71433e8c422f", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 6.46, "detail": "" }, { @@ -40387,7 +40461,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.33, + "duration_ms": 11.73, "detail": "" }, { @@ -40400,7 +40474,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.29, + "duration_ms": 18.08, "detail": "" }, { @@ -40408,12 +40482,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 14.52, "detail": "" }, { @@ -40421,12 +40495,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/v3/networks/6fb46c40-d31d-4fef-8b84-847770a9f844", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 20.26, "detail": "" }, { @@ -40434,12 +40508,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/v3/networks/77287bf8-528b-4354-8529-4b1869585db3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 16.28, "detail": "" }, { @@ -40452,7 +40526,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 14.08, "detail": "" }, { @@ -40465,7 +40539,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 17.52, "detail": "" }, { @@ -40476,9 +40550,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 11.7, "detail": "" }, { @@ -40486,12 +40560,12 @@ "operation_id": "openstackimageproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/d451fbb2-89d6-41f8-a0d5-383448278b5f", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 9.1, "detail": "" }, { @@ -40499,12 +40573,12 @@ "operation_id": "openstackimageproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/d4309410-145f-49bb-8ae0-5e0635fc5411", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 13.85, "detail": "" }, { @@ -40517,7 +40591,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 8.87, "detail": "" }, { @@ -40530,7 +40604,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.37, + "duration_ms": 9.82, "detail": "" }, { @@ -40541,9 +40615,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 6.82, "detail": "" }, { @@ -40551,12 +40625,12 @@ "operation_id": "openstacknetworkproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/d80d91a0-bc1f-49ab-b800-0e37c21a6682", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 7.59, "detail": "" }, { @@ -40564,12 +40638,12 @@ "operation_id": "openstacknetworkproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/e3bc6aa3-ef02-4c38-8b47-59a702e2332d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 4.13, "detail": "" }, { @@ -40582,7 +40656,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 5.04, "detail": "" }, { @@ -40595,7 +40669,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.6, + "duration_ms": 3.8, "detail": "" }, { @@ -40606,9 +40680,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 5.89, "detail": "" }, { @@ -40616,12 +40690,12 @@ "operation_id": "openstackvolumeproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/77572070-12eb-4abe-a241-3ed57c24febe", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 4.18, "detail": "" }, { @@ -40629,12 +40703,12 @@ "operation_id": "openstackvolumeproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/d7aec537-13d6-481f-b8f3-ce75610e6bcf", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 4.74, "detail": "" }, { @@ -40647,7 +40721,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 5.47, "detail": "" }, { @@ -40660,7 +40734,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.18, + "duration_ms": 8.07, "detail": "" }, { @@ -40673,7 +40747,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 8.73, "detail": "" }, { @@ -40686,7 +40760,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 9.35, "detail": "" }, { @@ -40694,12 +40768,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/v3/permissions/6a358923-7bb9-4ce7-af5b-15512984bb7f", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 10.13, "detail": "" }, { @@ -40712,7 +40786,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 8.08, "detail": "" }, { @@ -40725,7 +40799,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.63, + "duration_ms": 8.12, "detail": "" }, { @@ -40736,9 +40810,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 6.95, "detail": "" }, { @@ -40746,12 +40820,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/roles/{id}", - "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v3/roles/f1692419-f4a1-4322-b66e-81bd7933229a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 8.24, "detail": "" }, { @@ -40759,12 +40833,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/roles/{id}", - "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v3/roles/743aaca6-0069-4ecb-aeea-d4e3664d1d8f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 7.44, "detail": "" }, { @@ -40777,7 +40851,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 8.18, "detail": "" }, { @@ -40790,7 +40864,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.43, + "duration_ms": 7.65, "detail": "" }, { @@ -40801,9 +40875,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 5.62, "detail": "" }, { @@ -40811,12 +40885,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/1de2159f-0447-4c3d-bdfb-84b081c5af06", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 10.93, "detail": "" }, { @@ -40824,12 +40898,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/c7c03749-a993-4e89-9b8a-f8885e8a8733", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 6.49, "detail": "" }, { @@ -40842,7 +40916,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 10.43, "detail": "" }, { @@ -40855,7 +40929,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.15, + "duration_ms": 5.65, "detail": "" }, { @@ -40866,9 +40940,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 3.66, "detail": "" }, { @@ -40876,12 +40950,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/b57691e2-17b2-4dae-adda-97a5b0399ace", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 5.13, "detail": "" }, { @@ -40889,12 +40963,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/452b70dc-7841-45e4-8b74-d673dc6547ef", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 5.54, "detail": "" }, { @@ -40907,7 +40981,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 3.72, "detail": "" }, { @@ -40920,7 +40994,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.11, + "duration_ms": 4.75, "detail": "" }, { @@ -40928,12 +41002,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/baae0b7d-6397-4d94-9d2d-b1dda2e24ea8", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/40a8e689-a171-47d0-9ef6-02b99642071a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 3.46, "detail": "" }, { @@ -40941,12 +41015,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/baae0b7d-6397-4d94-9d2d-b1dda2e24ea8", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/89ca7383-ae31-4e2e-a50b-bf54767e7924", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 4.36, "detail": "" }, { @@ -40954,12 +41028,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/baae0b7d-6397-4d94-9d2d-b1dda2e24ea8", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/4fed3dad-65df-4a6d-a59a-0019dc5170e8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 6.91, "detail": "" }, { @@ -40972,7 +41046,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 4.24, "detail": "" }, { @@ -40985,7 +41059,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.95, + "duration_ms": 6.93, "detail": "" }, { @@ -40996,9 +41070,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 3.52, "detail": "" }, { @@ -41006,12 +41080,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v3/storagedomains/8a577014-e677-4633-92bf-98a455c0c91f", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 4.23, "detail": "" }, { @@ -41019,12 +41093,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v3/storagedomains/8b9c8cd1-97ed-45d3-aeb2-f907228fdc80", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 4.11, "detail": "" }, { @@ -41037,7 +41111,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.3, + "duration_ms": 4.58, "detail": "" }, { @@ -41050,7 +41124,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.84, + "duration_ms": 4.7, "detail": "" }, { @@ -41063,7 +41137,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 3.74, "detail": "" }, { @@ -41076,7 +41150,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.57, + "duration_ms": 4.19, "detail": "" }, { @@ -41087,9 +41161,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 3.65, "detail": "" }, { @@ -41097,12 +41171,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v3/tags/bc23d3ea-da06-44f0-b955-2f93d9d6e9eb", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 3.97, "detail": "" }, { @@ -41110,12 +41184,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v3/tags/c4247bbf-a4ab-4528-bee0-bab45a75ec9d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 3.65, "detail": "" }, { @@ -41128,7 +41202,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 2.82, "detail": "" }, { @@ -41141,7 +41215,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.8, + "duration_ms": 3.67, "detail": "" }, { @@ -41152,9 +41226,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 2.8, "detail": "" }, { @@ -41162,12 +41236,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/templates/{id}", - "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v3/templates/095fa6f9-cbf9-4788-a795-7ee387667f57", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 2.01, "detail": "" }, { @@ -41175,12 +41249,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/templates/{id}", - "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v3/templates/880dd4c8-eaaf-4805-8cba-dbe5d4e3fba9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 2.59, "detail": "" }, { @@ -41193,7 +41267,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.75, + "duration_ms": 3.31, "detail": "" }, { @@ -41206,7 +41280,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 2.54, "detail": "" }, { @@ -41219,7 +41293,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.14, + "duration_ms": 2.05, "detail": "" }, { @@ -41232,7 +41306,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 2.65, "detail": "" }, { @@ -41245,7 +41319,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 1.95, "detail": "" }, { @@ -41253,12 +41327,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/users/{id}", - "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/v3/users/1c440d69-5476-440b-b3a8-989b8633e535", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 2.19, "detail": "" }, { @@ -41271,7 +41345,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 2.24, "detail": "" }, { @@ -41284,7 +41358,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.54, + "duration_ms": 2.53, "detail": "" }, { @@ -41295,9 +41369,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 2.76, "detail": "" }, { @@ -41305,12 +41379,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v3/vmpools/cf0b8d41-0401-4419-8b8b-c80d9d050236", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 2.53, "detail": "" }, { @@ -41318,12 +41392,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v3/vmpools/7f240765-9688-4597-87f2-38a778537ec0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 2.36, "detail": "" }, { @@ -41336,7 +41410,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.96, + "duration_ms": 2.49, "detail": "" }, { @@ -41349,7 +41423,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.04, + "duration_ms": 5.36, "detail": "" }, { @@ -41357,12 +41431,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/652fc181-9e7d-4f9b-9d38-aa9b9ecc44ea", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.78, + "duration_ms": 2.32, "detail": "" }, { @@ -41370,12 +41444,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/055c1e01-913c-4a64-9dae-7dbe92bab6ef", + "path_resolved": "/ovirt-engine/api/v3/vms/ddfa2b60-665e-4fb8-9134-ee3de79bff9c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.16, + "duration_ms": 2.75, "detail": "" }, { @@ -41383,12 +41457,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/aecbcb6a-2cfe-4005-8e8c-7b19b95d017c", + "path_resolved": "/ovirt-engine/api/v3/vms/c2194dc9-2025-4971-af60-0f7fb48a263c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.95, + "duration_ms": 4.07, "detail": "" }, { @@ -41396,12 +41470,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/v3/vms/325c54b6-e338-4ed7-96e0-3ae867c2e7d1/start", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 3.5, + "duration_ms": 4.28, "detail": "" }, { @@ -41409,12 +41483,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/v3/vms/57c2f55b-759f-42f3-9ece-6b7f8c7aad7e/stop", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 3.81, + "duration_ms": 6.96, "detail": "" }, { @@ -41422,12 +41496,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/v3/vms/3237408c-46b3-4051-a4ca-72f771f401dc/shutdown", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 3.03, + "duration_ms": 4.26, "detail": "" }, { @@ -41435,12 +41509,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/v3/vms/d86285a2-3ee4-46ca-9616-27b06ec1837b/reboot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 4.15, + "duration_ms": 4.05, "detail": "" }, { @@ -41448,12 +41522,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/v3/vms/012971b3-7a7e-412f-9040-dbd671fa1a36/suspend", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 4.6, + "duration_ms": 4.27, "detail": "" }, { @@ -41461,12 +41535,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/v3/vms/abe1e400-f122-4ae0-ad69-25ff4dcb1946/migrate", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 3.12, + "duration_ms": 4.13, "detail": "" }, { @@ -41474,12 +41548,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/v3/vms/86bb4a5c-834b-490b-8d71-646478d78fa9/cancelmigration", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 4.12, + "duration_ms": 3.98, "detail": "" }, { @@ -41487,12 +41561,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/v3/vms/298b53d2-70f9-4910-a158-3538b0f4c919/clone", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 409, "expected_hint": 201, - "duration_ms": 3.55, + "duration_ms": 2.47, "detail": "" }, { @@ -41500,12 +41574,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/v3/vms/91102a4a-0aa8-4741-aee8-9e0117ee7236/export", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 3.88, + "duration_ms": 3.65, "detail": "" }, { @@ -41513,12 +41587,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/v3/vms/db35cbeb-03b7-4767-a1e8-21d790eff204/detach", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 3.18, + "duration_ms": 3.2, "detail": "" }, { @@ -41526,12 +41600,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/v3/vms/4631b78a-8c1d-4ad5-a8e7-cf3643d2c0a0/screenthumbnail", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.05, + "duration_ms": 4.67, "detail": "" }, { @@ -41539,12 +41613,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/v3/vms/3bdacca5-28cb-4200-9147-ad04fc76382c/ticket", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.83, + "duration_ms": 10.14, "detail": "" }, { @@ -41552,12 +41626,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/v3/vms/255dd4af-753f-4dab-8fc6-a2595421be02/logon", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.67, + "duration_ms": 7.49, "detail": "" }, { @@ -41565,12 +41639,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/513c810f-b500-4cf8-a458-6a3e966418e3/preview_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.71, + "duration_ms": 4.21, "detail": "" }, { @@ -41578,12 +41652,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/0ac47df9-050a-411f-9a04-65d4ca71fe43/commit_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.65, + "duration_ms": 3.37, "detail": "" }, { @@ -41591,12 +41665,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/b6463ca8-e40d-4eb6-9bfd-a310fb1186c3/undo_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 3.61, "detail": "" }, { @@ -41604,12 +41678,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/v3/vms/7c6657b6-5316-411a-828e-06277ea35d55/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 7.77, "detail": "" }, { @@ -41617,12 +41691,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/v3/vms/16955a79-38f0-455e-8c3f-417bd00bdb04/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.51, + "duration_ms": 11.05, "detail": "" }, { @@ -41635,7 +41709,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 4.41, "detail": "" }, { @@ -41648,7 +41722,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.54, + "duration_ms": 7.13, "detail": "" }, { @@ -41656,12 +41730,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/89907f49-1361-45e1-99e7-899c140b5fec", + "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 10.68, "detail": "" }, { @@ -41669,12 +41743,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/8e8d5247-8357-49fa-af6d-3d034d29a0a8", + "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/a088c756-c007-4775-9f4e-0a7875c2228c", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 6.48, "detail": "" }, { @@ -41682,12 +41756,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/94ff0b4f-8c54-4cd2-9228-601b3aa97855", + "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/e4f5e6eb-d6c1-480e-a1d9-18829cbad3d3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 5.83, "detail": "" }, { @@ -41695,12 +41769,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/df0ea1db-d344-4029-9844-4af011151d96/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": 1.63, + "duration_ms": 5.82, "detail": "" }, { @@ -41708,12 +41782,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/3bbe2b45-eec8-4a2d-89e6-b85efb0ac853/diskattachments", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 3.2, + "duration_ms": 8.52, "detail": "" }, { @@ -41721,12 +41795,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/0324ea6b-3ff3-4f6a-b8ac-e482cae93cf7/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.76, + "duration_ms": 5.7, "detail": "" }, { @@ -41734,12 +41808,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/f468b811-31ce-4cf9-bdc5-7ee4be75db19/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.49, + "duration_ms": 4.68, "detail": "" }, { @@ -41747,12 +41821,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/f3fa76ff-4080-4cf5-a2d4-8d62f0faac6a/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.92, + "duration_ms": 5.84, "detail": "" }, { @@ -41760,12 +41834,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/87f7b2a9-b555-493e-a987-9af47a481aa9/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.43, + "duration_ms": 7.26, "detail": "" }, { @@ -41773,12 +41847,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/62d6999f-2ece-4524-b610-6f3488e93d8b/nics", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.3, + "duration_ms": 15.75, "detail": "" }, { @@ -41786,12 +41860,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/2a79f675-7462-45cc-b6dd-7b3d17bffe3e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.28, + "duration_ms": 7.55, "detail": "" }, { @@ -41799,12 +41873,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/d7f2e220-40cb-4ea4-8649-95e4f70ee914/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/f1267c4e-0b8a-4fc6-899e-43713bcf70a9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 7.13, "detail": "" }, { @@ -41812,12 +41886,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/ed2bf5b3-6a55-4d73-9989-bcea56822559/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.61, + "duration_ms": 7.08, "detail": "" }, { @@ -41825,12 +41899,12 @@ "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/3a758481-896c-4997-b42e-0a3703dce3b7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.88, + "duration_ms": 10.84, "detail": "" }, { @@ -41838,12 +41912,12 @@ "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/dfddca76-e5b0-4487-b053-cfa7fdb67af6/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.63, + "duration_ms": 15.23, "detail": "" }, { @@ -41851,12 +41925,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/a85ec78a-ea72-467e-9901-fd063b950a8c/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": 1.55, + "duration_ms": 13.39, "detail": "" }, { @@ -41864,12 +41938,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/e20f1970-2197-4dda-a53c-027ef1bd04f4/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.47, + "duration_ms": 19.9, "detail": "" }, { @@ -41877,12 +41951,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/e6119835-18db-4bf4-9a76-89c484d36799/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.53, + "duration_ms": 15.49, "detail": "" }, { @@ -41890,12 +41964,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/3d55a6d0-c1dc-4771-876f-985015652b53/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.93, + "duration_ms": 16.78, "detail": "" }, { @@ -41903,12 +41977,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/c2539323-991d-44c0-8781-3b35a4c3cc10/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.48, + "duration_ms": 16.85, "detail": "" }, { @@ -41916,12 +41990,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/600a6c42-9e27-4e83-a5c7-c133728cc5eb/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": 1.4, + "duration_ms": 7.39, "detail": "" }, { @@ -41929,12 +42003,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/b65ff2af-f95d-4dda-bb92-a556e27b3a7d/snapshots", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.6, + "duration_ms": 15.67, "detail": "" }, { @@ -41942,12 +42016,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/8b3164f0-69c1-477c-955c-4c1926f226b5/snapshots/be62e2d8-08e3-4708-aaa1-84ba61f7c70b", + "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": 1.32, + "duration_ms": 6.44, "detail": "" }, { @@ -41955,12 +42029,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/848c237e-9263-4189-81e1-9daa896b40e2/snapshots/3cb3c3f6-3063-49f2-a598-746ff54367c7", + "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": 1.33, + "duration_ms": 8.32, "detail": "" }, { @@ -41968,12 +42042,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/6a17a638-bc51-470a-acef-ea789243ef02/snapshots/e760440a-49e3-4e6d-a556-82a4189a3b50", + "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": 1.3, + "duration_ms": 11.79, "detail": "" }, { @@ -41981,12 +42055,12 @@ "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/1fd6caf6-df3f-4912-a012-43b2df637cbd/snapshots/f3778abd-9b53-44fc-b4e3-ebec3ba81e62/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": 2.15, + "duration_ms": 8.18, "detail": "" }, { @@ -41994,12 +42068,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/995e96e2-8e82-4fad-8bf8-40e1f20d9091/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.55, + "duration_ms": 6.39, "detail": "" }, { @@ -42007,12 +42081,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/920e507c-bd24-409b-86fe-5076cb0ae2c3/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.11, + "duration_ms": 8.17, "detail": "" }, { @@ -42020,12 +42094,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/586d2c59-1d3b-4a00-b465-07aa5502046a/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.28, + "duration_ms": 9.29, "detail": "" }, { @@ -42033,12 +42107,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/c694420f-de7f-4c36-8257-800273c61a53/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.22, + "duration_ms": 11.12, "detail": "" }, { @@ -42046,12 +42120,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/80dae42d-1862-4431-9332-4dd5899257c8/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.18, + "duration_ms": 8.88, "detail": "" }, { @@ -42059,12 +42133,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/5dad0ad1-a898-459c-9302-fecfb8af265d/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.64, + "duration_ms": 8.84, "detail": "" }, { @@ -42072,12 +42146,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/c76ebeda-3d9d-483c-809c-eae1e577d736/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": 1.59, + "duration_ms": 8.46, "detail": "" }, { @@ -42085,12 +42159,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/5ff8a816-12df-4e0d-ba92-c5610a3c9769/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.36, + "duration_ms": 7.07, "detail": "" }, { @@ -42098,12 +42172,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/1e1af86c-befb-494e-95c3-015f8d21ccfc/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.59, + "duration_ms": 5.97, "detail": "" }, { @@ -42111,12 +42185,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/e5b3a0fd-f859-4fd8-b61e-f7e89bb70c5b/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.44, + "duration_ms": 8.05, "detail": "" }, { @@ -42124,12 +42198,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/5f236bac-beaa-4f73-9768-dbb81ce8972c/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.39, + "duration_ms": 7.6, "detail": "" }, { @@ -42137,12 +42211,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/211a08fb-49ea-4138-8184-c1864ead099c/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": 1.59, + "duration_ms": 6.8, "detail": "" }, { @@ -42150,12 +42224,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/2269bae3-642f-4007-9b04-fb3ed36d1165/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 6.83, "detail": "" }, { @@ -42163,12 +42237,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/f7e01de4-12ec-4d44-8077-812185361c97/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 2.24, + "duration_ms": 7.5, "detail": "" }, { @@ -42176,12 +42250,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/dc6f9209-0485-4127-a412-b5a74f8c3921/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.39, + "duration_ms": 9.39, "detail": "" }, { @@ -42189,12 +42263,12 @@ "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/8dc80c73-baa8-4bb3-87b7-1a9748f91248/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.02, + "duration_ms": 16.91, "detail": "" }, { @@ -42202,12 +42276,12 @@ "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/8f226a37-1fd5-486f-b9a1-763db97e7dcb/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.98, + "duration_ms": 15.23, "detail": "" }, { @@ -42215,12 +42289,12 @@ "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/8857af6a-ffca-41ee-9cda-d15b1a0314a4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.87, + "duration_ms": 13.42, "detail": "" }, { @@ -42228,12 +42302,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/d1bc4cb1-bcbc-4465-bafe-78ec4e158ffb/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.51, + "duration_ms": 11.34, "detail": "" }, { @@ -42241,12 +42315,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/628b80ce-1ce7-4779-be47-a6b9f2425b67/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": 1.61, + "duration_ms": 11.58, "detail": "" }, { @@ -42254,12 +42328,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/d3a27ad9-d6cc-4bce-aa69-e86cf6036987/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.35, + "duration_ms": 8.35, "detail": "" }, { @@ -42267,12 +42341,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/4e07c62d-48a3-4f7b-80aa-2ec43f37758f/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.47, + "duration_ms": 9.95, "detail": "" }, { @@ -42280,12 +42354,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/392ba132-bb33-40f2-b667-e0b25827d7e1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.26, + "duration_ms": 9.97, "detail": "" }, { @@ -42293,12 +42367,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/30f1ad80-27c0-4726-b408-b11bdc055c99/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.36, + "duration_ms": 8.41, "detail": "" }, { @@ -42306,12 +42380,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/1a77c2fa-e407-401d-a9ba-359c14993ceb/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": 1.53, + "duration_ms": 8.66, "detail": "" }, { @@ -42319,12 +42393,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/a22b63a8-5783-4417-8b8c-3f96fb7dcb4e/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.32, + "duration_ms": 7.12, "detail": "" }, { @@ -42332,12 +42406,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/5053de02-6a84-40cc-8f1a-88094114144d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.37, + "duration_ms": 10.11, "detail": "" }, { @@ -42345,12 +42419,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/382b0edb-347c-49e7-ac98-d4114d5c06d1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.25, + "duration_ms": 7.93, "detail": "" }, { @@ -42358,12 +42432,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/7ae8242a-b4a2-4546-bd70-14888ae67790/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.32, + "duration_ms": 7.36, "detail": "" }, { @@ -42371,12 +42445,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/65f699a1-e4d5-4be2-87ea-58e8590eb1cd/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": 1.67, + "duration_ms": 19.97, "detail": "" }, { @@ -42384,12 +42458,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/1dab4db6-660b-49a6-96aa-441944adfeb7/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 11.12, "detail": "" }, { @@ -42397,12 +42471,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/dcdf4a9f-853d-4cb3-86a5-93b0c753825a/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.54, + "duration_ms": 11.48, "detail": "" }, { @@ -42410,12 +42484,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/1ec5946c-7691-4d0d-a7a5-9b429eded5a0/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.29, + "duration_ms": 7.78, "detail": "" }, { @@ -42428,7 +42502,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 9.92, "detail": "" }, { @@ -42439,9 +42513,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.38, + "duration_ms": 12.59, "detail": "" }, { @@ -42449,12 +42523,12 @@ "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/fd4febd1-99a5-4f8a-9bab-81fca6dba358", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9e8a5837-508d-4b89-80de-79440f20c6a7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 9.62, "detail": "" }, { @@ -42462,12 +42536,12 @@ "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/75937656-e9f2-4477-bedd-7ccd7e34f5e3", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a97be79e-8447-44dc-84fd-040db10d1833", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 10.8, "detail": "" }, { @@ -42475,12 +42549,12 @@ "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/2b564a27-2ba7-4b17-ae95-031ce33782ad", + "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": 1.36, + "duration_ms": 10.96, "detail": "" }, { @@ -42491,9 +42565,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 8.62, "detail": "" }, { @@ -42504,9 +42578,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 1.99, + "duration_ms": 8.97, "detail": "" }, { @@ -42514,12 +42588,12 @@ "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/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 5.15, "detail": "" }, { @@ -42527,12 +42601,12 @@ "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/4b2b0d6b-021f-4105-b587-d481085a478e", + "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": 1.24, + "duration_ms": 8.3, "detail": "" }, { @@ -42540,12 +42614,12 @@ "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/4b2b0d6b-021f-4105-b587-d481085a478e", + "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": 1.21, + "duration_ms": 8.85, "detail": "" }, { @@ -42558,7 +42632,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 14.68, "detail": "" }, { @@ -42571,7 +42645,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.45, + "duration_ms": 19.38, "detail": "" }, { @@ -42584,7 +42658,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 7.16, "detail": "" }, { @@ -42597,7 +42671,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 18.35, "detail": "" }, { @@ -42605,12 +42679,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.11, + "duration_ms": 6.86, "detail": "" }, { @@ -42623,7 +42697,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 11.05, "detail": "" }, { @@ -42636,7 +42710,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 1.11, + "duration_ms": 4.96, "detail": "" }, { @@ -42647,9 +42721,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 7.53, "detail": "" }, { @@ -42657,12 +42731,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.1, + "duration_ms": 4.23, "detail": "" }, { @@ -42670,12 +42744,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.16, + "duration_ms": 4.99, "detail": "" }, { @@ -42688,7 +42762,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.08, + "duration_ms": 9.78, "detail": "" }, { @@ -42701,7 +42775,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 8.72, "detail": "" }, { @@ -42712,9 +42786,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.11, "detail": "" }, { @@ -42725,9 +42799,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 6.24, "detail": "" }, { @@ -42738,9 +42812,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 6.13, "detail": "" }, { @@ -42748,12 +42822,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 1.24, + "duration_ms": 5.54, "detail": "" }, { @@ -42761,12 +42835,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/b83e890a-d9cc-4a5c-8e27-8915d7cb696b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 14.39, "detail": "" }, { @@ -42777,9 +42851,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 7.04, "detail": "" }, { @@ -42790,9 +42864,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.21, + "duration_ms": 9.86, "detail": "" }, { @@ -42800,12 +42874,12 @@ "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/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 9.43, "detail": "" }, { @@ -42813,12 +42887,12 @@ "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/4b2b0d6b-021f-4105-b587-d481085a478e", + "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": 1.15, + "duration_ms": 5.65, "detail": "" }, { @@ -42826,12 +42900,12 @@ "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/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/033e1490-3a32-495f-95a9-3e1a51e58d89", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 7.47, "detail": "" }, { @@ -42844,7 +42918,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 7.09, "detail": "" }, { @@ -42857,7 +42931,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 8.14, "detail": "" }, { @@ -42865,12 +42939,12 @@ "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/8c69c8b0-2e3f-47f9-b4d1-329df44d99b4", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 6.07, "detail": "" }, { @@ -42878,12 +42952,12 @@ "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/8c69c8b0-2e3f-47f9-b4d1-329df44d99b4", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f0b221de-2851-4ef3-928e-f35984e2761d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 6.94, "detail": "" }, { @@ -42891,12 +42965,12 @@ "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/8c69c8b0-2e3f-47f9-b4d1-329df44d99b4", + "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": 1.18, + "duration_ms": 7.49, "detail": "" }, { @@ -42909,7 +42983,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 7.75, "detail": "" }, { @@ -42922,7 +42996,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 6.76, "detail": "" }, { @@ -42935,7 +43009,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 6.37, "detail": "" }, { @@ -42948,7 +43022,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 8.68, "detail": "" }, { @@ -42956,12 +43030,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.28, + "duration_ms": 7.48, "detail": "" }, { @@ -42969,12 +43043,12 @@ "operation_id": "vnicprofiles.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v3/networks/4b2b0d6b-021f-4105-b587-d481085a478e/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.24, + "duration_ms": 9.56, "detail": "" }, { @@ -42982,12 +43056,12 @@ "operation_id": "vnicprofiles.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v3/networks/4b2b0d6b-021f-4105-b587-d481085a478e/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": 1.41, + "duration_ms": 14.49, "detail": "" }, { @@ -42995,12 +43069,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/4b2b0d6b-021f-4105-b587-d481085a478e/vnicprofiles/7c2bb05c-23a9-4e20-a747-dfe84c77a570", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 10.3, "detail": "" }, { @@ -43008,12 +43082,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/4b2b0d6b-021f-4105-b587-d481085a478e/vnicprofiles/c3076c82-715c-4efe-949b-cc5ef5c2ad8c", + "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": 1.25, + "duration_ms": 9.65, "detail": "" }, { @@ -43021,12 +43095,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/4b2b0d6b-021f-4105-b587-d481085a478e/vnicprofiles/04284039-382a-49f5-8884-ad7937662567", + "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": 1.26, + "duration_ms": 9.89, "detail": "" }, { @@ -43039,7 +43113,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 7.68, "detail": "" }, { @@ -43052,7 +43126,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 10.04, "detail": "" }, { @@ -43063,9 +43137,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 7.04, "detail": "" }, { @@ -43076,9 +43150,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 11.22, "detail": "" }, { @@ -43086,12 +43160,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.11, + "duration_ms": 13.91, "detail": "" }, { @@ -43104,7 +43178,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 12.04, "detail": "" }, { @@ -43117,7 +43191,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.7, + "duration_ms": 15.71, "detail": "" }, { @@ -43130,7 +43204,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 14.58, "detail": "" }, { @@ -43143,7 +43217,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 23.77, "detail": "" }, { @@ -43151,12 +43225,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.18, + "duration_ms": 7.21, "detail": "" }, { @@ -43169,7 +43243,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 21.45, "detail": "" }, { @@ -43182,7 +43256,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.82, + "duration_ms": 19.6, "detail": "" }, { @@ -43193,9 +43267,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 12.95, "detail": "" }, { @@ -43203,12 +43277,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.23, + "duration_ms": 17.49, "detail": "" }, { @@ -43216,12 +43290,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.12, + "duration_ms": 9.87, "detail": "" }, { @@ -43234,7 +43308,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 12.54, "detail": "" }, { @@ -43247,7 +43321,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.8, + "duration_ms": 14.7, "detail": "" }, { @@ -43258,9 +43332,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 11.49, "detail": "" }, { @@ -43271,9 +43345,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 12.59, "detail": "" }, { @@ -43281,12 +43355,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 1.2, + "duration_ms": 8.05, "detail": "" }, { @@ -43294,12 +43368,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb/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": 1.3, + "duration_ms": 10.89, "detail": "" }, { @@ -43307,12 +43381,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb/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": 1.14, + "duration_ms": 6.42, "detail": "" }, { @@ -43320,12 +43394,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb/steps/cc66e64c-5ce1-4a49-9bd2-7d902ba38e07", + "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": 1.1, + "duration_ms": 8.68, "detail": "" }, { @@ -43333,12 +43407,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb/steps/68c52aa2-fa72-4906-8810-756ee3786e7b", + "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": 1.25, + "duration_ms": 7.49, "detail": "" }, { @@ -43346,12 +43420,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb/steps/0838c97b-78e6-4673-978f-597d6244717d", + "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": 1.29, + "duration_ms": 8.15, "detail": "" }, { @@ -43364,7 +43438,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.51, + "duration_ms": 23.24, "detail": "" }, { @@ -43377,7 +43451,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 21.16, "detail": "" }, { @@ -43388,9 +43462,9 @@ "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 37.38, "detail": "" }, { @@ -43403,7 +43477,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.21, + "duration_ms": 26.42, "detail": "" }, { @@ -43414,9 +43488,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 10.08, "detail": "" }, { @@ -43429,7 +43503,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.01, + "duration_ms": 8.49, "detail": "" }, { @@ -43440,9 +43514,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 7.92, "detail": "" }, { @@ -43455,7 +43529,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 7.28, "detail": "" }, { @@ -43466,9 +43540,9 @@ "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 9.38, "detail": "" }, { @@ -43481,7 +43555,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 8.44, "detail": "" }, { @@ -43494,7 +43568,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 8.26, "detail": "" }, { @@ -43507,7 +43581,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 8.86, "detail": "" }, { @@ -43515,12 +43589,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1109", + "path_resolved": "/ovirt-engine/api/events/52", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 8.74, "detail": "" }, { @@ -43533,7 +43607,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 6.67, "detail": "" }, { @@ -43544,9 +43618,9 @@ "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 8.47, "detail": "" }, { @@ -43559,7 +43633,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 6.37, "detail": "" }, { @@ -43570,9 +43644,9 @@ "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 6.3, "detail": "" }, { @@ -43585,7 +43659,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 7.61, "detail": "" }, { @@ -43593,12 +43667,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/e25e1f85-aae2-441c-b717-1adffb2126d1", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 5.41, "detail": "" }, { @@ -43611,7 +43685,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 14.12, "detail": "" }, { @@ -43619,12 +43693,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb", + "path_resolved": "/ovirt-engine/api/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 7.89, "detail": "" }, { @@ -43637,7 +43711,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 10.82, "detail": "" }, { @@ -43645,12 +43719,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 8.35, "detail": "" }, { @@ -43663,7 +43737,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 11.24, "detail": "" }, { @@ -43674,9 +43748,9 @@ "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 7.92, "detail": "" }, { @@ -43689,7 +43763,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 6.35, "detail": "" }, { @@ -43700,9 +43774,9 @@ "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 5.73, "detail": "" }, { @@ -43715,7 +43789,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 6.77, "detail": "" }, { @@ -43726,9 +43800,9 @@ "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 7.98, "detail": "" }, { @@ -43741,7 +43815,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 6.48, "detail": "" }, { @@ -43754,7 +43828,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 6.42, "detail": "" }, { @@ -43767,7 +43841,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 6.21, "detail": "" }, { @@ -43778,9 +43852,9 @@ "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 7.83, "detail": "" }, { @@ -43793,7 +43867,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 5.35, "detail": "" }, { @@ -43804,9 +43878,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 5.26, "detail": "" }, { @@ -43819,7 +43893,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 4.96, "detail": "" }, { @@ -43830,9 +43904,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 5.21, "detail": "" }, { @@ -43845,7 +43919,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 5.77, "detail": "" }, { @@ -43853,12 +43927,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/baae0b7d-6397-4d94-9d2d-b1dda2e24ea8", + "path_resolved": "/ovirt-engine/api/storageconnections/40a8e689-a171-47d0-9ef6-02b99642071a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 6.14, "detail": "" }, { @@ -43871,7 +43945,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 9.57, "detail": "" }, { @@ -43882,9 +43956,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 8.84, "detail": "" }, { @@ -43897,7 +43971,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 7.41, "detail": "" }, { @@ -43908,9 +43982,9 @@ "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.24, "detail": "" }, { @@ -43923,7 +43997,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 6.19, "detail": "" }, { @@ -43934,9 +44008,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 7.21, "detail": "" }, { @@ -43949,7 +44023,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 8.73, "detail": "" }, { @@ -43962,7 +44036,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 8.77, "detail": "" }, { @@ -43975,7 +44049,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 6.6, "detail": "" }, { @@ -43986,9 +44060,9 @@ "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 7.57, "detail": "" }, { @@ -44001,7 +44075,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 9.94, "detail": "" }, { @@ -44009,12 +44083,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/987e8256-4b20-40a0-9a98-5f09a6993df4", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 6.15, "detail": "" }, { @@ -44027,7 +44101,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.43, "detail": "" }, { @@ -44035,12 +44109,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/c53ba647-c8e4-47c4-95ed-da9e2ba2f203", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 5.53, "detail": "" }, { @@ -44048,12 +44122,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/25b457e4-e964-498d-8a4c-62a46708ffc1/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.42, + "duration_ms": 7.62, "detail": "" }, { @@ -44061,12 +44135,12 @@ "operation_id": "head.diskattachments.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/5ddb6f16-eecd-4a52-9bdf-1c3af4f49a1c/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.45, + "duration_ms": 14.42, "detail": "" }, { @@ -44074,12 +44148,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/b84d4fd0-bb57-4c24-a3a9-1248f4829e4b/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.4, + "duration_ms": 17.56, "detail": "" }, { @@ -44087,12 +44161,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/cb3690d5-ca88-4e3f-b7f7-85bd3c671120/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.3, + "duration_ms": 11.1, "detail": "" }, { @@ -44100,12 +44174,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/561c77b0-2de4-49ac-9cfd-ac39b2f25470/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.64, + "duration_ms": 6.85, "detail": "" }, { @@ -44113,12 +44187,12 @@ "operation_id": "head.cdroms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/8262d855-c411-4f3f-9c0b-323a44b36f21/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.66, + "duration_ms": 7.39, "detail": "" }, { @@ -44126,12 +44200,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/7581fe2e-2ae8-4581-82de-721501f2083b/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.51, + "duration_ms": 8.12, "detail": "" }, { @@ -44139,12 +44213,12 @@ "operation_id": "head.snapshots.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/e77a8d28-f830-4c4a-ba41-c75911a13a66/snapshots/3f9147de-2e4c-4dd2-ab8f-d5a880605532", + "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": 1.5, + "duration_ms": 7.48, "detail": "" }, { @@ -44152,12 +44226,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/31c15334-ce29-4caa-b89f-0884345f29be/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.72, + "duration_ms": 12.01, "detail": "" }, { @@ -44165,12 +44239,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/28b5c154-6cec-4513-a12d-45dbbf30ac59/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.34, + "duration_ms": 6.6, "detail": "" }, { @@ -44178,12 +44252,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/6c952b1f-af35-4dc2-a33f-d38e286d82a8/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": 1.54, + "duration_ms": 7.9, "detail": "" }, { @@ -44191,12 +44265,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/a295c679-f555-44c9-8497-ff37e1ff9831/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.46, + "duration_ms": 7.08, "detail": "" }, { @@ -44204,12 +44278,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/fd5db1ac-6491-43e1-bdf5-a8f1a165c9dd/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.43, + "duration_ms": 5.69, "detail": "" }, { @@ -44217,12 +44291,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/5f285623-1aa9-4ebb-8a38-4d22e197358e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.02, + "duration_ms": 9.12, "detail": "" }, { @@ -44230,12 +44304,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/62e40095-d4b2-4b81-87c6-625a82baea32/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.53, + "duration_ms": 10.59, "detail": "" }, { @@ -44243,12 +44317,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/cb03a10d-1c59-4145-9f3b-1e5700cba116/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.48, + "duration_ms": 7.91, "detail": "" }, { @@ -44256,12 +44330,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/c7c897ac-e6b2-4030-9275-694978f473b0/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.55, + "duration_ms": 6.76, "detail": "" }, { @@ -44269,12 +44343,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/bd926e5e-969b-40db-956d-8e1dd150c615/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.43, + "duration_ms": 8.6, "detail": "" }, { @@ -44282,12 +44356,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/ffeb4f1c-c91a-4839-af7e-1a7018ec7c81/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.15, + "duration_ms": 12.29, "detail": "" }, { @@ -44295,12 +44369,12 @@ "operation_id": "head.statistics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/3c9f07f5-7de4-4a93-9868-da921f71e878/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 20.43, "detail": "" }, { @@ -44313,7 +44387,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 13.42, "detail": "" }, { @@ -44321,12 +44395,12 @@ "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/c3458454-9bc1-441a-ac77-6fa927d072e6", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9e8a5837-508d-4b89-80de-79440f20c6a7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 10.01, "detail": "" }, { @@ -44337,9 +44411,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 7.26, "detail": "" }, { @@ -44347,12 +44421,12 @@ "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/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 6.97, "detail": "" }, { @@ -44365,7 +44439,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 8.37, "detail": "" }, { @@ -44378,7 +44452,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 7.34, "detail": "" }, { @@ -44391,7 +44465,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 7.79, "detail": "" }, { @@ -44402,9 +44476,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 8.14, "detail": "" }, { @@ -44415,9 +44489,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 7.18, "detail": "" }, { @@ -44428,9 +44502,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 7.81, "detail": "" }, { @@ -44441,9 +44515,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 7.24, "detail": "" }, { @@ -44451,12 +44525,12 @@ "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/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 7.68, "detail": "" }, { @@ -44469,7 +44543,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 9.04, "detail": "" }, { @@ -44477,12 +44551,12 @@ "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/8c69c8b0-2e3f-47f9-b4d1-329df44d99b4", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 7.45, "detail": "" }, { @@ -44495,7 +44569,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 7.04, "detail": "" }, { @@ -44508,7 +44582,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 6.19, "detail": "" }, { @@ -44516,12 +44590,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/4b2b0d6b-021f-4105-b587-d481085a478e/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.29, + "duration_ms": 5.85, "detail": "" }, { @@ -44529,12 +44603,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/4b2b0d6b-021f-4105-b587-d481085a478e/vnicprofiles/7c9e4d86-e1d8-4484-a357-ee8c2f01e510", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 5.63, "detail": "" }, { @@ -44547,7 +44621,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.44, "detail": "" }, { @@ -44558,9 +44632,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 6.57, "detail": "" }, { @@ -44573,7 +44647,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 6.51, "detail": "" }, { @@ -44586,7 +44660,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 6.71, "detail": "" }, { @@ -44599,7 +44673,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 8.3, "detail": "" }, { @@ -44610,9 +44684,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 7.27, "detail": "" }, { @@ -44625,7 +44699,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 24.15, "detail": "" }, { @@ -44636,9 +44710,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 9.65, "detail": "" }, { @@ -44646,12 +44720,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb/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": 1.25, + "duration_ms": 11.57, "detail": "" }, { @@ -44659,12 +44733,12 @@ "operation_id": "head.steps.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb/steps/f74d2fc7-059f-45e8-b41c-ab7c13a26356", + "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": 1.19, + "duration_ms": 11.02, "detail": "" }, { @@ -44677,7 +44751,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.25, + "duration_ms": 15.29, "detail": "" }, { @@ -44690,7 +44764,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 7.81, "detail": "" }, { @@ -44701,9 +44775,9 @@ "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 6.51, "detail": "" }, { @@ -44716,7 +44790,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 13.2, "detail": "" }, { @@ -44727,9 +44801,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 7.66, "detail": "" }, { @@ -44742,7 +44816,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 8.94, "detail": "" }, { @@ -44753,9 +44827,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 10.44, "detail": "" }, { @@ -44768,7 +44842,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 10.29, "detail": "" }, { @@ -44779,9 +44853,9 @@ "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 6.66, "detail": "" }, { @@ -44794,7 +44868,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 5.4, "detail": "" }, { @@ -44807,7 +44881,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 7.39, "detail": "" }, { @@ -44820,7 +44894,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 6.31, "detail": "" }, { @@ -44828,12 +44902,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1109", + "path_resolved": "/ovirt-engine/api/v3/events/52", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 6.5, "detail": "" }, { @@ -44846,7 +44920,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 11.72, "detail": "" }, { @@ -44857,9 +44931,9 @@ "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 7.42, "detail": "" }, { @@ -44872,7 +44946,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 4.42, "detail": "" }, { @@ -44883,9 +44957,9 @@ "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 5.76, "detail": "" }, { @@ -44898,7 +44972,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 7.18, "detail": "" }, { @@ -44906,12 +44980,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/a1e4f71f-2bf4-496b-ae1b-d105160bf202", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 8.47, "detail": "" }, { @@ -44924,7 +44998,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 11.68, "detail": "" }, { @@ -44932,12 +45006,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb", + "path_resolved": "/ovirt-engine/api/v3/jobs/529f2ecf-ffc0-45a5-ac83-fdd1bcf169a1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 9.32, "detail": "" }, { @@ -44950,7 +45024,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 10.91, "detail": "" }, { @@ -44958,12 +45032,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 9.31, "detail": "" }, { @@ -44976,7 +45050,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 11.99, "detail": "" }, { @@ -44987,9 +45061,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 7.72, "detail": "" }, { @@ -45002,7 +45076,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 8.61, "detail": "" }, { @@ -45013,9 +45087,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 8.51, "detail": "" }, { @@ -45028,7 +45102,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 8.09, "detail": "" }, { @@ -45039,9 +45113,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 7.83, "detail": "" }, { @@ -45054,7 +45128,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 6.9, "detail": "" }, { @@ -45067,7 +45141,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 8.28, "detail": "" }, { @@ -45080,7 +45154,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 9.89, "detail": "" }, { @@ -45091,9 +45165,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 8.92, "detail": "" }, { @@ -45106,7 +45180,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 12.35, "detail": "" }, { @@ -45117,9 +45191,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 8.36, "detail": "" }, { @@ -45132,7 +45206,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 9.85, "detail": "" }, { @@ -45143,9 +45217,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.96, + "duration_ms": 16.97, "detail": "" }, { @@ -45158,7 +45232,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 8.81, "detail": "" }, { @@ -45166,12 +45240,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/baae0b7d-6397-4d94-9d2d-b1dda2e24ea8", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/40a8e689-a171-47d0-9ef6-02b99642071a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 7.3, "detail": "" }, { @@ -45184,7 +45258,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 7.74, "detail": "" }, { @@ -45195,9 +45269,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 10.95, "detail": "" }, { @@ -45210,7 +45284,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 7.57, "detail": "" }, { @@ -45221,9 +45295,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 10.07, "detail": "" }, { @@ -45236,7 +45310,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 8.64, "detail": "" }, { @@ -45247,9 +45321,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 7.71, "detail": "" }, { @@ -45262,7 +45336,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.14, "detail": "" }, { @@ -45275,7 +45349,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 8.65, "detail": "" }, { @@ -45288,7 +45362,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 5.52, "detail": "" }, { @@ -45299,9 +45373,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 16.41, "detail": "" }, { @@ -45314,7 +45388,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 13.38, "detail": "" }, { @@ -45322,12 +45396,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/55c8b94c-f718-4662-9750-c278d1642fb3", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 12.35, "detail": "" }, { @@ -45340,7 +45414,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 12.24, "detail": "" }, { @@ -45348,12 +45422,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/0bb90ad6-9c70-40ee-8db1-0b3c3a240640", + "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 13.12, "detail": "" }, { @@ -45361,12 +45435,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/8a9d6290-0d7b-4f14-bf4b-3ec5f0ebea9f/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": 1.3, + "duration_ms": 42.82, "detail": "" }, { @@ -45374,12 +45448,12 @@ "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/a7b26d54-113a-4de5-9bd7-7a11f043f222/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.3, + "duration_ms": 23.44, "detail": "" }, { @@ -45387,12 +45461,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/00b828b0-0b06-45f6-b7b9-77ee7303b5c2/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.23, + "duration_ms": 57.36, "detail": "" }, { @@ -45400,12 +45474,12 @@ "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/8290bc84-b1fe-4f07-92fb-833e5753b30d/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.2, + "duration_ms": 9.51, "detail": "" }, { @@ -45413,12 +45487,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/81756b3a-6acf-48e0-8fe9-15eaa2afe897/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": 1.35, + "duration_ms": 14.77, "detail": "" }, { @@ -45426,12 +45500,12 @@ "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/06377d1e-1e79-44a5-8f95-a15d85507cfa/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.32, + "duration_ms": 10.91, "detail": "" }, { @@ -45439,12 +45513,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/4ca0d4b1-40c6-42f4-b129-f417e82e2e66/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": 1.27, + "duration_ms": 17.41, "detail": "" }, { @@ -45452,12 +45526,12 @@ "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/3e4aff6d-f914-4b5b-8cf6-eaf4f283ec35/snapshots/178fa0a2-f78a-4df8-bff2-b2af09620641", + "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": 1.3, + "duration_ms": 14.82, "detail": "" }, { @@ -45465,12 +45539,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/6fac5b2b-a86f-4399-8929-b9c36690667e/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.77, + "duration_ms": 15.39, "detail": "" }, { @@ -45478,12 +45552,12 @@ "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/5ef8e4b1-6c26-40cc-af1b-ba46300ccd5c/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.26, + "duration_ms": 12.08, "detail": "" }, { @@ -45491,12 +45565,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/2e9ef316-947c-4ee7-b598-1c7df65c6e59/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.44, + "duration_ms": 11.37, "detail": "" }, { @@ -45504,12 +45578,12 @@ "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/d6a64c7a-1d20-488d-90ae-049b3e3cd0d4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.44, + "duration_ms": 16.49, "detail": "" }, { @@ -45517,12 +45591,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/c4ee31fa-05cf-421a-98d1-dad4a5611bf3/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.39, + "duration_ms": 34.45, "detail": "" }, { @@ -45530,12 +45604,12 @@ "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/23f0d578-4d26-4974-ad52-bfc69a33d2f4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 15.19, "detail": "" }, { @@ -45543,12 +45617,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/21d31c19-4652-4a35-b358-1f3ea9c5c53d/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.42, + "duration_ms": 16.52, "detail": "" }, { @@ -45556,12 +45630,12 @@ "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/c08751e6-f15d-4536-9a9b-389b0f3a4622/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.43, + "duration_ms": 8.99, "detail": "" }, { @@ -45569,12 +45643,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/e2db2283-b22b-47bb-90e5-d0faa27a223c/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.45, + "duration_ms": 8.57, "detail": "" }, { @@ -45582,12 +45656,12 @@ "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/825215cd-a05b-474c-a13f-8fe75f082fd6/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.35, + "duration_ms": 10.87, "detail": "" }, { @@ -45595,12 +45669,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/b193b52f-1745-4b5c-bfd4-763a4c864bd2/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.43, + "duration_ms": 11.34, "detail": "" }, { @@ -45608,12 +45682,12 @@ "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/be7d6958-26df-4795-971e-8def00a3c55b/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 9.28, "detail": "" }, { @@ -45626,7 +45700,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 6.45, "detail": "" }, { @@ -45634,12 +45708,12 @@ "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/39294880-722b-4f99-930a-052159d45b5c", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9e8a5837-508d-4b89-80de-79440f20c6a7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 5.6, "detail": "" }, { @@ -45650,9 +45724,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 10.47, "detail": "" }, { @@ -45660,12 +45734,12 @@ "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/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 7.43, "detail": "" }, { @@ -45678,7 +45752,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 11.91, "detail": "" }, { @@ -45691,7 +45765,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 7.05, "detail": "" }, { @@ -45704,7 +45778,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 5.83, "detail": "" }, { @@ -45715,9 +45789,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.34, "detail": "" }, { @@ -45728,9 +45802,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 11.95, "detail": "" }, { @@ -45741,9 +45815,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 9.87, "detail": "" }, { @@ -45754,9 +45828,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 11.21, "detail": "" }, { @@ -45764,12 +45838,12 @@ "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/4b2b0d6b-021f-4105-b587-d481085a478e", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 6.4, "detail": "" }, { @@ -45782,7 +45856,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 4.42, "detail": "" }, { @@ -45790,12 +45864,12 @@ "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/8c69c8b0-2e3f-47f9-b4d1-329df44d99b4", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 4.65, "detail": "" }, { @@ -45808,7 +45882,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 6.26, "detail": "" }, { @@ -45821,7 +45895,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 6.33, "detail": "" }, { @@ -45829,12 +45903,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v3/networks/4b2b0d6b-021f-4105-b587-d481085a478e/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.29, + "duration_ms": 5.18, "detail": "" }, { @@ -45842,12 +45916,12 @@ "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/4b2b0d6b-021f-4105-b587-d481085a478e/vnicprofiles/98fe57fc-1632-4322-9e1c-c521a1ad5c57", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 4.79, "detail": "" }, { @@ -45860,7 +45934,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 13.81, "detail": "" }, { @@ -45871,9 +45945,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 14.9, "detail": "" }, { @@ -45886,7 +45960,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 7.62, "detail": "" }, { @@ -45899,7 +45973,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 9.99, "detail": "" }, { @@ -45912,7 +45986,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 12.02, "detail": "" }, { @@ -45923,9 +45997,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 8.16, "detail": "" }, { @@ -45938,7 +46012,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 8.68, "detail": "" }, { @@ -45949,9 +46023,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 5.15, "detail": "" }, { @@ -45959,12 +46033,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/266e86a8-f9b6-4aef-b7db-37df23363afb/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": 1.28, + "duration_ms": 7.34, "detail": "" }, { @@ -45972,12 +46046,12 @@ "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/266e86a8-f9b6-4aef-b7db-37df23363afb/steps/c21d9529-9aca-4478-a2af-e245a67d2daf", + "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": 1.34, + "duration_ms": 7.17, "detail": "" }, { @@ -45990,7 +46064,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.82, + "duration_ms": 12.22, "detail": "" }, { @@ -46003,7 +46077,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 4.09, "detail": "" }, { @@ -46016,7 +46090,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 7.77, "detail": "" }, { @@ -46029,7 +46103,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 6.23, "detail": "" }, { @@ -46037,12 +46111,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/441d3e56-f507-465c-bdd4-e53f5814aae2", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 9.01, "detail": "" }, { @@ -46050,12 +46124,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/5c3f61e4-bc8c-4b3c-a456-adb665472d87", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 4.49, "detail": "" }, { @@ -46068,7 +46142,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.93, + "duration_ms": 5.93, "detail": "" }, { @@ -46081,7 +46155,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 8.6, "detail": "" }, { @@ -46094,7 +46168,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 4.58, "detail": "" }, { @@ -46102,12 +46176,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/90c92130-2243-47cc-bd7e-f98d45f6ccd4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 5.71, "detail": "" }, { @@ -46115,12 +46189,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/0b1bf824-2c85-4392-add5-2d6e671b6f34", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 5.1, "detail": "" }, { @@ -46133,7 +46207,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.06, + "duration_ms": 7.48, "detail": "" }, { @@ -46146,7 +46220,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.53, + "duration_ms": 6.51, "detail": "" }, { @@ -46159,7 +46233,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.53, + "duration_ms": 6.52, "detail": "" }, { @@ -46172,7 +46246,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 3.23, "detail": "" }, { @@ -46185,7 +46259,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 6.32, "detail": "" }, { @@ -46198,7 +46272,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 4.5, "detail": "" }, { @@ -46206,12 +46280,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/5b6a3f2f-e778-4163-820a-cb0e3bf4d7ba", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 7.64, "detail": "" }, { @@ -46219,12 +46293,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/6a4c040a-37cf-4af3-9ec0-930eee601727", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 17.29, "detail": "" }, { @@ -46237,7 +46311,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.58, + "duration_ms": 11.49, "detail": "" }, { @@ -46250,7 +46324,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 7.65, "detail": "" }, { @@ -46263,7 +46337,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.08, + "duration_ms": 14.91, "detail": "" }, { @@ -46276,7 +46350,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 6.87, "detail": "" }, { @@ -46284,12 +46358,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/10838bd5-464b-4012-8a64-8bb6c8920fe1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 15.24, "detail": "" }, { @@ -46297,12 +46371,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/835422ce-cc9c-41bd-8abd-cf45b7af2286", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 12.19, "detail": "" }, { @@ -46315,7 +46389,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.51, + "duration_ms": 9.63, "detail": "" }, { @@ -46328,7 +46402,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.16, + "duration_ms": 18.19, "detail": "" }, { @@ -46341,7 +46415,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 10.75, "detail": "" }, { @@ -46354,7 +46428,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 11.56, "detail": "" }, { @@ -46367,7 +46441,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 9.07, "detail": "" }, { @@ -46380,7 +46454,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.82, + "duration_ms": 11.02, "detail": "" }, { @@ -46393,7 +46467,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.91, + "duration_ms": 6.1, "detail": "" }, { @@ -46406,7 +46480,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.84, + "duration_ms": 12.57, "detail": "" }, { @@ -46414,12 +46488,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/domains/{id}", - "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/domains/e91ded88-1a49-4337-8c0c-c788fb7ead28", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.78, + "duration_ms": 7.97, "detail": "" }, { @@ -46432,7 +46506,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 6.61, "detail": "" }, { @@ -46445,7 +46519,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.96, + "duration_ms": 7.03, "detail": "" }, { @@ -46453,12 +46527,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1110", + "path_resolved": "/ovirt-engine/api/events/53", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.95, + "duration_ms": 8.15, "detail": "" }, { @@ -46466,12 +46540,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1110", + "path_resolved": "/ovirt-engine/api/events/53", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.91, + "duration_ms": 6.68, "detail": "" }, { @@ -46479,12 +46553,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1110", + "path_resolved": "/ovirt-engine/api/events/9b12c1ff-b302-48da-bafb-b5e1b48cf577", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.81, + "duration_ms": 10.39, "detail": "" }, { @@ -46497,7 +46571,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 9.97, "detail": "" }, { @@ -46510,7 +46584,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.3, + "duration_ms": 10.97, "detail": "" }, { @@ -46523,7 +46597,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 7.57, "detail": "" }, { @@ -46531,12 +46605,12 @@ "operation_id": "externalhostproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/406134a9-8835-45db-b304-b1439ecea955", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 6.36, "detail": "" }, { @@ -46544,12 +46618,12 @@ "operation_id": "externalhostproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/967dc83d-07b5-48b5-8b1e-c424c9a1d9de", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 26.57, "detail": "" }, { @@ -46562,7 +46636,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 13.45, "detail": "" }, { @@ -46575,7 +46649,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 7.93, "detail": "" }, { @@ -46588,7 +46662,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.95, + "duration_ms": 6.86, "detail": "" }, { @@ -46596,12 +46670,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/a1552ee3-f76c-454e-b775-91dd817d1ddf", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 6.08, "detail": "" }, { @@ -46609,12 +46683,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/f72164a0-e5bf-4533-96d7-84a295a663bf", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.24, + "duration_ms": 9.74, "detail": "" }, { @@ -46627,7 +46701,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.84, + "duration_ms": 7.47, "detail": "" }, { @@ -46638,9 +46712,9 @@ "path_resolved": "/ovirt-engine/api/hosts", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.73, + "duration_ms": 15.42, "detail": "" }, { @@ -46648,12 +46722,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/54e8a873-be3b-4476-aaa7-0bd7d9255922", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 10.92, "detail": "" }, { @@ -46661,12 +46735,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/4c63efed-0850-4fcf-a8f3-68f0c43de132", + "path_resolved": "/ovirt-engine/api/hosts/7bc9ace9-e404-4e19-85ca-9f8e82196073", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.94, + "duration_ms": 15.04, "detail": "" }, { @@ -46674,12 +46748,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/70c2a42e-5385-4e25-8c4f-3161dc627cb0", + "path_resolved": "/ovirt-engine/api/hosts/327de848-f694-41c5-b991-3e8f40ec392c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 13.92, "detail": "" }, { @@ -46687,12 +46761,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/hosts/2a6bf216-83cb-48c8-98a3-cff02877146c/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": 1.91, + "duration_ms": 37.13, "detail": "" }, { @@ -46700,12 +46774,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/hosts/d94c8dff-3dce-4d31-a292-c1d6953ef960/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": 1.68, + "duration_ms": 11.3, "detail": "" }, { @@ -46713,12 +46787,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/hosts/182495d9-47a8-4f47-bd9a-8648210046b5/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": 1.57, + "duration_ms": 7.99, "detail": "" }, { @@ -46726,12 +46800,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/hosts/926035ad-73ed-43eb-ab2a-dab3b7bfb3c0/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": 1.65, + "duration_ms": 6.73, "detail": "" }, { @@ -46739,12 +46813,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/hosts/d85082f9-5e19-43df-9624-7e08f6558bb8/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.09, + "duration_ms": 6.57, "detail": "" }, { @@ -46752,12 +46826,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/hosts/b6aead7b-f803-404b-a8b7-6a2cc967ed96/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": 1.81, + "duration_ms": 7.28, "detail": "" }, { @@ -46765,12 +46839,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/hosts/05699e0a-e18e-4757-b36b-da66dbee1e52/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.25, + "duration_ms": 5.71, "detail": "" }, { @@ -46778,12 +46852,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/hosts/378ced91-b083-4350-8df3-53aecd4e685a/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": 1.94, + "duration_ms": 5.55, "detail": "" }, { @@ -46791,12 +46865,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/hosts/7ba85177-444a-469a-bab7-c43f9a465897/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.52, + "duration_ms": 7.41, "detail": "" }, { @@ -46804,12 +46878,12 @@ "operation_id": "hosts.unregisteredstoragedomainsdiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/hosts/6277ed57-6cff-4ed8-8350-f3979a8508fc/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": 5.23, + "duration_ms": 7.24, "detail": "" }, { @@ -46817,12 +46891,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/hosts/8f8b996b-0298-437f-ab6e-62fac5d04780/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": 2.65, + "duration_ms": 9.5, "detail": "" }, { @@ -46835,7 +46909,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 5.09, "detail": "" }, { @@ -46848,7 +46922,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 5.25, "detail": "" }, { @@ -46861,7 +46935,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 8.24, "detail": "" }, { @@ -46869,12 +46943,12 @@ "operation_id": "instancetypes.update", "method": "PUT", "path_template": "/ovirt-engine/api/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/instancetypes/631f8780-12b2-4c04-82b8-c700bb331235", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 5.36, "detail": "" }, { @@ -46882,12 +46956,12 @@ "operation_id": "instancetypes.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/instancetypes/ec2971a7-b024-4935-9f0c-2e85f4b81dd6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 5.65, "detail": "" }, { @@ -46900,7 +46974,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 8.31, "detail": "" }, { @@ -46913,7 +46987,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.87, + "duration_ms": 5.55, "detail": "" }, { @@ -46921,12 +46995,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0", + "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.84, + "duration_ms": 3.47, "detail": "" }, { @@ -46934,12 +47008,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0", + "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.93, + "duration_ms": 3.37, "detail": "" }, { @@ -46947,12 +47021,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0", + "path_resolved": "/ovirt-engine/api/jobs/629ff5fc-d589-4c97-8475-1d6636710e1a", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.85, + "duration_ms": 4.89, "detail": "" }, { @@ -46965,7 +47039,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 5.27, "detail": "" }, { @@ -46978,7 +47052,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.15, + "duration_ms": 6.2, "detail": "" }, { @@ -46986,12 +47060,12 @@ "operation_id": "katelloerrata.get", "method": "GET", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/f0f3553b-1097-4873-8608-218b9dfdb9c4", + "path_resolved": "/ovirt-engine/api/katelloerrata/09df8368-fdc0-466f-92e3-ce7027c41421", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.89, + "duration_ms": 5.38, "detail": "" }, { @@ -46999,12 +47073,12 @@ "operation_id": "katelloerrata.update", "method": "PUT", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/f0f3553b-1097-4873-8608-218b9dfdb9c4", + "path_resolved": "/ovirt-engine/api/katelloerrata/e9fda177-0c3c-4a87-b81d-46a7914f4162", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 7.41, "detail": "" }, { @@ -47012,12 +47086,12 @@ "operation_id": "katelloerrata.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/f0f3553b-1097-4873-8608-218b9dfdb9c4", + "path_resolved": "/ovirt-engine/api/katelloerrata/e0f4b56e-c79d-4f33-96ae-b3a91afcfc27", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.01, + "duration_ms": 13.3, "detail": "" }, { @@ -47030,7 +47104,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 7.43, "detail": "" }, { @@ -47043,7 +47117,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.27, + "duration_ms": 10.52, "detail": "" }, { @@ -47051,12 +47125,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 7.05, "detail": "" }, { @@ -47064,12 +47138,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/networks/3467b236-a009-455d-bac5-ac3c4f5f8a02", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 8.87, "detail": "" }, { @@ -47077,12 +47151,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/networks/7db944c2-a46e-42ea-bc30-557f4701488f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 9.34, "detail": "" }, { @@ -47095,7 +47169,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 10.86, "detail": "" }, { @@ -47108,7 +47182,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.2, + "duration_ms": 8.45, "detail": "" }, { @@ -47121,7 +47195,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 6.67, "detail": "" }, { @@ -47129,12 +47203,12 @@ "operation_id": "openstackimageproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/aa945620-ff39-4cf6-ab4a-7816e57f9ff4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.01, "detail": "" }, { @@ -47142,12 +47216,12 @@ "operation_id": "openstackimageproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/f7eca48d-75fa-477b-85bf-f7ae70a8adbe", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 4.24, "detail": "" }, { @@ -47160,7 +47234,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 4.65, "detail": "" }, { @@ -47173,7 +47247,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.17, + "duration_ms": 5.08, "detail": "" }, { @@ -47186,7 +47260,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.92, + "duration_ms": 9.53, "detail": "" }, { @@ -47194,12 +47268,12 @@ "operation_id": "openstacknetworkproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/4455232f-7f2e-4e87-a403-eba84b9b97c4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 5.03, "detail": "" }, { @@ -47207,12 +47281,12 @@ "operation_id": "openstacknetworkproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/7e4ba926-b215-4802-b751-1b6b1987498d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 4.52, "detail": "" }, { @@ -47225,7 +47299,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 3.83, "detail": "" }, { @@ -47238,7 +47312,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.37, + "duration_ms": 5.0, "detail": "" }, { @@ -47251,7 +47325,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.98, + "duration_ms": 4.35, "detail": "" }, { @@ -47259,12 +47333,12 @@ "operation_id": "openstackvolumeproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/6a142b83-6e72-4fdc-9a5a-605a1de2cf99", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 4.4, "detail": "" }, { @@ -47272,12 +47346,12 @@ "operation_id": "openstackvolumeproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/ca779721-ddea-4fed-80f7-47a543b6e0fc", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 4.11, "detail": "" }, { @@ -47290,7 +47364,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 3.17, "detail": "" }, { @@ -47303,7 +47377,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.07, + "duration_ms": 4.05, "detail": "" }, { @@ -47311,12 +47385,12 @@ "operation_id": "operatingsystems.get", "method": "GET", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/257e8613-f98b-423c-a3da-8adb5b8c42ad", + "path_resolved": "/ovirt-engine/api/operatingsystems/03e72aec-e20f-4b64-bf7d-97d8b1fb6b17", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.95, + "duration_ms": 3.85, "detail": "" }, { @@ -47324,12 +47398,12 @@ "operation_id": "operatingsystems.update", "method": "PUT", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/257e8613-f98b-423c-a3da-8adb5b8c42ad", + "path_resolved": "/ovirt-engine/api/operatingsystems/5b552384-03b6-4989-a9bb-4b816a9b3a69", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 3.79, "detail": "" }, { @@ -47337,12 +47411,12 @@ "operation_id": "operatingsystems.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/257e8613-f98b-423c-a3da-8adb5b8c42ad", + "path_resolved": "/ovirt-engine/api/operatingsystems/9791007a-ff30-4f2a-a33b-a67e2987cd29", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 3.78, "detail": "" }, { @@ -47355,7 +47429,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 3.64, "detail": "" }, { @@ -47368,7 +47442,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.86, + "duration_ms": 3.46, "detail": "" }, { @@ -47381,7 +47455,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 4.23, "detail": "" }, { @@ -47394,7 +47468,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 2.37, "detail": "" }, { @@ -47402,12 +47476,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/permissions/{id}", - "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/permissions/6fb75e50-a5a6-4924-bf3b-79c467740ea0", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.93, + "duration_ms": 2.49, "detail": "" }, { @@ -47420,7 +47494,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.6, "detail": "" }, { @@ -47433,7 +47507,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 3.36, "detail": "" }, { @@ -47446,7 +47520,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 2.48, "detail": "" }, { @@ -47454,12 +47528,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/7db64660-e545-402e-9575-f380a460d64d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 3.57, "detail": "" }, { @@ -47467,12 +47541,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/f72c662e-3c28-4a12-bd60-b2c8db0e0a94", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 2.73, "detail": "" }, { @@ -47485,7 +47559,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 3.28, "detail": "" }, { @@ -47498,7 +47572,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.17, + "duration_ms": 3.21, "detail": "" }, { @@ -47511,7 +47585,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.89, + "duration_ms": 3.45, "detail": "" }, { @@ -47519,12 +47593,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/a7d35d34-7bbd-480b-a432-7c44ba3445fe", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 3.65, "detail": "" }, { @@ -47532,12 +47606,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/36c76be0-d7f7-4fec-9d92-e7aff847f1a5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 3.28, "detail": "" }, { @@ -47550,7 +47624,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.93, + "duration_ms": 3.35, "detail": "" }, { @@ -47563,7 +47637,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.08, + "duration_ms": 5.78, "detail": "" }, { @@ -47576,7 +47650,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.93, + "duration_ms": 5.24, "detail": "" }, { @@ -47584,12 +47658,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/269eadf2-823d-4700-9295-d4f5c8393a74", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 3.5, "detail": "" }, { @@ -47597,12 +47671,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/b323ee12-ff83-48e7-ad57-ef3d9c5886c1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 5.43, "detail": "" }, { @@ -47615,7 +47689,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 3.18, "detail": "" }, { @@ -47628,7 +47702,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.35, + "duration_ms": 4.84, "detail": "" }, { @@ -47636,12 +47710,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/b818adb5-ea94-48b1-9d31-2f8642fc0f37", + "path_resolved": "/ovirt-engine/api/storageconnections/a4e71ad9-3be4-4fc5-80b2-a3c81ba6650c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 6.15, "detail": "" }, { @@ -47649,12 +47723,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/b818adb5-ea94-48b1-9d31-2f8642fc0f37", + "path_resolved": "/ovirt-engine/api/storageconnections/d8748825-a10e-4420-85db-d28e4d53a4e2", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.83, + "duration_ms": 4.6, "detail": "" }, { @@ -47662,12 +47736,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/b818adb5-ea94-48b1-9d31-2f8642fc0f37", + "path_resolved": "/ovirt-engine/api/storageconnections/4ad06099-b437-4eca-883a-27c8b255fef5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 4.68, "detail": "" }, { @@ -47680,7 +47754,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 5.22, "detail": "" }, { @@ -47693,7 +47767,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.36, + "duration_ms": 7.18, "detail": "" }, { @@ -47706,7 +47780,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 4.68, "detail": "" }, { @@ -47714,12 +47788,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/8ec2f59f-ab4c-4c02-9a38-1f4837dcf6ed", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 6.96, "detail": "" }, { @@ -47727,12 +47801,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/f2b3f81c-f74f-42fa-9b9c-2ab88e9391ad", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 5.02, "detail": "" }, { @@ -47745,7 +47819,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.48, + "duration_ms": 6.93, "detail": "" }, { @@ -47758,7 +47832,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.46, + "duration_ms": 7.36, "detail": "" }, { @@ -47771,7 +47845,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 6.61, "detail": "" }, { @@ -47784,7 +47858,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.26, + "duration_ms": 9.77, "detail": "" }, { @@ -47797,7 +47871,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 4.55, "detail": "" }, { @@ -47805,12 +47879,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/f72a7f6b-fb98-42c9-974f-f616dbee794d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 5.06, "detail": "" }, { @@ -47818,12 +47892,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/b3c7a8e0-d181-40d2-ae5d-bde490f60a79", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 4.55, "detail": "" }, { @@ -47836,7 +47910,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 4.33, "detail": "" }, { @@ -47849,7 +47923,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.39, + "duration_ms": 5.77, "detail": "" }, { @@ -47862,7 +47936,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.98, + "duration_ms": 4.42, "detail": "" }, { @@ -47870,12 +47944,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/28ae02a6-db0e-4ede-a001-d3dbe3d77b3a", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.83, + "duration_ms": 3.89, "detail": "" }, { @@ -47883,12 +47957,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/378e4544-7dd7-42ca-a402-90027bd6aa6e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 4.39, "detail": "" }, { @@ -47901,7 +47975,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 6.52, "detail": "" }, { @@ -47914,7 +47988,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 3.81, "detail": "" }, { @@ -47927,7 +48001,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.23, + "duration_ms": 3.03, "detail": "" }, { @@ -47940,7 +48014,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 3.28, "detail": "" }, { @@ -47953,7 +48027,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.83, + "duration_ms": 2.61, "detail": "" }, { @@ -47961,12 +48035,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/users/{id}", - "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/users/e611e837-1920-42c9-af32-80e25a2f94a0", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.8, + "duration_ms": 3.72, "detail": "" }, { @@ -47979,7 +48053,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.93, + "duration_ms": 3.6, "detail": "" }, { @@ -47992,7 +48066,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.09, + "duration_ms": 5.15, "detail": "" }, { @@ -48005,7 +48079,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.88, + "duration_ms": 3.6, "detail": "" }, { @@ -48013,12 +48087,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/144417e4-451a-4372-a0e7-2400c0a09ba0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 5.06, "detail": "" }, { @@ -48026,12 +48100,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/7d3c4acd-c08e-4f73-9bde-d99477290905", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 4.23, "detail": "" }, { @@ -48044,7 +48118,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 3.42, "detail": "" }, { @@ -48055,9 +48129,9 @@ "path_resolved": "/ovirt-engine/api/vms", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 0.96, + "duration_ms": 9.03, "detail": "" }, { @@ -48065,12 +48139,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/a8ed1f9b-ef71-4cf3-901f-f3487a2322cd", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 3.58, "detail": "" }, { @@ -48078,12 +48152,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/0efc1031-475f-4575-aa67-776854d88e68", + "path_resolved": "/ovirt-engine/api/vms/a873addb-53bd-4f61-841f-bd4052569040", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 9.11, "detail": "" }, { @@ -48091,12 +48165,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/9685fb29-3ac2-4f4e-b5a8-73159537ece1", + "path_resolved": "/ovirt-engine/api/vms/f4a6dc49-7c5e-401a-8b01-1c87e02286e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 8.15, "detail": "" }, { @@ -48104,12 +48178,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/vms/e3139e53-ee7b-40e8-8845-580fe3cb50b3/start", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 0.92, + "duration_ms": 7.28, "detail": "" }, { @@ -48117,12 +48191,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/vms/63106879-14a0-42f8-acc3-39dcdbef937f/stop", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 0.87, + "duration_ms": 8.76, "detail": "" }, { @@ -48130,12 +48204,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/vms/bf41bd64-23d8-445d-ba66-6ab5f0bd39f6/shutdown", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 0.85, + "duration_ms": 6.82, "detail": "" }, { @@ -48143,12 +48217,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/vms/7f3957b4-cb9b-41f8-b52d-f11de1a94dc2/reboot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 0.91, + "duration_ms": 7.18, "detail": "" }, { @@ -48156,12 +48230,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/vms/e7a39556-b12d-4321-bedb-43d377e5b14e/suspend", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 0.93, + "duration_ms": 7.17, "detail": "" }, { @@ -48169,12 +48243,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/vms/eb63471d-2ccd-470e-a8b8-95699c25223d/migrate", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 0.9, + "duration_ms": 8.07, "detail": "" }, { @@ -48182,12 +48256,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/vms/80572433-f0dd-46db-8d44-6f6ca72fcdd1/cancelmigration", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.04, + "duration_ms": 8.11, "detail": "" }, { @@ -48195,12 +48269,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/vms/52a59cf7-8116-4021-9f26-b23a0e661892/clone", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.03, + "duration_ms": 13.59, "detail": "" }, { @@ -48208,12 +48282,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/vms/3d764d9b-6dad-464a-a2a5-0b0f5c15b0b6/export", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.04, + "duration_ms": 5.59, "detail": "" }, { @@ -48221,12 +48295,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/vms/712173c7-351e-43a8-8957-98f8d50e9363/detach", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.01, + "duration_ms": 5.19, "detail": "" }, { @@ -48234,12 +48308,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/vms/9db4bcbb-2c68-4e86-b0c8-81a29eec748d/screenthumbnail", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.15, + "duration_ms": 5.02, "detail": "" }, { @@ -48247,12 +48321,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/vms/7c338d58-c128-48d3-9f8c-182754aeee66/ticket", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.07, + "duration_ms": 5.52, "detail": "" }, { @@ -48260,12 +48334,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/vms/c90b2c23-9106-4525-8b16-0bee3a14743e/logon", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.06, + "duration_ms": 6.28, "detail": "" }, { @@ -48273,12 +48347,12 @@ "operation_id": "vms.maintenance", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/vms/577f5ff8-afcc-443e-8bf9-45a3dff15b78/maintenance", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.48, + "duration_ms": 6.32, "detail": "" }, { @@ -48286,12 +48360,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/vms/05358048-9b42-443f-8baa-ae7b7f2892b7/preview_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.1, + "duration_ms": 6.03, "detail": "" }, { @@ -48299,12 +48373,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/vms/e650a7c2-8c1e-4651-97f5-ed8d9fcf9d7d/commit_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.07, + "duration_ms": 5.44, "detail": "" }, { @@ -48312,12 +48386,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/vms/98cce325-6b25-42b9-8141-ef8446e3992d/undo_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.8, + "duration_ms": 6.07, "detail": "" }, { @@ -48325,12 +48399,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/vms/7c456257-2c82-4a2b-9b93-dc6c97e22c64/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.68, + "duration_ms": 6.88, "detail": "" }, { @@ -48338,12 +48412,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/vms/aeed3661-8c38-4122-9bd0-da1d252115f2/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.4, + "duration_ms": 5.93, "detail": "" }, { @@ -48356,7 +48430,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 3.79, "detail": "" }, { @@ -48367,9 +48441,9 @@ "path_resolved": "/ovirt-engine/api/vnicprofiles", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.64, + "duration_ms": 5.54, "detail": "" }, { @@ -48377,12 +48451,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/dd3ccd10-e692-4d53-840b-82290a695c48", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 3.22, "detail": "" }, { @@ -48390,12 +48464,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/72f79c30-1c3d-476d-9c38-c75059024d20", + "path_resolved": "/ovirt-engine/api/vnicprofiles/cf783517-6989-44ff-abbf-b5d43526c974", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 2.68, "detail": "" }, { @@ -48403,12 +48477,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/401404ac-31d9-486a-8aec-7c32e364dc66", + "path_resolved": "/ovirt-engine/api/vnicprofiles/bb777c0b-0992-49aa-8607-5941339906e4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 3.14, "detail": "" }, { @@ -48416,12 +48490,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/985ac0a1-7ddf-41b7-90f3-6c2a63a00eb8/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.47, + "duration_ms": 3.15, "detail": "" }, { @@ -48429,12 +48503,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/5b99010f-79a7-473f-b87c-cf128dcbaa0e/diskattachments", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 3.25, + "duration_ms": 5.8, "detail": "" }, { @@ -48442,12 +48516,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/1dba8501-1394-447b-b958-f115688383a0/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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, + "duration_ms": 2.86, "detail": "" }, { @@ -48455,12 +48529,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/8654e76b-2e0b-4c57-988c-1ff37776750a/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.54, + "duration_ms": 3.95, "detail": "" }, { @@ -48468,12 +48542,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/5f3ebe5a-8474-4afe-999d-41d46e55ac78/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 2.73, + "duration_ms": 3.62, "detail": "" }, { @@ -48481,12 +48555,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/3ff95ed5-24c1-4345-b7f2-7f542a76128d/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.39, + "duration_ms": 4.28, "detail": "" }, { @@ -48494,12 +48568,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/58960f20-a45a-4714-bb84-56cfc7ec01de/nics", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 3.06, + "duration_ms": 6.45, "detail": "" }, { @@ -48507,20 +48581,7 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/5e8fb857-1cd7-4b19-a181-144d60f9f18e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.13, - "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/ebde47d3-81eb-4f3b-aa52-c79d454578f8/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", "http_status": 404, @@ -48530,15 +48591,28 @@ }, { "series": "3.5", - "operation_id": "nics.remove", - "method": "DELETE", + "operation_id": "nics.update", + "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/636853d8-44b9-44d9-ae58-50aab9207b75/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 2.69, + "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": "" }, { @@ -48546,12 +48620,12 @@ "operation_id": "nics.activate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate", - "path_resolved": "/ovirt-engine/api/vms/41b4ee97-e57e-4e80-8dac-f1108bbe9dd1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.92, + "duration_ms": 6.02, "detail": "" }, { @@ -48559,12 +48633,12 @@ "operation_id": "nics.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/vms/7ebccb0e-2f26-4b29-87fa-55d0caf03789/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.83, + "duration_ms": 5.08, "detail": "" }, { @@ -48572,12 +48646,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/022e4cdd-afe9-4cbb-adcb-a5104ca952b0/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.7, + "duration_ms": 5.7, "detail": "" }, { @@ -48585,12 +48659,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/3d6418a8-081e-40f3-91ca-69686c8853db/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.79, + "duration_ms": 12.49, "detail": "" }, { @@ -48598,12 +48672,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/8f103418-837c-4641-ad5f-d2c5c84ecb41/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.36, + "duration_ms": 4.28, "detail": "" }, { @@ -48611,12 +48685,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/622a132a-0758-417d-8810-46a193650292/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 2.09, + "duration_ms": 7.28, "detail": "" }, { @@ -48624,12 +48698,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/003ba6cf-950a-4c7a-8f5e-a9319f053763/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 2.82, + "duration_ms": 6.43, "detail": "" }, { @@ -48637,12 +48711,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/a10669c3-7105-4cb2-b5e5-9693e20762b9/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.29, + "duration_ms": 7.66, "detail": "" }, { @@ -48650,12 +48724,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/99c7e9a3-49b1-4f91-9ca5-46f4332d0fa9/snapshots", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.53, + "duration_ms": 13.81, "detail": "" }, { @@ -48663,12 +48737,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/ae92ab9a-f2a6-4afa-a78b-4dbebaa57873/snapshots/c11ba137-d355-443c-a3c8-6a0ef36a724d", + "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": 1.11, + "duration_ms": 4.93, "detail": "" }, { @@ -48676,12 +48750,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/3643d2a5-3ae8-4788-988d-ee407f72b5ef/snapshots/17439845-86e0-488d-a4d8-4b797a649602", + "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": 1.15, + "duration_ms": 4.32, "detail": "" }, { @@ -48689,12 +48763,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/21128489-240a-4b9e-9797-f65f56c02d19/snapshots/5f10b06d-0744-42db-9fc3-a6f395d3779b", + "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": 1.16, + "duration_ms": 12.18, "detail": "" }, { @@ -48702,12 +48776,12 @@ "operation_id": "snapshots.restore", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore", - "path_resolved": "/ovirt-engine/api/vms/a03de6e0-2ae6-48f6-913b-8362efe8ddf2/snapshots/de81e29e-9c1d-45fe-bef1-97a6f60c325a/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": 1.64, + "duration_ms": 10.89, "detail": "" }, { @@ -48715,12 +48789,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/a9da94a0-8782-45e3-94d2-ff7280ec7f4f/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.22, + "duration_ms": 7.76, "detail": "" }, { @@ -48728,12 +48802,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/10ef10d1-62c1-4e28-af60-4b146a5515f2/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": 1.74, + "duration_ms": 12.08, "detail": "" }, { @@ -48741,12 +48815,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/b943e1f0-7b51-4a14-ac7c-e5c4490c7444/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 0.94, + "duration_ms": 5.54, "detail": "" }, { @@ -48754,12 +48828,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/7f573ed7-4771-4d65-9b4e-ec15e99b41b8/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 0.94, + "duration_ms": 6.52, "detail": "" }, { @@ -48767,12 +48841,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/b8604024-32f4-4c1f-a0a2-5d9fa2eddaec/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 0.96, + "duration_ms": 9.1, "detail": "" }, { @@ -48780,12 +48854,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/02f2ff7c-0bd3-4b7e-a3a5-2e3574f03efd/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": 1.29, + "duration_ms": 6.29, "detail": "" }, { @@ -48793,12 +48867,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/8eda954a-98d5-4f1b-88d9-e8a708ef42d1/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": 1.45, + "duration_ms": 4.42, "detail": "" }, { @@ -48806,12 +48880,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/cb2d7507-c762-406f-9a6f-f18cb9f2f3ac/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.17, + "duration_ms": 3.69, "detail": "" }, { @@ -48819,12 +48893,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/7e7af152-8b6f-4d05-9ad5-11a2a3fa3760/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.12, + "duration_ms": 3.86, "detail": "" }, { @@ -48832,12 +48906,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/d0659a74-8424-4db0-860a-0d5224cdde47/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.1, + "duration_ms": 3.73, "detail": "" }, { @@ -48845,12 +48919,12 @@ "operation_id": "graphicsconsoles.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/11ee85c9-0d22-4544-be65-a7a820369420/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.19, + "duration_ms": 4.04, "detail": "" }, { @@ -48858,12 +48932,12 @@ "operation_id": "graphicsconsoles.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/d74f7104-275f-4e57-9ecc-618781f75de3/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": 1.41, + "duration_ms": 6.14, "detail": "" }, { @@ -48871,12 +48945,12 @@ "operation_id": "graphicsconsoles.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/ef038e45-39b9-4ce3-89a3-bc82545cab38/graphicsconsoles/5cbdd824-2292-4dfb-91eb-01f04035aec4", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/7d593e0b-6981-409e-a7da-15614938d1a0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 4.24, "detail": "" }, { @@ -48884,12 +48958,12 @@ "operation_id": "graphicsconsoles.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/a3255352-5fab-4705-8f27-80acba698829/graphicsconsoles/5cbdd824-2292-4dfb-91eb-01f04035aec4", + "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": 1.23, + "duration_ms": 4.76, "detail": "" }, { @@ -48897,12 +48971,12 @@ "operation_id": "graphicsconsoles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/2afc92e2-8822-45d7-bd75-a4ca51eb3804/graphicsconsoles/5cbdd824-2292-4dfb-91eb-01f04035aec4", + "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": 1.05, + "duration_ms": 4.83, "detail": "" }, { @@ -48910,12 +48984,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/8f1f6b8e-9137-4101-854c-6d3ad470fa60/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.05, + "duration_ms": 5.05, "detail": "" }, { @@ -48923,12 +48997,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/b5192771-ebcc-48c6-acb0-7e6b005487b8/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.33, + "duration_ms": 5.12, "detail": "" }, { @@ -48936,12 +49010,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/42058f62-b622-4de3-9376-7e9f620ce6b6/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 3.93, "detail": "" }, { @@ -48949,12 +49023,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/6ea9e13c-50d4-46c2-a0f1-1d41328a9533/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.25, + "duration_ms": 5.47, "detail": "" }, { @@ -48962,12 +49036,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/0a048b31-4244-41bb-8b47-f4725ce4a2c4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 0.99, + "duration_ms": 6.7, "detail": "" }, { @@ -48975,12 +49049,12 @@ "operation_id": "nics.update", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update", - "path_resolved": "/ovirt-engine/api/hosts/55b7b33b-fe89-4210-868d-81c3663ed54a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.72, + "duration_ms": 16.17, "detail": "" }, { @@ -48988,12 +49062,12 @@ "operation_id": "nics.attach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach", - "path_resolved": "/ovirt-engine/api/hosts/7a53ef18-8f83-42d9-ac0a-22047634303b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.57, + "duration_ms": 10.02, "detail": "" }, { @@ -49001,12 +49075,12 @@ "operation_id": "nics.detach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach", - "path_resolved": "/ovirt-engine/api/hosts/a5fe1c1d-4b6b-4ae5-bbee-112bd2b1a92c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.69, + "duration_ms": 9.16, "detail": "" }, { @@ -49014,12 +49088,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/c62ffa11-c9c5-4a69-8462-4af0efc2fc61/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, + "duration_ms": 7.0, "detail": "" }, { @@ -49027,12 +49101,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/bb1f40dc-11fe-4cae-8314-3fceb942c9c8/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.4, + "duration_ms": 7.86, "detail": "" }, { @@ -49040,12 +49114,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/5adf9f0f-0aaa-424b-9ca2-f650d5a4c84e/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.06, + "duration_ms": 6.57, "detail": "" }, { @@ -49053,12 +49127,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/0d098eaf-e9a6-4be1-bcb7-a4c563012be7/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.17, + "duration_ms": 12.81, "detail": "" }, { @@ -49066,12 +49140,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/47dbcdc5-74bf-47f0-a8bd-9fb8988f46ea/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.08, + "duration_ms": 18.86, "detail": "" }, { @@ -49079,12 +49153,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/9156818a-912f-4040-91d1-ea45455b1091/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.12, + "duration_ms": 12.9, "detail": "" }, { @@ -49092,12 +49166,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/73de0a5d-0f23-4b2f-88fb-f655d1ab36d9/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.24, + "duration_ms": 16.43, "detail": "" }, { @@ -49105,12 +49179,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/4f8e5d28-63c8-45c7-ad4a-86366d375196/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.06, + "duration_ms": 10.13, "detail": "" }, { @@ -49118,12 +49192,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ba5986c1-ce6b-4f4a-8925-1098f11b8dbe/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.1, + "duration_ms": 27.76, "detail": "" }, { @@ -49131,12 +49205,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ab65701e-3cec-4543-90c2-6a305cb4efd4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 0.97, + "duration_ms": 25.4, "detail": "" }, { @@ -49144,12 +49218,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/2594fdb3-232d-4e95-9e56-6709aa72eb22/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.02, + "duration_ms": 16.66, "detail": "" }, { @@ -49157,12 +49231,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/b5699988-c2c9-4593-a348-c478be27f746/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.32, + "duration_ms": 19.9, "detail": "" }, { @@ -49170,12 +49244,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/cf0057d2-bbeb-4e04-9697-2d0545f65c0b/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.01, + "duration_ms": 5.03, "detail": "" }, { @@ -49183,12 +49257,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/788fce6a-7066-4476-a463-8a001235f25d/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.29, + "duration_ms": 9.06, "detail": "" }, { @@ -49196,12 +49270,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/bc404b8d-3076-412b-8829-68853a5cf658/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.0, + "duration_ms": 7.78, "detail": "" }, { @@ -49214,7 +49288,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 7.0, "detail": "" }, { @@ -49225,9 +49299,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 19.03, "detail": "" }, { @@ -49235,12 +49309,12 @@ "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/6fa989ef-9265-4898-94cd-480e7433fde5", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/4362e5f3-0a94-49ce-9d3d-c6c4fdcb2dec", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 18.51, "detail": "" }, { @@ -49248,12 +49322,12 @@ "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/cbb97f55-79a5-4cc4-89d9-24a97f51c17a", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/65b8ca17-7636-4c7c-8577-53b06cc5b6d7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 43.31, "detail": "" }, { @@ -49261,12 +49335,12 @@ "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/7c013195-27a4-4221-8450-837041145420", + "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": 0.98, + "duration_ms": 43.08, "detail": "" }, { @@ -49277,9 +49351,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 17.73, "detail": "" }, { @@ -49290,9 +49364,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 1.46, + "duration_ms": 8.72, "detail": "" }, { @@ -49300,12 +49374,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 0.99, + "duration_ms": 13.21, "detail": "" }, { @@ -49313,12 +49387,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "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": 0.98, + "duration_ms": 12.79, "detail": "" }, { @@ -49326,12 +49400,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "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": 0.92, + "duration_ms": 5.4, "detail": "" }, { @@ -49344,7 +49418,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 13.16, "detail": "" }, { @@ -49357,7 +49431,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.5, + "duration_ms": 19.48, "detail": "" }, { @@ -49370,7 +49444,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.95, + "duration_ms": 6.6, "detail": "" }, { @@ -49383,7 +49457,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 17.14, "detail": "" }, { @@ -49391,12 +49465,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 0.97, + "duration_ms": 15.91, "detail": "" }, { @@ -49409,7 +49483,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 22.75, "detail": "" }, { @@ -49422,7 +49496,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 0.87, + "duration_ms": 20.4, "detail": "" }, { @@ -49433,9 +49507,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 39.74, "detail": "" }, { @@ -49443,12 +49517,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 0.9, + "duration_ms": 14.31, "detail": "" }, { @@ -49456,12 +49530,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.02, + "duration_ms": 16.14, "detail": "" }, { @@ -49474,7 +49548,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.72, + "duration_ms": 13.83, "detail": "" }, { @@ -49487,7 +49561,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.62, + "duration_ms": 13.85, "detail": "" }, { @@ -49498,9 +49572,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.57, + "duration_ms": 9.82, "detail": "" }, { @@ -49511,9 +49585,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.02, + "duration_ms": 13.58, "detail": "" }, { @@ -49524,9 +49598,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 12.66, "detail": "" }, { @@ -49534,12 +49608,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 1.0, + "duration_ms": 12.21, "detail": "" }, { @@ -49547,12 +49621,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/d2141438-c1ac-41ac-b0aa-760814057a13", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 0.95, + "duration_ms": 12.58, "detail": "" }, { @@ -49563,9 +49637,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 0.93, + "duration_ms": 10.22, "detail": "" }, { @@ -49576,9 +49650,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 0.98, + "duration_ms": 15.18, "detail": "" }, { @@ -49586,12 +49660,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 0.92, + "duration_ms": 12.96, "detail": "" }, { @@ -49599,12 +49673,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "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": 0.97, + "duration_ms": 6.24, "detail": "" }, { @@ -49612,12 +49686,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/a9626a08-1d11-4fa7-bd53-c2766b7d61a9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 0.93, + "duration_ms": 7.53, "detail": "" }, { @@ -49630,7 +49704,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 9.29, "detail": "" }, { @@ -49643,7 +49717,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.44, + "duration_ms": 12.98, "detail": "" }, { @@ -49651,12 +49725,12 @@ "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/04d28c03-0b67-4154-92ad-6c971442a6e5", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 5.78, "detail": "" }, { @@ -49664,12 +49738,12 @@ "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/04d28c03-0b67-4154-92ad-6c971442a6e5", + "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": 1.19, + "duration_ms": 10.11, "detail": "" }, { @@ -49677,12 +49751,12 @@ "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/04d28c03-0b67-4154-92ad-6c971442a6e5", + "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": 1.06, + "duration_ms": 8.8, "detail": "" }, { @@ -49695,7 +49769,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 9.87, "detail": "" }, { @@ -49708,7 +49782,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.17, + "duration_ms": 19.31, "detail": "" }, { @@ -49721,7 +49795,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 7.6, "detail": "" }, { @@ -49734,7 +49808,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 12.15, "detail": "" }, { @@ -49742,12 +49816,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 0.93, + "duration_ms": 6.22, "detail": "" }, { @@ -49755,12 +49829,12 @@ "operation_id": "vnicprofiles.list", "method": "GET", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/1802cab4-521e-4ac9-a43a-41da021b9523/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.03, + "duration_ms": 8.84, "detail": "" }, { @@ -49768,12 +49842,12 @@ "operation_id": "vnicprofiles.add", "method": "POST", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/1802cab4-521e-4ac9-a43a-41da021b9523/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.55, + "duration_ms": 8.62, "detail": "" }, { @@ -49781,12 +49855,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/1802cab4-521e-4ac9-a43a-41da021b9523/vnicprofiles/444865cb-c770-4ffb-8787-0c7f8ca8c16e", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 10.03, "detail": "" }, { @@ -49794,12 +49868,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/1802cab4-521e-4ac9-a43a-41da021b9523/vnicprofiles/ed1a5eba-dbbf-4178-9226-7df178bf89ab", + "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": 1.08, + "duration_ms": 11.24, "detail": "" }, { @@ -49807,12 +49881,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/1802cab4-521e-4ac9-a43a-41da021b9523/vnicprofiles/eeffc0f5-757c-4139-8f23-b642ce461bfc", + "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": 1.05, + "duration_ms": 6.5, "detail": "" }, { @@ -49825,7 +49899,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 5.52, "detail": "" }, { @@ -49838,7 +49912,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.51, + "duration_ms": 14.47, "detail": "" }, { @@ -49851,7 +49925,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 9.52, "detail": "" }, { @@ -49864,7 +49938,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 22.65, "detail": "" }, { @@ -49872,12 +49946,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.16, + "duration_ms": 6.97, "detail": "" }, { @@ -49890,7 +49964,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 7.67, "detail": "" }, { @@ -49903,7 +49977,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.58, + "duration_ms": 9.76, "detail": "" }, { @@ -49916,7 +49990,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 6.96, "detail": "" }, { @@ -49929,7 +50003,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 10.14, "detail": "" }, { @@ -49937,12 +50011,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.03, + "duration_ms": 9.15, "detail": "" }, { @@ -49955,7 +50029,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 6.57, "detail": "" }, { @@ -49968,7 +50042,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 9.02, "detail": "" }, { @@ -49979,9 +50053,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 6.8, "detail": "" }, { @@ -49989,12 +50063,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.09, + "duration_ms": 5.6, "detail": "" }, { @@ -50002,12 +50076,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 0.98, + "duration_ms": 6.29, "detail": "" }, { @@ -50020,7 +50094,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 6.39, "detail": "" }, { @@ -50033,7 +50107,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.62, + "duration_ms": 7.87, "detail": "" }, { @@ -50046,7 +50120,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 5.94, "detail": "" }, { @@ -50059,7 +50133,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 10.46, "detail": "" }, { @@ -50067,12 +50141,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 1.05, + "duration_ms": 5.52, "detail": "" }, { @@ -50080,12 +50154,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/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": 1.09, + "duration_ms": 5.82, "detail": "" }, { @@ -50093,12 +50167,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/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": 0.94, + "duration_ms": 5.0, "detail": "" }, { @@ -50106,12 +50180,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/steps/4330727f-818d-4d5c-8b83-a73ff48dba24", + "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": 0.95, + "duration_ms": 4.98, "detail": "" }, { @@ -50119,12 +50193,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/steps/b4a5d1e8-6da1-4374-87b5-eaa8c49124e2", + "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": 1.06, + "duration_ms": 6.69, "detail": "" }, { @@ -50132,12 +50206,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/steps/ffd63979-c616-45d2-b3e7-62b63ab0a7d5", + "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": 0.96, + "duration_ms": 5.3, "detail": "" }, { @@ -50150,7 +50224,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.91, + "duration_ms": 13.64, "detail": "" }, { @@ -50163,7 +50237,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 5.91, "detail": "" }, { @@ -50176,7 +50250,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 9.28, "detail": "" }, { @@ -50187,9 +50261,9 @@ "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 6.02, "detail": "" }, { @@ -50197,12 +50271,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v3/bookmarks/219a5f54-c934-41db-a158-af79397e3b00", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 5.11, "detail": "" }, { @@ -50210,12 +50284,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v3/bookmarks/615a88e0-d943-4015-a1f3-9f693928c6f4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 6.1, "detail": "" }, { @@ -50228,7 +50302,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 4.35, "detail": "" }, { @@ -50241,7 +50315,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.66, + "duration_ms": 5.83, "detail": "" }, { @@ -50252,9 +50326,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 4.24, "detail": "" }, { @@ -50262,12 +50336,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/clusters/1a1219bd-cc4d-457e-a03d-b0c967aafd68", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 6.66, "detail": "" }, { @@ -50275,12 +50349,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/clusters/d9ac5f26-f716-431d-a5ea-bc50f060780a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 6.51, "detail": "" }, { @@ -50293,7 +50367,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.58, + "duration_ms": 9.71, "detail": "" }, { @@ -50306,7 +50380,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.62, + "duration_ms": 11.07, "detail": "" }, { @@ -50319,7 +50393,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.57, + "duration_ms": 9.0, "detail": "" }, { @@ -50332,7 +50406,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 5.4, "detail": "" }, { @@ -50345,7 +50419,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.47, + "duration_ms": 7.26, "detail": "" }, { @@ -50356,9 +50430,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 5.76, "detail": "" }, { @@ -50366,12 +50440,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/47aefa1a-dc15-41f4-99dd-dbd8c8ed2abe", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 6.35, "detail": "" }, { @@ -50379,12 +50453,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/8ada3f5f-6694-418b-873f-69a1fc4066c9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 7.28, "detail": "" }, { @@ -50397,7 +50471,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 9.49, "detail": "" }, { @@ -50410,7 +50484,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 9.44, "detail": "" }, { @@ -50423,7 +50497,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.11, + "duration_ms": 17.04, "detail": "" }, { @@ -50434,9 +50508,9 @@ "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 9.85, "detail": "" }, { @@ -50444,12 +50518,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/disks/{id}", - "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v3/disks/acac9d1b-8150-4dde-b9d0-cb612ed09146", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.01, + "duration_ms": 8.59, "detail": "" }, { @@ -50457,12 +50531,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/disks/{id}", - "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v3/disks/a191272d-375e-4e55-9dd8-2f58acf9e2c1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 6.36, "detail": "" }, { @@ -50475,7 +50549,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.64, + "duration_ms": 7.9, "detail": "" }, { @@ -50488,7 +50562,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.67, + "duration_ms": 9.16, "detail": "" }, { @@ -50501,7 +50575,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.73, + "duration_ms": 13.05, "detail": "" }, { @@ -50514,7 +50588,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.67, + "duration_ms": 9.85, "detail": "" }, { @@ -50527,7 +50601,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 5.09, "detail": "" }, { @@ -50540,7 +50614,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.0, + "duration_ms": 6.63, "detail": "" }, { @@ -50553,7 +50627,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 7.42, "detail": "" }, { @@ -50566,7 +50640,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.01, + "duration_ms": 4.79, "detail": "" }, { @@ -50574,12 +50648,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/domains/{id}", - "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/v3/domains/4ce43fe0-57d3-42d4-aab8-989e38228308", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 3.3, "detail": "" }, { @@ -50592,7 +50666,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 2.9, "detail": "" }, { @@ -50605,7 +50679,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.94, + "duration_ms": 3.05, "detail": "" }, { @@ -50613,12 +50687,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1110", + "path_resolved": "/ovirt-engine/api/v3/events/53", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 3.63, "detail": "" }, { @@ -50626,12 +50700,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1110", + "path_resolved": "/ovirt-engine/api/v3/events/53", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.98, + "duration_ms": 2.52, "detail": "" }, { @@ -50639,12 +50713,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1110", + "path_resolved": "/ovirt-engine/api/v3/events/a4687397-c951-4d30-9d91-8a178d3f6a85", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 2.26, "detail": "" }, { @@ -50657,7 +50731,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 2.75, "detail": "" }, { @@ -50670,7 +50744,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 3.32, "detail": "" }, { @@ -50681,9 +50755,9 @@ "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 2.98, "detail": "" }, { @@ -50691,12 +50765,12 @@ "operation_id": "externalhostproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/e0e5d670-cf09-4a95-84f4-40bcf5fcf4de", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 4.67, "detail": "" }, { @@ -50704,12 +50778,12 @@ "operation_id": "externalhostproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/0bceb255-9693-4a8b-bdc5-43b6ad580ea5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 10.47, "detail": "" }, { @@ -50722,7 +50796,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 7.46, "detail": "" }, { @@ -50735,7 +50809,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.57, + "duration_ms": 9.51, "detail": "" }, { @@ -50746,9 +50820,9 @@ "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 5.55, "detail": "" }, { @@ -50756,12 +50830,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/groups/{id}", - "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v3/groups/4839c685-475e-40d9-a03d-5dc9117a071b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 6.37, "detail": "" }, { @@ -50769,12 +50843,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/groups/{id}", - "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v3/groups/c49b9049-927c-47a7-bf9d-910fd7393e07", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 4.9, "detail": "" }, { @@ -50787,7 +50861,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 5.12, "detail": "" }, { @@ -50800,7 +50874,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 10.85, "detail": "" }, { @@ -50808,12 +50882,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/41356c31-7ba4-4dc5-b030-84a6802afe82", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 7.61, "detail": "" }, { @@ -50821,12 +50895,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/c2f85f60-fa16-4a98-a4d3-b642fd6b5376", + "path_resolved": "/ovirt-engine/api/v3/hosts/c034644f-5722-4eab-804a-691162372f06", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 11.29, "detail": "" }, { @@ -50834,12 +50908,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/ef3e260e-49b1-4e28-9160-efe15051dfb2", + "path_resolved": "/ovirt-engine/api/v3/hosts/dd80a45d-457c-40df-a475-2881049afec1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 9.96, "detail": "" }, { @@ -50847,12 +50921,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/v3/hosts/3dc021a3-7802-4299-9763-3f7883e37512/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": 1.81, + "duration_ms": 15.14, "detail": "" }, { @@ -50860,12 +50934,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/v3/hosts/5e0e5b74-8297-47f6-92ca-8790ebf7cb5d/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": 1.67, + "duration_ms": 9.79, "detail": "" }, { @@ -50873,12 +50947,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/v3/hosts/a285ce22-2834-499a-873f-6386f5dabae4/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": 1.6, + "duration_ms": 5.3, "detail": "" }, { @@ -50886,12 +50960,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/v3/hosts/90f3874b-0764-4326-94da-a4aa4b24e3ba/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": 1.64, + "duration_ms": 4.72, "detail": "" }, { @@ -50899,12 +50973,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/v3/hosts/9aa008d7-e837-4a71-916b-cc3224e8b2ae/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": 1.65, + "duration_ms": 7.45, "detail": "" }, { @@ -50912,12 +50986,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/v3/hosts/bd7ceecd-69a7-49ec-b848-59fd5e3095e9/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": 1.63, + "duration_ms": 6.28, "detail": "" }, { @@ -50925,12 +50999,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/v3/hosts/6a287802-b766-46d8-8eb6-f23ef4e8d401/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": 1.61, + "duration_ms": 4.61, "detail": "" }, { @@ -50938,12 +51012,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/v3/hosts/a3588706-30da-455e-80e3-45f74680a2ca/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": 1.66, + "duration_ms": 4.89, "detail": "" }, { @@ -50951,12 +51025,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/v3/hosts/c7bcb309-18bd-4df2-a841-43fa9e2f14c9/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": 2.05, + "duration_ms": 5.97, "detail": "" }, { @@ -50964,12 +51038,12 @@ "operation_id": "hosts.unregisteredstoragedomainsdiscover", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/v3/hosts/8cba4dd3-cc87-43f5-8c80-5890348b2d06/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": 1.66, + "duration_ms": 8.97, "detail": "" }, { @@ -50977,12 +51051,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/v3/hosts/ab365dd9-40e8-4216-8e99-289c7deff019/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.18, + "duration_ms": 14.08, "detail": "" }, { @@ -50995,7 +51069,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 6.13, "detail": "" }, { @@ -51008,7 +51082,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.52, + "duration_ms": 8.64, "detail": "" }, { @@ -51019,9 +51093,9 @@ "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 11.85, "detail": "" }, { @@ -51029,12 +51103,12 @@ "operation_id": "instancetypes.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/v3/instancetypes/deadf425-0c35-46bd-9fc4-fdda5f705810", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 11.52, "detail": "" }, { @@ -51042,12 +51116,12 @@ "operation_id": "instancetypes.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/v3/instancetypes/e0329360-bca5-4b1a-a278-40c5fd91434f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 13.96, "detail": "" }, { @@ -51060,7 +51134,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 23.46, "detail": "" }, { @@ -51073,7 +51147,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.0, + "duration_ms": 6.92, "detail": "" }, { @@ -51081,12 +51155,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0", + "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 4.69, "detail": "" }, { @@ -51094,12 +51168,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0", + "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 2.11, "detail": "" }, { @@ -51107,12 +51181,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0", + "path_resolved": "/ovirt-engine/api/v3/jobs/0651f0f4-11ff-4344-ae06-51cf9b77d091", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.91, + "duration_ms": 2.44, "detail": "" }, { @@ -51125,7 +51199,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 20.63, "detail": "" }, { @@ -51138,7 +51212,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.28, + "duration_ms": 21.54, "detail": "" }, { @@ -51146,12 +51220,12 @@ "operation_id": "katelloerrata.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v3/katelloerrata/f0f3553b-1097-4873-8608-218b9dfdb9c4", + "path_resolved": "/ovirt-engine/api/v3/katelloerrata/09df8368-fdc0-466f-92e3-ce7027c41421", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 9.85, "detail": "" }, { @@ -51159,12 +51233,12 @@ "operation_id": "katelloerrata.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v3/katelloerrata/f0f3553b-1097-4873-8608-218b9dfdb9c4", + "path_resolved": "/ovirt-engine/api/v3/katelloerrata/6346cb8e-ab7a-47c9-b622-70aaabde068c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 12.54, "detail": "" }, { @@ -51172,12 +51246,12 @@ "operation_id": "katelloerrata.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v3/katelloerrata/f0f3553b-1097-4873-8608-218b9dfdb9c4", + "path_resolved": "/ovirt-engine/api/v3/katelloerrata/fca2873a-5b36-45d6-8b8a-9b58484621d4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 10.63, "detail": "" }, { @@ -51190,7 +51264,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 8.01, "detail": "" }, { @@ -51203,7 +51277,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.46, + "duration_ms": 8.16, "detail": "" }, { @@ -51211,12 +51285,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 6.73, "detail": "" }, { @@ -51224,12 +51298,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/v3/networks/431462ef-db97-4ea8-9402-e38f02a07f17", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 6.95, "detail": "" }, { @@ -51237,12 +51311,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/v3/networks/182d3b7a-892b-4706-9f1d-52e98f7438ec", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 5.88, "detail": "" }, { @@ -51255,7 +51329,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 6.0, "detail": "" }, { @@ -51268,7 +51342,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.23, + "duration_ms": 12.02, "detail": "" }, { @@ -51279,9 +51353,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 4.78, "detail": "" }, { @@ -51289,12 +51363,12 @@ "operation_id": "openstackimageproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/07e8b955-9ccb-4730-9da0-68491588f899", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 9.11, "detail": "" }, { @@ -51302,12 +51376,12 @@ "operation_id": "openstackimageproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/1fdcadc9-b54a-4628-b157-2d26de28df3c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 6.31, "detail": "" }, { @@ -51320,7 +51394,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 8.93, "detail": "" }, { @@ -51333,7 +51407,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.3, + "duration_ms": 7.64, "detail": "" }, { @@ -51344,9 +51418,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 7.67, "detail": "" }, { @@ -51354,12 +51428,12 @@ "operation_id": "openstacknetworkproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/9857f124-9a99-4897-b526-b4cea5cbf9b1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 6.58, "detail": "" }, { @@ -51367,12 +51441,12 @@ "operation_id": "openstacknetworkproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/c03765d4-366c-4b21-b5df-10545414c4f3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 8.81, "detail": "" }, { @@ -51385,7 +51459,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 11.73, "detail": "" }, { @@ -51398,7 +51472,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.24, + "duration_ms": 7.99, "detail": "" }, { @@ -51409,9 +51483,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 8.47, "detail": "" }, { @@ -51419,12 +51493,12 @@ "operation_id": "openstackvolumeproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/0f79a3b5-9c0f-4bd0-8bae-976488b42c8e", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 11.79, "detail": "" }, { @@ -51432,12 +51506,12 @@ "operation_id": "openstackvolumeproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/ae0066c9-f085-4eaf-9769-351efde11770", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 8.31, "detail": "" }, { @@ -51450,7 +51524,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 3.53, "detail": "" }, { @@ -51463,7 +51537,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.2, + "duration_ms": 4.46, "detail": "" }, { @@ -51471,12 +51545,12 @@ "operation_id": "operatingsystems.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v3/operatingsystems/257e8613-f98b-423c-a3da-8adb5b8c42ad", + "path_resolved": "/ovirt-engine/api/v3/operatingsystems/03e72aec-e20f-4b64-bf7d-97d8b1fb6b17", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 3.8, "detail": "" }, { @@ -51484,12 +51558,12 @@ "operation_id": "operatingsystems.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v3/operatingsystems/257e8613-f98b-423c-a3da-8adb5b8c42ad", + "path_resolved": "/ovirt-engine/api/v3/operatingsystems/c0bc6a05-47ec-4e58-98a0-75b8b7073a15", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 6.9, "detail": "" }, { @@ -51497,12 +51571,12 @@ "operation_id": "operatingsystems.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v3/operatingsystems/257e8613-f98b-423c-a3da-8adb5b8c42ad", + "path_resolved": "/ovirt-engine/api/v3/operatingsystems/ee30b40e-4f89-4817-9a2a-0a83485175b5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 4.19, "detail": "" }, { @@ -51515,7 +51589,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 4.96, "detail": "" }, { @@ -51528,7 +51602,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.01, + "duration_ms": 3.44, "detail": "" }, { @@ -51541,7 +51615,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 5.12, "detail": "" }, { @@ -51554,7 +51628,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 5.07, "detail": "" }, { @@ -51562,12 +51636,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/v3/permissions/d160f1e9-21f8-48c8-9410-15ba0958c640", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 3.25, "detail": "" }, { @@ -51580,7 +51654,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 3.98, "detail": "" }, { @@ -51593,7 +51667,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.46, + "duration_ms": 6.41, "detail": "" }, { @@ -51604,9 +51678,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 3.68, "detail": "" }, { @@ -51614,12 +51688,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/roles/{id}", - "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v3/roles/88d5719b-d0f2-46ac-8639-506ba8815410", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 5.89, "detail": "" }, { @@ -51627,12 +51701,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/roles/{id}", - "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v3/roles/128fac93-d3d9-4f0e-a329-0f0f1e037da8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.01, + "duration_ms": 5.74, "detail": "" }, { @@ -51645,7 +51719,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 6.88, "detail": "" }, { @@ -51658,7 +51732,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.3, + "duration_ms": 8.5, "detail": "" }, { @@ -51669,9 +51743,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 5.22, "detail": "" }, { @@ -51679,12 +51753,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/9670f63d-2c93-4403-8285-f690b4583dcf", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 10.94, "detail": "" }, { @@ -51692,12 +51766,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/fa5fee33-dc9e-4e46-ba0a-e210ab8f7a05", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 6.22, "detail": "" }, { @@ -51710,7 +51784,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 14.61, "detail": "" }, { @@ -51723,7 +51797,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.27, + "duration_ms": 25.61, "detail": "" }, { @@ -51734,9 +51808,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 9.62, "detail": "" }, { @@ -51744,12 +51818,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/945a78c1-808a-4c6b-b150-8d055926eaea", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 8.34, "detail": "" }, { @@ -51757,12 +51831,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/9b571f07-0f94-468a-aee3-9aadf0f1c2a3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 6.5, "detail": "" }, { @@ -51775,7 +51849,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 7.24, "detail": "" }, { @@ -51788,7 +51862,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 8.61, "detail": "" }, { @@ -51796,12 +51870,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/b818adb5-ea94-48b1-9d31-2f8642fc0f37", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/a4e71ad9-3be4-4fc5-80b2-a3c81ba6650c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 6.1, "detail": "" }, { @@ -51809,12 +51883,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/b818adb5-ea94-48b1-9d31-2f8642fc0f37", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/5a676df1-b5b6-4b3b-a650-582bcdfea850", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 5.1, "detail": "" }, { @@ -51822,12 +51896,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/b818adb5-ea94-48b1-9d31-2f8642fc0f37", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/3b5ac8ec-da59-46ee-9985-cf38ea1b5eeb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 6.0, "detail": "" }, { @@ -51840,7 +51914,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 6.79, "detail": "" }, { @@ -51853,7 +51927,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.7, + "duration_ms": 6.77, "detail": "" }, { @@ -51864,9 +51938,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.33, "detail": "" }, { @@ -51874,12 +51948,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v3/storagedomains/68942a27-29dd-4fc5-8423-4c7eefccc8b4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 6.85, "detail": "" }, { @@ -51887,12 +51961,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v3/storagedomains/ae71cc62-68db-4fbc-96b8-90e061cf54cd", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 6.45, "detail": "" }, { @@ -51905,7 +51979,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.03, + "duration_ms": 7.2, "detail": "" }, { @@ -51918,7 +51992,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.22, + "duration_ms": 12.84, "detail": "" }, { @@ -51931,7 +52005,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 15.78, "detail": "" }, { @@ -51944,7 +52018,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 8.73, "detail": "" }, { @@ -51955,9 +52029,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 5.29, "detail": "" }, { @@ -51965,12 +52039,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v3/tags/d9b77d15-05a7-4159-8611-dc4c1403a555", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 10.84, "detail": "" }, { @@ -51978,12 +52052,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v3/tags/274ee374-04a8-4d1d-acde-c8a9d9a258e7", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 6.64, "detail": "" }, { @@ -51996,7 +52070,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 5.78, "detail": "" }, { @@ -52009,7 +52083,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.66, + "duration_ms": 8.09, "detail": "" }, { @@ -52020,9 +52094,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 5.28, "detail": "" }, { @@ -52030,12 +52104,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/templates/{id}", - "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v3/templates/1683f824-c614-4254-bfb8-1ddf887bff0f", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 3.8, "detail": "" }, { @@ -52043,12 +52117,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/templates/{id}", - "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v3/templates/e5df30bd-2cda-49db-b842-b2e846cdcdb8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 6.67, "detail": "" }, { @@ -52061,7 +52135,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.73, + "duration_ms": 7.55, "detail": "" }, { @@ -52074,7 +52148,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 5.91, "detail": "" }, { @@ -52087,7 +52161,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.0, + "duration_ms": 7.25, "detail": "" }, { @@ -52100,7 +52174,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 6.24, "detail": "" }, { @@ -52113,7 +52187,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 4.0, "detail": "" }, { @@ -52121,12 +52195,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/users/{id}", - "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/v3/users/f8be3538-eaa6-463e-bdb5-cdf8d69faaca", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 4.84, "detail": "" }, { @@ -52139,7 +52213,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 5.68, "detail": "" }, { @@ -52152,7 +52226,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.69, + "duration_ms": 7.31, "detail": "" }, { @@ -52163,9 +52237,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 5.43, "detail": "" }, { @@ -52173,12 +52247,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v3/vmpools/c5b7e432-841d-4a5b-b0cc-c5a35043b725", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.84, + "duration_ms": 5.47, "detail": "" }, { @@ -52186,12 +52260,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v3/vmpools/604cf23b-3827-4d86-bd96-93bc898cc2c2", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 4.03, "detail": "" }, { @@ -52204,7 +52278,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.91, "detail": "" }, { @@ -52217,7 +52291,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.45, + "duration_ms": 14.15, "detail": "" }, { @@ -52225,12 +52299,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/5f30dea8-af3f-47d2-b62c-1d796d29b532", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 11.01, "detail": "" }, { @@ -52238,12 +52312,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/d7c7b7b2-41bd-45e0-8fea-15884a2369ec", + "path_resolved": "/ovirt-engine/api/v3/vms/7d62c2f0-88cb-41d9-8056-fcea92995cc1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.82, + "duration_ms": 10.74, "detail": "" }, { @@ -52251,12 +52325,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/966397b4-6dc6-4cd4-86ef-8ff3d45fd4db", + "path_resolved": "/ovirt-engine/api/v3/vms/ffe40882-696a-4f41-bdb2-44a58212e2fe", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 9.53, "detail": "" }, { @@ -52264,12 +52338,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/v3/vms/f4a68d57-b510-4c19-a55a-d2d6ab949110/start", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.14, + "duration_ms": 11.93, "detail": "" }, { @@ -52277,12 +52351,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/v3/vms/e53060ad-4c5f-4bab-a11b-5118f9a5c2b2/stop", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 16.34, "detail": "" }, { @@ -52290,12 +52364,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/v3/vms/db1c6528-b2bf-485e-8755-b9e5be1ef054/shutdown", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.23, + "duration_ms": 15.7, "detail": "" }, { @@ -52303,12 +52377,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/v3/vms/c07bd098-3e3b-4796-b4b5-6231057c78ae/reboot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.13, + "duration_ms": 15.23, "detail": "" }, { @@ -52316,12 +52390,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/v3/vms/4e2007ff-4496-405f-97a3-a5dfd83f42b4/suspend", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.11, + "duration_ms": 10.97, "detail": "" }, { @@ -52329,12 +52403,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/v3/vms/01fa2076-5c39-45b3-a0ff-88a9e6d201dc/migrate", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.13, + "duration_ms": 11.14, "detail": "" }, { @@ -52342,12 +52416,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/v3/vms/4c64f74e-a13b-4f18-a26f-9504b607000c/cancelmigration", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.1, + "duration_ms": 9.35, "detail": "" }, { @@ -52355,12 +52429,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/v3/vms/3b15ef45-2701-477b-a10a-c2f7261b44d0/clone", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 409, "expected_hint": 201, - "duration_ms": 1.09, + "duration_ms": 7.24, "detail": "" }, { @@ -52368,12 +52442,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/v3/vms/fee334d1-6f48-40e9-a20f-085f776d7079/export", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.29, + "duration_ms": 10.37, "detail": "" }, { @@ -52381,12 +52455,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/v3/vms/f4d4164e-421f-4268-a227-c97b14f2c674/detach", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.26, + "duration_ms": 9.46, "detail": "" }, { @@ -52394,12 +52468,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/v3/vms/15590d38-4344-4a0b-85a5-b0e76013c169/screenthumbnail", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.27, + "duration_ms": 10.17, "detail": "" }, { @@ -52407,12 +52481,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/v3/vms/831e00ba-8268-40e1-bb61-c715eac7100d/ticket", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.27, + "duration_ms": 10.61, "detail": "" }, { @@ -52420,12 +52494,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/v3/vms/ccaa7f5a-a00e-4369-bb37-b0ba0b52fa1c/logon", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.35, + "duration_ms": 25.93, "detail": "" }, { @@ -52433,12 +52507,12 @@ "operation_id": "vms.maintenance", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/v3/vms/5ba98fd2-06fd-46b6-828b-6b549caef02f/maintenance", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.27, + "duration_ms": 13.68, "detail": "" }, { @@ -52446,12 +52520,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/f7eb849e-b418-4893-a607-a37c126a4a65/preview_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.24, + "duration_ms": 17.41, "detail": "" }, { @@ -52459,12 +52533,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/256c6ea3-fcab-427f-a096-d32464a6c79d/commit_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.25, + "duration_ms": 16.33, "detail": "" }, { @@ -52472,12 +52546,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/4ff362a9-57af-4ed5-95e4-94eb8fbbe9a8/undo_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 38.55, "detail": "" }, { @@ -52485,12 +52559,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/v3/vms/6e8a0023-d43d-4db1-8c6e-5b363b6e38bc/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.28, + "duration_ms": 42.46, "detail": "" }, { @@ -52498,12 +52572,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/v3/vms/06f5a6e7-d4b1-4caa-af1b-0e8ee59fbfcf/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.24, + "duration_ms": 50.37, "detail": "" }, { @@ -52516,7 +52590,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 7.08, "detail": "" }, { @@ -52529,7 +52603,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.17, + "duration_ms": 9.33, "detail": "" }, { @@ -52537,12 +52611,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/1c83acd8-8d0a-4881-8e54-aaaa47e95815", + "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 6.34, "detail": "" }, { @@ -52550,12 +52624,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/03f1eaf2-c849-47d5-98ab-33f1ab7017a2", + "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/d28056a5-da98-40be-b547-4e2f36a148a8", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 5.59, "detail": "" }, { @@ -52563,12 +52637,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/35cc5d1d-a582-47fd-8385-fd54deb0ec47", + "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/a2e21ac0-d959-4674-bcfb-0e2fbe7ed2a4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 17.23, "detail": "" }, { @@ -52576,12 +52650,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/7c32956c-41e7-4012-b3b6-2e5b90540fac/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": 1.32, + "duration_ms": 9.02, "detail": "" }, { @@ -52589,12 +52663,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/06bf3542-22ad-4120-a45b-f2b4b7f5a36a/diskattachments", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.54, + "duration_ms": 18.83, "detail": "" }, { @@ -52602,12 +52676,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/91bd613f-c2e3-44b6-a2d1-e240b4ef3bbe/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.33, + "duration_ms": 8.35, "detail": "" }, { @@ -52615,12 +52689,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/5bb3e423-9ac9-4921-b4fd-686611c7702d/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.15, + "duration_ms": 7.17, "detail": "" }, { @@ -52628,12 +52702,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/81ff3d95-a3b8-465a-815f-a5cc6529cd2a/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.23, + "duration_ms": 19.63, "detail": "" }, { @@ -52641,12 +52715,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/9a861f98-4781-4ed3-b8ca-b7b8f660e361/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.31, + "duration_ms": 5.84, "detail": "" }, { @@ -52654,12 +52728,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/0a2b9708-c4f2-4b03-81e4-9b12147b1223/nics", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.66, + "duration_ms": 14.75, "detail": "" }, { @@ -52667,12 +52741,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/a581a391-be16-4491-87c1-e42355e72cc5/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.21, + "duration_ms": 5.53, "detail": "" }, { @@ -52680,12 +52754,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/107b8096-8a36-4e35-827a-4d85de16bc76/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/7d079361-fbb4-4c2f-9781-e59c7c1e7678", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 6.11, "detail": "" }, { @@ -52693,12 +52767,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/97e60c86-7f17-47ed-987d-9083c179784f/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.2, + "duration_ms": 7.16, "detail": "" }, { @@ -52706,12 +52780,12 @@ "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/a5508431-cd98-4398-8468-16c2f2eac176/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.04, + "duration_ms": 11.8, "detail": "" }, { @@ -52719,12 +52793,12 @@ "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/e0daffab-1d47-462e-aacb-18da87ea2ce9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.81, + "duration_ms": 26.96, "detail": "" }, { @@ -52732,12 +52806,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/4b9194ba-4a12-4e41-9d8b-f578abf13dbd/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": 1.31, + "duration_ms": 7.18, "detail": "" }, { @@ -52745,12 +52819,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/476b2877-b41b-42e3-a9bc-a06f8743535f/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": 1.58, + "duration_ms": 6.51, "detail": "" }, { @@ -52758,12 +52832,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/9650c6b5-1398-452e-88fb-42644b9191e2/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.4, + "duration_ms": 6.0, "detail": "" }, { @@ -52771,12 +52845,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/72a95d94-7691-47bb-919c-ce65762b8c18/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.73, + "duration_ms": 11.48, "detail": "" }, { @@ -52784,12 +52858,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/8eb9ab77-8ea9-4041-a1b3-924e9900c5c0/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.33, + "duration_ms": 5.26, "detail": "" }, { @@ -52797,12 +52871,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/1dc66eff-7340-469b-9152-f8b2469bae78/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": 1.22, + "duration_ms": 10.91, "detail": "" }, { @@ -52810,12 +52884,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/999f7dbf-e4c2-4d9b-814a-36358e27be56/snapshots", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.37, + "duration_ms": 12.57, "detail": "" }, { @@ -52823,12 +52897,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/66470d8e-5760-4f9f-bc88-c2860000c482/snapshots/9cdf7d79-8244-416d-ba1b-4093b5760102", + "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": 1.12, + "duration_ms": 7.0, "detail": "" }, { @@ -52836,12 +52910,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/11a46d1f-4c6b-4cbd-879d-21aef2de1f4f/snapshots/41a2280c-8191-4b63-aa79-8b57a707926e", + "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": 1.1, + "duration_ms": 6.07, "detail": "" }, { @@ -52849,12 +52923,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/c88cf6cd-381e-4435-b1d8-0288af64a47a/snapshots/7283bcc5-9e3b-45a8-b9f3-707cab0d3b5b", + "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": 1.25, + "duration_ms": 7.91, "detail": "" }, { @@ -52862,12 +52936,12 @@ "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/75b1b12e-e0cc-43a0-8440-a3b1e80e9da5/snapshots/492cf107-8340-4968-bb16-4a80513476e4/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": 1.75, + "duration_ms": 13.36, "detail": "" }, { @@ -52875,12 +52949,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/32cebd24-15fb-4f46-8f35-b1f18ca14bd5/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.29, + "duration_ms": 8.85, "detail": "" }, { @@ -52888,12 +52962,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/09f0233a-272b-4d7e-919b-75772f0c5bbc/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": 1.89, + "duration_ms": 10.9, "detail": "" }, { @@ -52901,12 +52975,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/f428b8a0-04c5-440e-af1a-b3581ef409b9/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.11, + "duration_ms": 7.38, "detail": "" }, { @@ -52914,12 +52988,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/8da6e523-3c06-46ea-80ba-c9de036a4a33/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.16, + "duration_ms": 7.12, "detail": "" }, { @@ -52927,12 +53001,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/abae6533-dd95-48ec-92a0-58101a6b82f1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.19, + "duration_ms": 5.43, "detail": "" }, { @@ -52940,12 +53014,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/afd5cdb8-28b6-4bd6-a073-361dda3b94a8/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.48, + "duration_ms": 7.77, "detail": "" }, { @@ -52953,12 +53027,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/6612e73e-57bc-4700-9fdc-4beb910634d7/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": 1.46, + "duration_ms": 8.03, "detail": "" }, { @@ -52966,12 +53040,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/ba0feefd-4f5d-4321-b46f-2305c30ab665/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.23, + "duration_ms": 6.65, "detail": "" }, { @@ -52979,12 +53053,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/20573c6f-2c3c-463d-a207-2274b062323a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.24, + "duration_ms": 5.51, "detail": "" }, { @@ -52992,12 +53066,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/d103c0a6-2f56-4002-9961-3001c746fff5/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.17, + "duration_ms": 8.07, "detail": "" }, { @@ -53005,12 +53079,12 @@ "operation_id": "graphicsconsoles.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v3/vms/c8a1ff90-8f67-4113-9a8b-36bd41e70f94/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": 1.83, + "duration_ms": 6.32, "detail": "" }, { @@ -53018,12 +53092,12 @@ "operation_id": "graphicsconsoles.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v3/vms/9f5cfdf4-5f65-45b6-b529-1ca42154acb4/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": 1.49, + "duration_ms": 6.57, "detail": "" }, { @@ -53031,12 +53105,12 @@ "operation_id": "graphicsconsoles.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/d61ad88a-6cc1-4e84-9d7c-cdf2c7ca2b4d/graphicsconsoles/5cbdd824-2292-4dfb-91eb-01f04035aec4", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/7d593e0b-6981-409e-a7da-15614938d1a0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 6.79, "detail": "" }, { @@ -53044,12 +53118,12 @@ "operation_id": "graphicsconsoles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/a0c4778d-4396-4a54-8c2c-636f32faf7a4/graphicsconsoles/5cbdd824-2292-4dfb-91eb-01f04035aec4", + "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": 1.87, + "duration_ms": 9.2, "detail": "" }, { @@ -53057,12 +53131,12 @@ "operation_id": "graphicsconsoles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/bb4127b6-5196-4380-a56e-15d2a5fd72c7/graphicsconsoles/5cbdd824-2292-4dfb-91eb-01f04035aec4", + "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": 1.25, + "duration_ms": 7.11, "detail": "" }, { @@ -53070,12 +53144,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/e5fe4c57-55ce-4017-acff-7bb36197c0ef/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.24, + "duration_ms": 7.04, "detail": "" }, { @@ -53083,12 +53157,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/1359ee4b-c154-4799-9ce9-e15b78d94985/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": 1.6, + "duration_ms": 6.09, "detail": "" }, { @@ -53096,12 +53170,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/5d7043f8-fa0b-485b-93d9-680d878388c1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 5.23, "detail": "" }, { @@ -53109,12 +53183,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/5e06de2f-ee28-4013-9005-b3febe5be99b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.45, + "duration_ms": 5.57, "detail": "" }, { @@ -53122,12 +53196,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/c65646c0-d5fa-41c8-894b-e717c569ad47/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.32, + "duration_ms": 5.75, "detail": "" }, { @@ -53135,12 +53209,12 @@ "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/2acaf12d-617c-4513-a153-db817eafdf60/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.36, + "duration_ms": 7.62, "detail": "" }, { @@ -53148,12 +53222,12 @@ "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/93af9066-1c8f-45b9-8bfb-504b2ef0eef8/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.08, + "duration_ms": 8.22, "detail": "" }, { @@ -53161,12 +53235,12 @@ "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/835e99fc-7571-464a-9f98-4112bcdd7ed3/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.76, + "duration_ms": 8.41, "detail": "" }, { @@ -53174,12 +53248,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/f7918a68-cba4-4649-9c19-dddb7beba561/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.33, + "duration_ms": 6.64, "detail": "" }, { @@ -53187,12 +53261,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/1890ee54-3750-4c8b-99bf-a9a0dadbc80f/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": 1.41, + "duration_ms": 15.37, "detail": "" }, { @@ -53200,12 +53274,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/f8c14d19-634d-46e3-a93a-f48b7d93c741/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.21, + "duration_ms": 11.7, "detail": "" }, { @@ -53213,12 +53287,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/c9da6e74-95eb-4d31-9c72-466e4f8bc8d6/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.39, + "duration_ms": 6.18, "detail": "" }, { @@ -53226,12 +53300,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/6f06782c-2c2c-40d0-a47a-c32a9f0f0dc5/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.19, + "duration_ms": 7.89, "detail": "" }, { @@ -53239,12 +53313,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/d21cc79f-099e-45d8-9e0f-34c1f6f8a692/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.22, + "duration_ms": 5.72, "detail": "" }, { @@ -53252,12 +53326,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/5efa532c-b884-4733-a7aa-2c1e784a6775/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": 1.51, + "duration_ms": 7.78, "detail": "" }, { @@ -53265,12 +53339,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/ee2482ff-1ddf-4399-b73d-825a397bbd26/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.16, + "duration_ms": 7.29, "detail": "" }, { @@ -53278,12 +53352,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/6f6fc569-300c-4be3-b268-eecc177aeb9a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.57, + "duration_ms": 5.14, "detail": "" }, { @@ -53291,12 +53365,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/bb331d9f-1db8-4734-b379-adc145049838/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.27, + "duration_ms": 5.99, "detail": "" }, { @@ -53304,12 +53378,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/a656a743-0fc5-46f3-ba05-154375122806/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.19, + "duration_ms": 7.02, "detail": "" }, { @@ -53317,12 +53391,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/31fec9d5-a9c5-45f9-bea6-1030f68ad0ee/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": 1.54, + "duration_ms": 6.8, "detail": "" }, { @@ -53330,12 +53404,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/95ef9ffc-6226-4f0c-abb7-798420e17eed/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 5.92, "detail": "" }, { @@ -53343,12 +53417,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/b91c8446-194a-470f-8cb0-ed444c36f274/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.31, + "duration_ms": 6.53, "detail": "" }, { @@ -53356,12 +53430,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/35ea120e-f86d-49a3-8cb8-9d1785147539/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.14, + "duration_ms": 5.68, "detail": "" }, { @@ -53374,7 +53448,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.61, "detail": "" }, { @@ -53385,9 +53459,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 6.51, "detail": "" }, { @@ -53395,12 +53469,12 @@ "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/48a21214-2866-4fc5-9ea9-d6965b6fe997", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/4362e5f3-0a94-49ce-9d3d-c6c4fdcb2dec", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 4.37, "detail": "" }, { @@ -53408,12 +53482,12 @@ "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/b861f73e-30a8-4b32-8d60-0137a8ce953e", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/b71c6363-3626-43e7-8d1d-adcc86ce1f17", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 11.65, "detail": "" }, { @@ -53421,12 +53495,12 @@ "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/8ea59a43-0ee0-4caf-be7f-fe34d807bc1f", + "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": 1.7, + "duration_ms": 7.4, "detail": "" }, { @@ -53437,9 +53511,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 8.14, "detail": "" }, { @@ -53450,9 +53524,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 1.66, + "duration_ms": 6.64, "detail": "" }, { @@ -53460,12 +53534,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 7.01, "detail": "" }, { @@ -53473,12 +53547,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "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": 1.07, + "duration_ms": 11.99, "detail": "" }, { @@ -53486,12 +53560,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "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": 1.04, + "duration_ms": 6.5, "detail": "" }, { @@ -53504,7 +53578,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 7.02, "detail": "" }, { @@ -53517,7 +53591,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.63, + "duration_ms": 8.32, "detail": "" }, { @@ -53530,7 +53604,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 7.55, "detail": "" }, { @@ -53543,7 +53617,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 8.43, "detail": "" }, { @@ -53551,12 +53625,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.13, + "duration_ms": 5.35, "detail": "" }, { @@ -53569,7 +53643,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 6.66, "detail": "" }, { @@ -53582,7 +53656,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 1.07, + "duration_ms": 4.29, "detail": "" }, { @@ -53593,9 +53667,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 4.59, "detail": "" }, { @@ -53603,12 +53677,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.09, + "duration_ms": 5.53, "detail": "" }, { @@ -53616,12 +53690,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.22, + "duration_ms": 9.53, "detail": "" }, { @@ -53634,7 +53708,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.94, + "duration_ms": 13.54, "detail": "" }, { @@ -53647,7 +53721,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.9, + "duration_ms": 19.52, "detail": "" }, { @@ -53658,9 +53732,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.36, + "duration_ms": 10.96, "detail": "" }, { @@ -53671,9 +53745,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.32, + "duration_ms": 11.94, "detail": "" }, { @@ -53684,9 +53758,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.14, + "duration_ms": 11.27, "detail": "" }, { @@ -53694,12 +53768,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 1.93, + "duration_ms": 10.54, "detail": "" }, { @@ -53707,12 +53781,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/a3c67bff-a56a-493e-a01a-1ff6568bd7d1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 13.42, "detail": "" }, { @@ -53723,9 +53797,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 5.89, "detail": "" }, { @@ -53736,9 +53810,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 7.48, "detail": "" }, { @@ -53746,12 +53820,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 7.4, "detail": "" }, { @@ -53759,12 +53833,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "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": 1.26, + "duration_ms": 4.99, "detail": "" }, { @@ -53772,12 +53846,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e9288494-c6bd-4f2b-953c-da66beb2aea4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 6.98, "detail": "" }, { @@ -53790,7 +53864,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 6.0, "detail": "" }, { @@ -53803,7 +53877,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 5.15, "detail": "" }, { @@ -53811,12 +53885,12 @@ "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/04d28c03-0b67-4154-92ad-6c971442a6e5", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.46, "detail": "" }, { @@ -53824,12 +53898,12 @@ "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/04d28c03-0b67-4154-92ad-6c971442a6e5", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/c81746de-5acb-405e-bb40-af92d75a3311", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 4.67, "detail": "" }, { @@ -53837,12 +53911,12 @@ "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/04d28c03-0b67-4154-92ad-6c971442a6e5", + "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": 1.75, + "duration_ms": 2.89, "detail": "" }, { @@ -53855,7 +53929,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 2.82, "detail": "" }, { @@ -53868,7 +53942,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.52, + "duration_ms": 3.49, "detail": "" }, { @@ -53881,7 +53955,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 2.62, "detail": "" }, { @@ -53894,7 +53968,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.76, "detail": "" }, { @@ -53902,12 +53976,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.36, + "duration_ms": 2.55, "detail": "" }, { @@ -53915,12 +53989,12 @@ "operation_id": "vnicprofiles.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v3/networks/1802cab4-521e-4ac9-a43a-41da021b9523/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.59, + "duration_ms": 4.65, "detail": "" }, { @@ -53928,12 +54002,12 @@ "operation_id": "vnicprofiles.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v3/networks/1802cab4-521e-4ac9-a43a-41da021b9523/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.45, + "duration_ms": 3.0, "detail": "" }, { @@ -53941,12 +54015,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/1802cab4-521e-4ac9-a43a-41da021b9523/vnicprofiles/719b2b01-7e24-4be7-b2d4-9d7ff61cd49b", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.93, + "duration_ms": 2.74, "detail": "" }, { @@ -53954,12 +54028,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/1802cab4-521e-4ac9-a43a-41da021b9523/vnicprofiles/156ddeea-1171-49d9-a040-9a015d6a5da5", + "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": 2.15, + "duration_ms": 3.73, "detail": "" }, { @@ -53967,12 +54041,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/1802cab4-521e-4ac9-a43a-41da021b9523/vnicprofiles/553638ba-4bb3-422a-b7d7-29fcc6a7be68", + "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": 1.41, + "duration_ms": 4.36, "detail": "" }, { @@ -53985,7 +54059,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 4.28, "detail": "" }, { @@ -53998,7 +54072,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.97, + "duration_ms": 6.58, "detail": "" }, { @@ -54009,9 +54083,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 4.8, "detail": "" }, { @@ -54022,9 +54096,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 3.14, "detail": "" }, { @@ -54032,12 +54106,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.25, + "duration_ms": 2.94, "detail": "" }, { @@ -54050,7 +54124,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 2.8, "detail": "" }, { @@ -54063,7 +54137,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.11, + "duration_ms": 3.88, "detail": "" }, { @@ -54076,7 +54150,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 3.1, "detail": "" }, { @@ -54089,7 +54163,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 3.62, "detail": "" }, { @@ -54097,12 +54171,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.28, + "duration_ms": 2.65, "detail": "" }, { @@ -54115,7 +54189,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 3.63, "detail": "" }, { @@ -54128,7 +54202,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.12, + "duration_ms": 5.0, "detail": "" }, { @@ -54139,9 +54213,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 3.34, "detail": "" }, { @@ -54149,12 +54223,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.51, + "duration_ms": 3.2, "detail": "" }, { @@ -54162,12 +54236,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.26, + "duration_ms": 2.49, "detail": "" }, { @@ -54180,7 +54254,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 3.94, "detail": "" }, { @@ -54193,7 +54267,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.04, + "duration_ms": 4.33, "detail": "" }, { @@ -54204,9 +54278,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.25, + "duration_ms": 2.79, "detail": "" }, { @@ -54217,9 +54291,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.91, + "duration_ms": 3.51, "detail": "" }, { @@ -54227,12 +54301,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 1.32, + "duration_ms": 2.29, "detail": "" }, { @@ -54240,12 +54314,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/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": 1.62, + "duration_ms": 2.62, "detail": "" }, { @@ -54253,12 +54327,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/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": 1.92, + "duration_ms": 3.07, "detail": "" }, { @@ -54266,12 +54340,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/steps/cd812f7d-6151-49d4-ab0d-2ec650e60fe7", + "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": 1.31, + "duration_ms": 2.09, "detail": "" }, { @@ -54279,12 +54353,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/steps/ba84c4a6-581a-47ba-b104-dfd2b318133c", + "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": 1.46, + "duration_ms": 2.05, "detail": "" }, { @@ -54292,12 +54366,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/steps/9de4e4ee-5969-4123-a5be-3649b11871ee", + "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": 1.36, + "duration_ms": 2.12, "detail": "" }, { @@ -54310,7 +54384,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.87, + "duration_ms": 6.56, "detail": "" }, { @@ -54323,7 +54397,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 2.89, "detail": "" }, { @@ -54334,9 +54408,9 @@ "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 2.44, "detail": "" }, { @@ -54349,7 +54423,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 2.72, "detail": "" }, { @@ -54360,9 +54434,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.31, "detail": "" }, { @@ -54375,7 +54449,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.56, "detail": "" }, { @@ -54386,9 +54460,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.49, "detail": "" }, { @@ -54401,7 +54475,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 2.51, "detail": "" }, { @@ -54412,9 +54486,9 @@ "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 2.5, "detail": "" }, { @@ -54427,7 +54501,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 2.4, "detail": "" }, { @@ -54440,7 +54514,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.29, "detail": "" }, { @@ -54453,7 +54527,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 2.47, "detail": "" }, { @@ -54461,12 +54535,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1110", + "path_resolved": "/ovirt-engine/api/events/53", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 2.34, "detail": "" }, { @@ -54479,7 +54553,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 2.98, "detail": "" }, { @@ -54490,9 +54564,9 @@ "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.18, "detail": "" }, { @@ -54505,7 +54579,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.57, "detail": "" }, { @@ -54516,9 +54590,9 @@ "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 2.35, "detail": "" }, { @@ -54531,7 +54605,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 3.04, "detail": "" }, { @@ -54539,12 +54613,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/de0362cb-4a00-4daf-ac44-8a347385c1d8", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.85, "detail": "" }, { @@ -54557,7 +54631,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 2.31, "detail": "" }, { @@ -54568,9 +54642,9 @@ "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 2.06, "detail": "" }, { @@ -54583,7 +54657,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.28, + "duration_ms": 4.56, "detail": "" }, { @@ -54591,12 +54665,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0", + "path_resolved": "/ovirt-engine/api/jobs/24f1ae16-f074-4f83-94a5-a3489a701837", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 2.17, "detail": "" }, { @@ -54609,7 +54683,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.36, "detail": "" }, { @@ -54617,12 +54691,12 @@ "operation_id": "head.katelloerrata.get", "method": "HEAD", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/f0f3553b-1097-4873-8608-218b9dfdb9c4", + "path_resolved": "/ovirt-engine/api/katelloerrata/09df8368-fdc0-466f-92e3-ce7027c41421", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 3.8, "detail": "" }, { @@ -54635,7 +54709,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 4.25, "detail": "" }, { @@ -54643,12 +54717,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.14, + "duration_ms": 2.38, "detail": "" }, { @@ -54661,7 +54735,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 2.3, "detail": "" }, { @@ -54672,9 +54746,9 @@ "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.13, "detail": "" }, { @@ -54687,7 +54761,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 1.92, "detail": "" }, { @@ -54698,9 +54772,9 @@ "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 2.54, "detail": "" }, { @@ -54713,7 +54787,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 3.6, "detail": "" }, { @@ -54724,9 +54798,9 @@ "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.01, "detail": "" }, { @@ -54739,7 +54813,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 3.39, "detail": "" }, { @@ -54747,12 +54821,12 @@ "operation_id": "head.operatingsystems.get", "method": "HEAD", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/257e8613-f98b-423c-a3da-8adb5b8c42ad", + "path_resolved": "/ovirt-engine/api/operatingsystems/03e72aec-e20f-4b64-bf7d-97d8b1fb6b17", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.26, "detail": "" }, { @@ -54765,7 +54839,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 2.8, "detail": "" }, { @@ -54778,7 +54852,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 3.15, "detail": "" }, { @@ -54791,7 +54865,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 3.6, "detail": "" }, { @@ -54802,9 +54876,9 @@ "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.97, "detail": "" }, { @@ -54817,7 +54891,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.19, + "duration_ms": 2.52, "detail": "" }, { @@ -54828,9 +54902,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 3.12, "detail": "" }, { @@ -54843,7 +54917,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.14, + "duration_ms": 2.59, "detail": "" }, { @@ -54854,9 +54928,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 2.48, "detail": "" }, { @@ -54869,7 +54943,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.18, + "duration_ms": 2.82, "detail": "" }, { @@ -54877,12 +54951,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/b818adb5-ea94-48b1-9d31-2f8642fc0f37", + "path_resolved": "/ovirt-engine/api/storageconnections/a4e71ad9-3be4-4fc5-80b2-a3c81ba6650c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 3.34, "detail": "" }, { @@ -54895,7 +54969,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 4.03, "detail": "" }, { @@ -54906,9 +54980,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 3.28, "detail": "" }, { @@ -54921,7 +54995,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 3.05, "detail": "" }, { @@ -54932,9 +55006,9 @@ "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 5.27, "detail": "" }, { @@ -54947,7 +55021,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.02, + "duration_ms": 2.8, "detail": "" }, { @@ -54958,9 +55032,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.16, + "duration_ms": 3.25, "detail": "" }, { @@ -54973,7 +55047,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 4.04, "detail": "" }, { @@ -54986,7 +55060,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.1, + "duration_ms": 3.3, "detail": "" }, { @@ -54999,7 +55073,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 3.9, "detail": "" }, { @@ -55010,9 +55084,9 @@ "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 4.37, "detail": "" }, { @@ -55025,7 +55099,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 4.23, "detail": "" }, { @@ -55033,12 +55107,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/a7daed50-4f1c-4b6d-90f1-8c5aa7971c77", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.89, + "duration_ms": 3.59, "detail": "" }, { @@ -55051,7 +55125,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.78, + "duration_ms": 3.09, "detail": "" }, { @@ -55059,12 +55133,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/281f540b-404d-49cc-ad93-623fd82fb14b", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 3.1, "detail": "" }, { @@ -55072,12 +55146,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/2f06ee82-b47c-4402-8b81-9e5c2126f131/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.63, + "duration_ms": 3.71, "detail": "" }, { @@ -55085,12 +55159,12 @@ "operation_id": "head.diskattachments.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/a64e8dc5-26ac-4eb9-9c3b-4e72c3118b29/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.64, + "duration_ms": 4.03, "detail": "" }, { @@ -55098,12 +55172,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/d8d9f201-a9e4-4a2a-ae2f-0876ffed8865/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.51, + "duration_ms": 4.49, "detail": "" }, { @@ -55111,12 +55185,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/d68f18e9-b9b8-4809-973f-5e6fa55cb89c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.49, + "duration_ms": 4.15, "detail": "" }, { @@ -55124,12 +55198,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/8f99e7fd-bf8b-44ff-8e89-0519d20ca822/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.79, + "duration_ms": 4.68, "detail": "" }, { @@ -55137,12 +55211,12 @@ "operation_id": "head.cdroms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/ce873bca-919c-4179-aace-88812e1b404f/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.77, + "duration_ms": 4.07, "detail": "" }, { @@ -55150,12 +55224,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/3adcd578-db21-4feb-8f10-1932b444e187/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.61, + "duration_ms": 4.58, "detail": "" }, { @@ -55163,12 +55237,12 @@ "operation_id": "head.snapshots.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/e8e2505e-cb6e-4bdb-b417-386b3f62e41f/snapshots/30693592-9f43-433e-aa1e-7c8e7b7661b9", + "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": 1.49, + "duration_ms": 4.4, "detail": "" }, { @@ -55176,12 +55250,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/506280f4-90f7-496b-8b68-f2f59b461094/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.6, + "duration_ms": 4.63, "detail": "" }, { @@ -55189,12 +55263,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/9736d21d-443f-4c8a-9ae1-46943e7fa638/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.49, + "duration_ms": 3.61, "detail": "" }, { @@ -55202,12 +55276,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/a47be4b2-6390-4d85-93fb-4b308aa167ac/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": 1.75, + "duration_ms": 5.13, "detail": "" }, { @@ -55215,12 +55289,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/e4c27100-74bb-40e3-865b-4fdb8411a774/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.64, + "duration_ms": 6.07, "detail": "" }, { @@ -55228,12 +55302,12 @@ "operation_id": "head.graphicsconsoles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/c5323a48-7af5-4d12-9c65-71a0068a3f82/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.51, + "duration_ms": 6.39, "detail": "" }, { @@ -55241,12 +55315,12 @@ "operation_id": "head.graphicsconsoles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/b5fdd1a1-8dbf-444c-9014-0d1b2626964f/graphicsconsoles/5cbdd824-2292-4dfb-91eb-01f04035aec4", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/7d593e0b-6981-409e-a7da-15614938d1a0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 5.02, "detail": "" }, { @@ -55254,12 +55328,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/f5083bd8-4bd8-4199-b863-5986e9e93300/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.45, + "duration_ms": 2.96, "detail": "" }, { @@ -55267,12 +55341,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ae9ff377-f579-47c9-9b95-ff9de85a2a7a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.81, "detail": "" }, { @@ -55280,12 +55354,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/e2365334-75e6-41ee-9c35-a334325757b7/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.45, + "duration_ms": 3.54, "detail": "" }, { @@ -55293,12 +55367,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/42a4197d-9500-45b8-9391-3876713a2153/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.47, + "duration_ms": 2.83, "detail": "" }, { @@ -55306,12 +55380,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/f5b0b584-aa57-4fb3-8d7f-88f6c4a9905c/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.46, + "duration_ms": 2.83, "detail": "" }, { @@ -55319,12 +55393,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ed5e51bf-5db5-4324-9888-0efcee4174fc/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.41, + "duration_ms": 2.5, "detail": "" }, { @@ -55332,12 +55406,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/efbe3be2-2196-434d-a02e-a5c501bb9580/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.38, + "duration_ms": 2.4, "detail": "" }, { @@ -55345,12 +55419,12 @@ "operation_id": "head.statistics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/072ba7a1-76ce-4a08-bcc1-684596036106/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 2.24, "detail": "" }, { @@ -55363,7 +55437,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 2.65, "detail": "" }, { @@ -55371,12 +55445,12 @@ "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/ea9c7299-7626-45c1-b2e3-b800085e2e60", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/4362e5f3-0a94-49ce-9d3d-c6c4fdcb2dec", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 2.46, "detail": "" }, { @@ -55387,9 +55461,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 2.56, "detail": "" }, { @@ -55397,12 +55471,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.53, "detail": "" }, { @@ -55415,7 +55489,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.22, + "duration_ms": 3.02, "detail": "" }, { @@ -55428,7 +55502,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 2.44, "detail": "" }, { @@ -55441,7 +55515,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.68, "detail": "" }, { @@ -55452,9 +55526,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.98, "detail": "" }, { @@ -55465,9 +55539,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.38, + "duration_ms": 3.04, "detail": "" }, { @@ -55478,9 +55552,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.3, + "duration_ms": 3.61, "detail": "" }, { @@ -55491,9 +55565,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.38, + "duration_ms": 2.49, "detail": "" }, { @@ -55501,12 +55575,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.06, + "duration_ms": 2.35, "detail": "" }, { @@ -55519,7 +55593,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 2.2, "detail": "" }, { @@ -55527,12 +55601,12 @@ "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/04d28c03-0b67-4154-92ad-6c971442a6e5", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 2.55, "detail": "" }, { @@ -55545,7 +55619,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 2.37, "detail": "" }, { @@ -55558,7 +55632,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 2.26, "detail": "" }, { @@ -55566,12 +55640,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/1802cab4-521e-4ac9-a43a-41da021b9523/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.58, + "duration_ms": 2.17, "detail": "" }, { @@ -55579,12 +55653,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/1802cab4-521e-4ac9-a43a-41da021b9523/vnicprofiles/4d416178-9337-47ee-9baf-a163c19a650c", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 2.19, "detail": "" }, { @@ -55597,7 +55671,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.1, + "duration_ms": 2.36, "detail": "" }, { @@ -55608,9 +55682,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.51, + "duration_ms": 2.37, "detail": "" }, { @@ -55623,7 +55697,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.95, + "duration_ms": 2.66, "detail": "" }, { @@ -55636,7 +55710,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 2.44, "detail": "" }, { @@ -55649,7 +55723,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 2.7, "detail": "" }, { @@ -55660,9 +55734,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 2.07, "detail": "" }, { @@ -55675,7 +55749,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.67, + "duration_ms": 2.17, "detail": "" }, { @@ -55686,9 +55760,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.4, + "duration_ms": 2.31, "detail": "" }, { @@ -55696,12 +55770,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/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.38, + "duration_ms": 2.14, "detail": "" }, { @@ -55709,12 +55783,12 @@ "operation_id": "head.steps.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/steps/fdf2991a-3ec7-4e80-bec9-20cf80992f43", + "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.23, + "duration_ms": 2.1, "detail": "" }, { @@ -55727,7 +55801,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.91, + "duration_ms": 3.52, "detail": "" }, { @@ -55740,7 +55814,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.14, "detail": "" }, { @@ -55751,9 +55825,9 @@ "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 2.71, "detail": "" }, { @@ -55766,7 +55840,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.49, "detail": "" }, { @@ -55777,9 +55851,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 2.49, "detail": "" }, { @@ -55792,7 +55866,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.99, + "duration_ms": 2.63, "detail": "" }, { @@ -55803,9 +55877,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.82, + "duration_ms": 2.25, "detail": "" }, { @@ -55818,7 +55892,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 3.08, "detail": "" }, { @@ -55829,9 +55903,9 @@ "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 2.09, "detail": "" }, { @@ -55844,7 +55918,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.08, "detail": "" }, { @@ -55857,7 +55931,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 2.1, "detail": "" }, { @@ -55870,7 +55944,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 2.1, "detail": "" }, { @@ -55878,12 +55952,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1110", + "path_resolved": "/ovirt-engine/api/v3/events/53", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.94, + "duration_ms": 1.88, "detail": "" }, { @@ -55896,7 +55970,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 2.1, "detail": "" }, { @@ -55907,9 +55981,9 @@ "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 2.2, "detail": "" }, { @@ -55922,7 +55996,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 2.07, "detail": "" }, { @@ -55933,9 +56007,9 @@ "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 2.13, "detail": "" }, { @@ -55948,7 +56022,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 2.26, "detail": "" }, { @@ -55956,12 +56030,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/86a5c5d6-23f6-42fc-beb6-6f877d588466", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 2.43, "detail": "" }, { @@ -55974,7 +56048,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 2.7, "detail": "" }, { @@ -55985,9 +56059,9 @@ "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 2.65, "detail": "" }, { @@ -56000,7 +56074,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.26, + "duration_ms": 4.07, "detail": "" }, { @@ -56008,12 +56082,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0", + "path_resolved": "/ovirt-engine/api/v3/jobs/24f1ae16-f074-4f83-94a5-a3489a701837", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 2.1, "detail": "" }, { @@ -56026,7 +56100,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.44, + "duration_ms": 2.14, "detail": "" }, { @@ -56034,12 +56108,12 @@ "operation_id": "head.katelloerrata.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v3/katelloerrata/f0f3553b-1097-4873-8608-218b9dfdb9c4", + "path_resolved": "/ovirt-engine/api/v3/katelloerrata/09df8368-fdc0-466f-92e3-ce7027c41421", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.05, + "duration_ms": 2.73, "detail": "" }, { @@ -56052,7 +56126,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 2.48, "detail": "" }, { @@ -56060,12 +56134,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 2.23, "detail": "" }, { @@ -56078,7 +56152,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.34, "detail": "" }, { @@ -56089,9 +56163,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.36, "detail": "" }, { @@ -56104,7 +56178,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 2.52, "detail": "" }, { @@ -56115,9 +56189,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.99, "detail": "" }, { @@ -56130,7 +56204,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.36, "detail": "" }, { @@ -56141,9 +56215,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 2.37, "detail": "" }, { @@ -56156,7 +56230,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 2.68, "detail": "" }, { @@ -56164,12 +56238,12 @@ "operation_id": "head.operatingsystems.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v3/operatingsystems/257e8613-f98b-423c-a3da-8adb5b8c42ad", + "path_resolved": "/ovirt-engine/api/v3/operatingsystems/03e72aec-e20f-4b64-bf7d-97d8b1fb6b17", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.31, "detail": "" }, { @@ -56182,7 +56256,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 2.37, "detail": "" }, { @@ -56195,7 +56269,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 2.47, "detail": "" }, { @@ -56208,7 +56282,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 2.05, "detail": "" }, { @@ -56219,9 +56293,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 2.19, "detail": "" }, { @@ -56234,7 +56308,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 2.75, "detail": "" }, { @@ -56245,9 +56319,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.19, "detail": "" }, { @@ -56260,7 +56334,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.26, "detail": "" }, { @@ -56271,9 +56345,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.41, "detail": "" }, { @@ -56286,7 +56360,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.11, "detail": "" }, { @@ -56294,12 +56368,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/b818adb5-ea94-48b1-9d31-2f8642fc0f37", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/a4e71ad9-3be4-4fc5-80b2-a3c81ba6650c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 2.18, "detail": "" }, { @@ -56312,7 +56386,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 2.17, "detail": "" }, { @@ -56323,9 +56397,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 2.41, "detail": "" }, { @@ -56338,7 +56412,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 3.31, "detail": "" }, { @@ -56349,9 +56423,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 2.52, "detail": "" }, { @@ -56364,7 +56438,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 2.27, "detail": "" }, { @@ -56375,9 +56449,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 2.34, "detail": "" }, { @@ -56390,7 +56464,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.31, "detail": "" }, { @@ -56403,7 +56477,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.31, "detail": "" }, { @@ -56416,7 +56490,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 2.25, "detail": "" }, { @@ -56427,9 +56501,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.26, "detail": "" }, { @@ -56442,7 +56516,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.28, "detail": "" }, { @@ -56450,12 +56524,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/aa3165e8-87d4-48f2-9c8a-20c3edac6b1a", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 2.19, "detail": "" }, { @@ -56468,7 +56542,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 2.31, "detail": "" }, { @@ -56476,152 +56550,9 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/d570fd70-2cdd-4e60-bc34-a81d3a94b221", + "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.38, - "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/65ee2fc3-08b4-41ff-98ab-4c10a2e116a9/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.99, - "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/d624f9be-3abb-4fd8-8b6a-adc555fdb80f/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.45, - "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/a957d391-7b3e-4565-9924-8c543cc7c5ff/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.34, - "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/f6a24d34-c7c2-4c63-a2c1-94f1817882b3/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.61, - "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/4cdb5730-f052-4df1-ac2e-30a593eeee09/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.23, - "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/68ed12f1-992a-4215-9a0d-8c2730468834/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.28, - "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/366f239d-d61b-44aa-8b33-abb9f5860f7e/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.35, - "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/11e247ac-e202-4b2b-a68f-2484f623099c/snapshots/a61e1d8a-1aba-4704-aeff-d685b2daae89", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.89, - "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/b007ca34-dd81-4a20-a539-bd3bf6eea245/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.86, - "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/2b8645a9-ea35-40f2-85e9-36b13b6d7bd0/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.94, - "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/60c762d5-ffef-4c9f-a9c8-1f1d7148b696/permissions", - "kind": "collection", - "status": "passed", "http_status": 200, "expected_hint": 200, "duration_ms": 2.19, @@ -56629,49 +56560,62 @@ }, { "series": "3.5", - "operation_id": "head.permissions.get", + "operation_id": "head.diskattachments.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/9b9f7e00-5e5c-47ce-9f54-14116b5f6cf5/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.12, - "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/72270622-3e6b-4030-8631-e20924ad8c6e/graphicsconsoles", + "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": 1.99, + "duration_ms": 2.43, "detail": "" }, { "series": "3.5", - "operation_id": "head.graphicsconsoles.get", + "operation_id": "head.diskattachments.get", "method": "HEAD", - "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/27c1041c-7f7f-41fb-8346-fb8ae37f1d02/graphicsconsoles/5cbdd824-2292-4dfb-91eb-01f04035aec4", + "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.52, + "duration_ms": 2.76, "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/7466ba6a-a46e-4ce8-ac8c-c389ed852f9f/nics", + "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, @@ -56681,15 +56625,145 @@ }, { "series": "3.5", - "operation_id": "head.nics.get", + "operation_id": "head.cdroms.get", "method": "HEAD", - "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/165a0b97-a789-4883-a6ca-a06a444fcd9e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.81, + "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": "" }, { @@ -56697,12 +56771,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/390f5d95-e7bb-4d5e-a964-d90c72ff2b71/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.83, + "duration_ms": 3.7, "detail": "" }, { @@ -56710,12 +56784,12 @@ "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/c9c0c5e1-a060-4212-be07-6b9890d6cd4c/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.06, + "duration_ms": 3.81, "detail": "" }, { @@ -56723,12 +56797,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/188c55fd-8ca7-4511-9892-acedd713b501/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.82, + "duration_ms": 3.91, "detail": "" }, { @@ -56736,12 +56810,12 @@ "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/7b43134e-233b-4983-9f25-e76186ff6633/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.22, + "duration_ms": 3.19, "detail": "" }, { @@ -56749,12 +56823,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/81eec063-2803-4259-a953-c8da5ec278f2/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.04, + "duration_ms": 2.7, "detail": "" }, { @@ -56762,12 +56836,12 @@ "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/8e4b2a8f-d466-4f31-ba67-90b3dd578116/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.17, + "duration_ms": 2.6, "detail": "" }, { @@ -56780,7 +56854,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.19, + "duration_ms": 2.32, "detail": "" }, { @@ -56788,12 +56862,12 @@ "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/efd72ffd-8c47-4f84-a1ef-73ad78e824fe", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/4362e5f3-0a94-49ce-9d3d-c6c4fdcb2dec", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.11, + "duration_ms": 2.51, "detail": "" }, { @@ -56804,9 +56878,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.01, + "duration_ms": 2.48, "detail": "" }, { @@ -56814,12 +56888,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 2.27, "detail": "" }, { @@ -56832,7 +56906,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 2.5, "detail": "" }, { @@ -56845,7 +56919,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.14, + "duration_ms": 2.42, "detail": "" }, { @@ -56858,7 +56932,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 2.46, "detail": "" }, { @@ -56869,9 +56943,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.07, + "duration_ms": 2.4, "detail": "" }, { @@ -56882,9 +56956,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 2.53, "detail": "" }, { @@ -56895,9 +56969,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 2.72, "detail": "" }, { @@ -56908,9 +56982,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 4.36, "detail": "" }, { @@ -56918,12 +56992,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.22, + "duration_ms": 4.09, "detail": "" }, { @@ -56936,7 +57010,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.14, + "duration_ms": 3.36, "detail": "" }, { @@ -56944,12 +57018,12 @@ "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/04d28c03-0b67-4154-92ad-6c971442a6e5", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 3.25, "detail": "" }, { @@ -56962,7 +57036,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 3.23, "detail": "" }, { @@ -56975,7 +57049,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 3.07, "detail": "" }, { @@ -56983,12 +57057,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v3/networks/1802cab4-521e-4ac9-a43a-41da021b9523/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.69, + "duration_ms": 3.27, "detail": "" }, { @@ -56996,12 +57070,12 @@ "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/1802cab4-521e-4ac9-a43a-41da021b9523/vnicprofiles/30f5f86a-28cb-4ba6-a71c-b4c267a56051", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 2.74, "detail": "" }, { @@ -57014,7 +57088,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 3.4, "detail": "" }, { @@ -57025,9 +57099,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 3.66, "detail": "" }, { @@ -57040,7 +57114,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 3.09, "detail": "" }, { @@ -57053,7 +57127,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.2, + "duration_ms": 3.86, "detail": "" }, { @@ -57066,7 +57140,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.59, + "duration_ms": 3.23, "detail": "" }, { @@ -57077,9 +57151,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.6, + "duration_ms": 3.34, "detail": "" }, { @@ -57092,7 +57166,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.62, + "duration_ms": 3.26, "detail": "" }, { @@ -57103,9 +57177,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.69, + "duration_ms": 3.06, "detail": "" }, { @@ -57113,12 +57187,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/9b69aef6-1a91-4399-ae01-fb731760cdc0/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": 4.48, + "duration_ms": 3.07, "detail": "" }, { @@ -57126,12 +57200,12 @@ "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/9b69aef6-1a91-4399-ae01-fb731760cdc0/steps/463580db-7497-48f0-bdbe-a712e6e8f888", + "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.87, + "duration_ms": 2.67, "detail": "" }, { @@ -57144,7 +57218,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.83, + "duration_ms": 11.42, "detail": "" }, { @@ -57157,7 +57231,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 5.5, "detail": "" }, { @@ -57170,7 +57244,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 6.63, "detail": "" }, { @@ -57183,7 +57257,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 4.08, "detail": "" }, { @@ -57191,12 +57265,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/def7c47a-ddde-44e7-a157-077a297ee4fb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 4.84, "detail": "" }, { @@ -57204,12 +57278,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/b1438670-f716-4683-a171-3957aa3bf727", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 5.13, "detail": "" }, { @@ -57222,7 +57296,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 12.54, "detail": "" }, { @@ -57235,7 +57309,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.54, + "duration_ms": 4.17, "detail": "" }, { @@ -57248,7 +57322,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 3.96, "detail": "" }, { @@ -57256,12 +57330,12 @@ "operation_id": "clusterlevels.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/clusterlevels/73b12e84-5e0b-452e-8348-0fe916eddae6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 6.8, "detail": "" }, { @@ -57269,12 +57343,12 @@ "operation_id": "clusterlevels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/clusterlevels/a227227d-b899-4a2e-8474-32807b4d85bc", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 12.62, "detail": "" }, { @@ -57287,7 +57361,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 6.77, "detail": "" }, { @@ -57300,7 +57374,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 10.38, "detail": "" }, { @@ -57313,7 +57387,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 5.58, "detail": "" }, { @@ -57321,12 +57395,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/fc67ef8b-d23d-4894-a2bb-f35b31ea68ac", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 7.55, "detail": "" }, { @@ -57334,12 +57408,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/0863467a-4470-4a27-bdae-2886f6207883", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 68.37, "detail": "" }, { @@ -57352,7 +57426,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.11, + "duration_ms": 81.54, "detail": "" }, { @@ -57365,7 +57439,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.63, + "duration_ms": 67.24, "detail": "" }, { @@ -57378,7 +57452,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.53, + "duration_ms": 59.12, "detail": "" }, { @@ -57391,7 +57465,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.56, + "duration_ms": 200.73, "detail": "" }, { @@ -57404,7 +57478,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 16.19, "detail": "" }, { @@ -57417,7 +57491,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.39, + "duration_ms": 17.64, "detail": "" }, { @@ -57430,7 +57504,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 18.3, "detail": "" }, { @@ -57438,12 +57512,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/50b67053-4477-4e4f-8287-0f0289a26d5e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 15.84, "detail": "" }, { @@ -57451,12 +57525,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/dba0ac21-0ca3-4a7e-885c-ee2c4ac8a66a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 12.77, "detail": "" }, { @@ -57469,7 +57543,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.67, + "duration_ms": 20.37, "detail": "" }, { @@ -57482,7 +57556,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.01, + "duration_ms": 4.08, "detail": "" }, { @@ -57495,7 +57569,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.63, + "duration_ms": 10.61, "detail": "" }, { @@ -57508,7 +57582,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 9.52, "detail": "" }, { @@ -57516,12 +57590,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/928cd86d-0f7b-438a-9024-bfc903e966ae", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 5.66, "detail": "" }, { @@ -57529,12 +57603,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/bc85890c-f62c-4409-ac23-732878678c0f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 5.99, "detail": "" }, { @@ -57547,7 +57621,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.82, + "duration_ms": 6.87, "detail": "" }, { @@ -57560,7 +57634,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.79, + "duration_ms": 7.42, "detail": "" }, { @@ -57573,7 +57647,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 7.3, "detail": "" }, { @@ -57586,7 +57660,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.11, + "duration_ms": 7.88, "detail": "" }, { @@ -57599,7 +57673,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 4.86, "detail": "" }, { @@ -57612,7 +57686,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.0, + "duration_ms": 6.92, "detail": "" }, { @@ -57625,7 +57699,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 6.44, "detail": "" }, { @@ -57638,7 +57712,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 3.71, "detail": "" }, { @@ -57646,12 +57720,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/domains/{id}", - "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/domains/c4bf3fda-01b3-4fb9-8b12-be0c19956866", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.9, + "duration_ms": 6.31, "detail": "" }, { @@ -57664,7 +57738,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 5.05, "detail": "" }, { @@ -57677,7 +57751,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.98, + "duration_ms": 5.96, "detail": "" }, { @@ -57685,12 +57759,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1111", + "path_resolved": "/ovirt-engine/api/events/54", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 8.57, "detail": "" }, { @@ -57698,12 +57772,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1111", + "path_resolved": "/ovirt-engine/api/events/54", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 6.48, "detail": "" }, { @@ -57711,12 +57785,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1111", + "path_resolved": "/ovirt-engine/api/events/42b84e07-6a6e-4822-b547-9c678f9e2adb", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.88, + "duration_ms": 5.43, "detail": "" }, { @@ -57729,7 +57803,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 5.32, "detail": "" }, { @@ -57742,7 +57816,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.53, + "duration_ms": 4.73, "detail": "" }, { @@ -57755,7 +57829,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 2.68, "detail": "" }, { @@ -57763,12 +57837,12 @@ "operation_id": "externalhostproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/94d9d3b2-23de-4e1a-ab2e-9783405873f6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 7.03, "detail": "" }, { @@ -57776,12 +57850,12 @@ "operation_id": "externalhostproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/f94122de-e09d-4d5c-b784-c6a2e84bf7af", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 8.21, "detail": "" }, { @@ -57794,7 +57868,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 7.62, "detail": "" }, { @@ -57807,7 +57881,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.67, + "duration_ms": 9.37, "detail": "" }, { @@ -57820,7 +57894,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 5.86, "detail": "" }, { @@ -57828,12 +57902,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/55d45986-957a-4ee4-aa9a-f2cf34450ade", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 6.93, "detail": "" }, { @@ -57841,12 +57915,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/c6a19669-31ec-48e5-93f7-40f3bc6616de", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 6.55, "detail": "" }, { @@ -57859,7 +57933,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 5.2, "detail": "" }, { @@ -57870,9 +57944,9 @@ "path_resolved": "/ovirt-engine/api/hosts", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.62, + "duration_ms": 5.52, "detail": "" }, { @@ -57880,12 +57954,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/b968055a-01ba-4fe6-bf4c-202a5e38ee91", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 4.31, "detail": "" }, { @@ -57893,12 +57967,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/a9434381-f1db-48d3-bc22-903e6b2b0cd8", + "path_resolved": "/ovirt-engine/api/hosts/0d146037-ba60-452f-aa55-cac6e7ee6828", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 14.78, "detail": "" }, { @@ -57906,12 +57980,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ea64d409-9790-44f1-9096-4bf1037b1c12", + "path_resolved": "/ovirt-engine/api/hosts/0e39a4b7-2ee0-48f7-b9e6-fdc8b709294b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 15.28, "detail": "" }, { @@ -57919,12 +57993,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/hosts/f9dc9b54-28ca-47f9-bfa4-d04aaf11f1d1/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": 1.99, + "duration_ms": 30.79, "detail": "" }, { @@ -57932,12 +58006,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/hosts/2d3dfa12-93c7-478f-982e-55b3dc9a3c0b/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": 1.79, + "duration_ms": 62.05, "detail": "" }, { @@ -57945,12 +58019,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/hosts/6a271486-6633-4250-8e19-99e28544d24c/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": 1.72, + "duration_ms": 32.03, "detail": "" }, { @@ -57958,12 +58032,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/hosts/60fdf0bc-d47b-43c3-87f9-bedcd0b42a3e/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": 1.69, + "duration_ms": 8.67, "detail": "" }, { @@ -57971,12 +58045,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/hosts/0acb4886-4c04-4315-bad6-4181b7e18573/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": 1.69, + "duration_ms": 9.56, "detail": "" }, { @@ -57984,12 +58058,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/hosts/e7a2902f-ae1e-4e07-811d-2e27896fada6/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": 1.75, + "duration_ms": 10.17, "detail": "" }, { @@ -57997,12 +58071,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/hosts/52196cbe-0680-4797-808e-e14b950fe858/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": 1.72, + "duration_ms": 15.27, "detail": "" }, { @@ -58010,12 +58084,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/hosts/bb12413f-aed1-4935-a836-c6ddf4010b27/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": 1.7, + "duration_ms": 11.07, "detail": "" }, { @@ -58023,12 +58097,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/hosts/42704856-7cbb-4026-b152-05f38c1bcb6d/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": 1.7, + "duration_ms": 9.02, "detail": "" }, { @@ -58036,12 +58110,12 @@ "operation_id": "hosts.unregisteredstoragedomainsdiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/hosts/32d1b41f-1dd9-4a7f-8b8c-88ed02cd3b95/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": 1.59, + "duration_ms": 13.2, "detail": "" }, { @@ -58049,12 +58123,12 @@ "operation_id": "hosts.upgrade", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgrade", - "path_resolved": "/ovirt-engine/api/hosts/bdfbd5b5-8a69-46b9-9b01-30f733a0b127/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": 1.55, + "duration_ms": 10.74, "detail": "" }, { @@ -58062,12 +58136,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/hosts/7311888b-a41b-4807-ac9b-535a48c3e85f/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": 1.8, + "duration_ms": 13.85, "detail": "" }, { @@ -58080,7 +58154,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 5.36, "detail": "" }, { @@ -58093,7 +58167,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.14, + "duration_ms": 5.26, "detail": "" }, { @@ -58106,7 +58180,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 4.59, "detail": "" }, { @@ -58114,12 +58188,12 @@ "operation_id": "icons.update", "method": "PUT", "path_template": "/ovirt-engine/api/icons/{id}", - "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/icons/16750fcf-908e-4a6b-a714-4cc01ad0afc7", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 5.84, "detail": "" }, { @@ -58127,12 +58201,12 @@ "operation_id": "icons.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/icons/{id}", - "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/icons/37d1d041-07df-4722-afb6-afd130479c55", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 6.53, "detail": "" }, { @@ -58145,7 +58219,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 7.02, "detail": "" }, { @@ -58158,7 +58232,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 6.08, "detail": "" }, { @@ -58171,7 +58245,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 4.05, "detail": "" }, { @@ -58179,12 +58253,12 @@ "operation_id": "instancetypes.update", "method": "PUT", "path_template": "/ovirt-engine/api/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/instancetypes/1dd8bf16-d091-4d57-b272-2af9da3eaee6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 3.71, "detail": "" }, { @@ -58192,12 +58266,12 @@ "operation_id": "instancetypes.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/instancetypes/41ed3d74-33c6-42ed-98a6-c2fb8a5bfe71", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 3.55, "detail": "" }, { @@ -58210,7 +58284,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.84, + "duration_ms": 4.04, "detail": "" }, { @@ -58223,7 +58297,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.94, + "duration_ms": 2.66, "detail": "" }, { @@ -58231,12 +58305,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad", + "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 3.89, "detail": "" }, { @@ -58244,12 +58318,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad", + "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.89, + "duration_ms": 5.42, "detail": "" }, { @@ -58257,12 +58331,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad", + "path_resolved": "/ovirt-engine/api/jobs/58139d34-f3aa-4be4-b4de-c8680b1184d0", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.85, + "duration_ms": 4.06, "detail": "" }, { @@ -58275,7 +58349,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.01, + "duration_ms": 4.24, "detail": "" }, { @@ -58288,7 +58362,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.19, + "duration_ms": 6.92, "detail": "" }, { @@ -58296,12 +58370,12 @@ "operation_id": "katelloerrata.get", "method": "GET", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/90644bd3-f10a-4344-a7eb-374ce8fd6370", + "path_resolved": "/ovirt-engine/api/katelloerrata/26df5a2c-3732-4d5c-a82f-e8d6c1c8aa21", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 5.09, "detail": "" }, { @@ -58309,12 +58383,12 @@ "operation_id": "katelloerrata.update", "method": "PUT", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/90644bd3-f10a-4344-a7eb-374ce8fd6370", + "path_resolved": "/ovirt-engine/api/katelloerrata/5101bc73-8d3c-47b8-b144-b3706ee2a16c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 8.7, "detail": "" }, { @@ -58322,12 +58396,12 @@ "operation_id": "katelloerrata.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/90644bd3-f10a-4344-a7eb-374ce8fd6370", + "path_resolved": "/ovirt-engine/api/katelloerrata/858bbadb-6e93-49d6-9393-2092ffcdceb2", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 4.37, "detail": "" }, { @@ -58340,7 +58414,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 4.81, "detail": "" }, { @@ -58353,7 +58427,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.57, + "duration_ms": 4.02, "detail": "" }, { @@ -58366,7 +58440,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.01, + "duration_ms": 2.73, "detail": "" }, { @@ -58374,12 +58448,12 @@ "operation_id": "macpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/macpools/{id}", - "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/macpools/48f208d0-24ca-4f0d-bc1e-6d427cb38e6a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 3.59, "detail": "" }, { @@ -58387,12 +58461,12 @@ "operation_id": "macpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/macpools/{id}", - "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/macpools/7c8e7d29-e414-4fc9-b7d7-c34af862d0e8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 2.85, "detail": "" }, { @@ -58405,7 +58479,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 2.31, "detail": "" }, { @@ -58418,7 +58492,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.19, + "duration_ms": 2.89, "detail": "" }, { @@ -58426,12 +58500,12 @@ "operation_id": "networkfilters.get", "method": "GET", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/e1935c5d-51a0-4cc9-be19-7c1b09fb8802", + "path_resolved": "/ovirt-engine/api/networkfilters/f2cb2f7b-b4ed-47ce-bcbc-b5015ff9a741", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 2.22, "detail": "" }, { @@ -58439,12 +58513,12 @@ "operation_id": "networkfilters.update", "method": "PUT", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/e1935c5d-51a0-4cc9-be19-7c1b09fb8802", + "path_resolved": "/ovirt-engine/api/networkfilters/98bb1c7e-b216-48b3-b7d7-56cce593d443", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.81, "detail": "" }, { @@ -58452,12 +58526,12 @@ "operation_id": "networkfilters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/e1935c5d-51a0-4cc9-be19-7c1b09fb8802", + "path_resolved": "/ovirt-engine/api/networkfilters/fec60637-9a06-48c8-b88e-17c496813fc2", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 2.54, "detail": "" }, { @@ -58470,7 +58544,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 2.52, "detail": "" }, { @@ -58483,7 +58557,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.51, + "duration_ms": 3.57, "detail": "" }, { @@ -58491,12 +58565,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 2.59, "detail": "" }, { @@ -58504,12 +58578,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/networks/6422ccd9-5ef2-46ab-be2b-4b17a1f7abeb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 4.78, "detail": "" }, { @@ -58517,12 +58591,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/networks/6f10d3b2-b530-4029-94df-cc209925e01d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 2.68, "detail": "" }, { @@ -58535,7 +58609,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 1.97, "detail": "" }, { @@ -58548,7 +58622,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.3, + "duration_ms": 2.66, "detail": "" }, { @@ -58561,7 +58635,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 2.42, "detail": "" }, { @@ -58569,12 +58643,12 @@ "operation_id": "openstackimageproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/cff892a0-761c-4805-acd8-a18acaa51d75", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 2.99, "detail": "" }, { @@ -58582,12 +58656,12 @@ "operation_id": "openstackimageproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/9dc326c0-4c90-4ca5-a3e3-0d412d1b0a7c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 2.52, "detail": "" }, { @@ -58600,7 +58674,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 2.0, "detail": "" }, { @@ -58613,7 +58687,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.21, + "duration_ms": 2.66, "detail": "" }, { @@ -58626,7 +58700,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 2.18, "detail": "" }, { @@ -58634,12 +58708,12 @@ "operation_id": "openstacknetworkproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/9c368226-3c63-4492-b996-341be85b76ab", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 2.9, "detail": "" }, { @@ -58647,12 +58721,12 @@ "operation_id": "openstacknetworkproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/8fccd13d-1a3f-412f-9662-9a6af66aa232", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 2.49, "detail": "" }, { @@ -58665,7 +58739,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 2.19, "detail": "" }, { @@ -58678,7 +58752,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.24, + "duration_ms": 2.6, "detail": "" }, { @@ -58691,7 +58765,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 2.16, "detail": "" }, { @@ -58699,12 +58773,12 @@ "operation_id": "openstackvolumeproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/2747d066-1682-4ee6-8c7e-d73df6797449", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 2.68, "detail": "" }, { @@ -58712,12 +58786,12 @@ "operation_id": "openstackvolumeproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/b0e3b0da-b019-4166-a9e5-e37782bef6e9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 2.7, "detail": "" }, { @@ -58730,7 +58804,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 2.22, "detail": "" }, { @@ -58743,7 +58817,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.52, + "duration_ms": 2.76, "detail": "" }, { @@ -58751,12 +58825,12 @@ "operation_id": "operatingsystems.get", "method": "GET", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/e7a49e06-4414-4dd3-b252-c3e24a06c909", + "path_resolved": "/ovirt-engine/api/operatingsystems/17415db0-2d19-4450-a6e0-ca1e12a7f2bf", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 2.32, "detail": "" }, { @@ -58764,12 +58838,12 @@ "operation_id": "operatingsystems.update", "method": "PUT", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/e7a49e06-4414-4dd3-b252-c3e24a06c909", + "path_resolved": "/ovirt-engine/api/operatingsystems/99902693-fe90-47e6-b0ed-616707ca59eb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 3.6, "detail": "" }, { @@ -58777,12 +58851,12 @@ "operation_id": "operatingsystems.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/e7a49e06-4414-4dd3-b252-c3e24a06c909", + "path_resolved": "/ovirt-engine/api/operatingsystems/fd38cb51-7e60-40dc-b03b-ba8045a74905", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 2.86, "detail": "" }, { @@ -58795,7 +58869,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 6.32, "detail": "" }, { @@ -58808,7 +58882,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.0, + "duration_ms": 3.07, "detail": "" }, { @@ -58821,7 +58895,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 7.31, "detail": "" }, { @@ -58834,7 +58908,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 3.6, "detail": "" }, { @@ -58842,12 +58916,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/permissions/{id}", - "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/permissions/2ba8c5af-ce9a-450a-aab5-de1dab3e1ac8", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 3.32, "detail": "" }, { @@ -58860,7 +58934,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 4.05, "detail": "" }, { @@ -58873,7 +58947,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.38, + "duration_ms": 5.94, "detail": "" }, { @@ -58886,7 +58960,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 6.02, "detail": "" }, { @@ -58894,12 +58968,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/400107ae-0cef-411a-b788-283ff4149105", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 5.4, "detail": "" }, { @@ -58907,12 +58981,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/f96bd831-e4e9-4037-8629-d7b910b2d268", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 12.71, "detail": "" }, { @@ -58925,7 +58999,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 3.47, "detail": "" }, { @@ -58938,7 +59012,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.24, + "duration_ms": 9.44, "detail": "" }, { @@ -58951,7 +59025,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 6.17, "detail": "" }, { @@ -58959,12 +59033,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/de6028c5-7776-4e7f-9405-6e8c64d68df5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 9.49, "detail": "" }, { @@ -58972,12 +59046,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/c508da27-f280-447f-b423-fe05a98fd3c0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 7.41, "detail": "" }, { @@ -58990,7 +59064,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 5.36, "detail": "" }, { @@ -59003,7 +59077,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.2, + "duration_ms": 6.24, "detail": "" }, { @@ -59016,7 +59090,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 4.9, "detail": "" }, { @@ -59024,12 +59098,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/d7cd622a-1e9e-42f8-9438-41af941b284d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 7.37, "detail": "" }, { @@ -59037,12 +59111,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/364046b7-0b34-4e70-a09d-e954582ab86a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 3.03, "detail": "" }, { @@ -59055,7 +59129,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.86, "detail": "" }, { @@ -59068,7 +59142,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.43, + "duration_ms": 3.52, "detail": "" }, { @@ -59076,12 +59150,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/9e470bf3-f5ae-4667-80bd-575ce6801b91", + "path_resolved": "/ovirt-engine/api/storageconnections/64eb0822-b478-4829-896b-d7361a773079", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 2.67, "detail": "" }, { @@ -59089,12 +59163,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/9e470bf3-f5ae-4667-80bd-575ce6801b91", + "path_resolved": "/ovirt-engine/api/storageconnections/cc50bdce-6414-4a5a-89c7-0c707f09a490", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.92, + "duration_ms": 2.03, "detail": "" }, { @@ -59102,12 +59176,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/9e470bf3-f5ae-4667-80bd-575ce6801b91", + "path_resolved": "/ovirt-engine/api/storageconnections/f33d75ff-8eb5-4f5b-8ccb-94d0202a9eda", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 2.52, "detail": "" }, { @@ -59120,7 +59194,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 1.86, "detail": "" }, { @@ -59133,7 +59207,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.59, + "duration_ms": 3.91, "detail": "" }, { @@ -59146,7 +59220,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 2.58, "detail": "" }, { @@ -59154,12 +59228,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/03ef75ff-b1c1-4e04-8e4b-5136859c30d3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 3.2, "detail": "" }, { @@ -59167,12 +59241,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/f1bba1d4-300f-43f0-94b7-ff28a308f391", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 3.47, "detail": "" }, { @@ -59185,7 +59259,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.67, + "duration_ms": 3.9, "detail": "" }, { @@ -59198,7 +59272,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.65, + "duration_ms": 3.99, "detail": "" }, { @@ -59211,7 +59285,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 2.84, "detail": "" }, { @@ -59224,7 +59298,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.47, + "duration_ms": 3.51, "detail": "" }, { @@ -59237,7 +59311,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 2.26, "detail": "" }, { @@ -59245,12 +59319,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/c09bd6e0-3759-4ebd-88b9-1c9e07a91782", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.11, + "duration_ms": 3.3, "detail": "" }, { @@ -59258,12 +59332,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/0e73ea8b-20f8-49cf-8abe-a949862a82d3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 3.26, "detail": "" }, { @@ -59276,7 +59350,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 2.77, "detail": "" }, { @@ -59289,7 +59363,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 4.93, "detail": "" }, { @@ -59302,7 +59376,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 2.59, "detail": "" }, { @@ -59310,12 +59384,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/fd202803-b426-4a93-8ac6-85b38381c06b", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 2.48, "detail": "" }, { @@ -59323,12 +59397,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/26ffe70b-d162-4320-81e3-d07da134d67f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 4.13, "detail": "" }, { @@ -59341,7 +59415,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 3.84, "detail": "" }, { @@ -59354,7 +59428,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.98, "detail": "" }, { @@ -59367,7 +59441,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.95, + "duration_ms": 3.45, "detail": "" }, { @@ -59380,7 +59454,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 2.71, "detail": "" }, { @@ -59393,7 +59467,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.99, + "duration_ms": 2.14, "detail": "" }, { @@ -59401,12 +59475,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/users/{id}", - "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/users/a5457239-78cc-4067-a459-dcff38f649b4", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 2.04, "detail": "" }, { @@ -59419,7 +59493,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 2.44, "detail": "" }, { @@ -59432,7 +59506,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 2.81, "detail": "" }, { @@ -59445,7 +59519,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 2.39, "detail": "" }, { @@ -59453,12 +59527,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/5a9a6591-3e77-409a-af7a-9f92a3dcc230", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 3.04, "detail": "" }, { @@ -59466,12 +59540,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/39d03410-1bb8-495c-a258-80e4bb012fc9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 2.55, "detail": "" }, { @@ -59484,7 +59558,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 2.44, "detail": "" }, { @@ -59495,9 +59569,9 @@ "path_resolved": "/ovirt-engine/api/vms", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.15, + "duration_ms": 6.87, "detail": "" }, { @@ -59505,12 +59579,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/6473b558-30b7-4bfb-934d-42431086c188", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 3.62, "detail": "" }, { @@ -59518,12 +59592,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/36a8ada9-3647-4e24-b9b3-a1209c6e7e2b", + "path_resolved": "/ovirt-engine/api/vms/fcbbc03d-3550-47c4-bcdb-8697605506ff", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 3.28, "detail": "" }, { @@ -59531,12 +59605,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/20c3b7da-dbc3-485d-a873-37abc5952235", + "path_resolved": "/ovirt-engine/api/vms/1da51375-2c48-4736-a3b2-6c42bae168b6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 4.58, "detail": "" }, { @@ -59544,12 +59618,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/vms/6fb0dc99-1fa0-4222-8a03-f58ea3f0bc7c/start", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.02, + "duration_ms": 5.47, "detail": "" }, { @@ -59557,12 +59631,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/vms/83709363-5bd9-4fcd-a643-feb019be27b6/stop", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.03, + "duration_ms": 3.87, "detail": "" }, { @@ -59570,12 +59644,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/vms/300f7a40-758a-4d5c-9e53-a31c1f320051/shutdown", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.03, + "duration_ms": 5.92, "detail": "" }, { @@ -59583,12 +59657,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/vms/6b5e3d23-fbb9-4259-a367-61d8cd705105/reboot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.1, + "duration_ms": 4.26, "detail": "" }, { @@ -59596,12 +59670,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/vms/ccbce0e8-b0b3-45e1-95b2-1b8fe1694ebe/suspend", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.02, + "duration_ms": 4.92, "detail": "" }, { @@ -59609,12 +59683,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/vms/6d89d7f7-cd36-45d2-81a4-a66ab2e9edc3/migrate", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 5.73, "detail": "" }, { @@ -59622,12 +59696,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/vms/51b8ca32-823e-4aa4-b131-dea70f6aab97/cancelmigration", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.14, + "duration_ms": 4.32, "detail": "" }, { @@ -59635,12 +59709,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/vms/d50e1117-4f0f-490d-a412-2faea0296a6f/clone", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.18, + "duration_ms": 7.95, "detail": "" }, { @@ -59648,12 +59722,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/vms/34e1985e-e739-408e-a108-99fe4daf6723/export", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.18, + "duration_ms": 5.2, "detail": "" }, { @@ -59661,12 +59735,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/vms/ad2adfaa-9c78-42a3-8712-c0d6548f8caf/detach", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.18, + "duration_ms": 3.89, "detail": "" }, { @@ -59674,12 +59748,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/vms/a31800f1-788a-4299-ae5d-7d48d1e5ebe9/screenthumbnail", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.1, + "duration_ms": 3.65, "detail": "" }, { @@ -59687,12 +59761,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/vms/538adca8-b01e-4a5a-bd13-8c1cfa2167df/ticket", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.09, + "duration_ms": 4.3, "detail": "" }, { @@ -59700,12 +59774,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/vms/ff1ff12b-16f6-4776-b82e-8b83731af33b/logon", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.11, + "duration_ms": 6.2, "detail": "" }, { @@ -59713,12 +59787,12 @@ "operation_id": "vms.maintenance", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/vms/5c888c18-592a-4ed8-97ad-9aaafb196a88/maintenance", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.09, + "duration_ms": 6.89, "detail": "" }, { @@ -59726,12 +59800,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/vms/97db59c5-b406-4618-9854-d75372ff6920/preview_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.12, + "duration_ms": 3.87, "detail": "" }, { @@ -59739,12 +59813,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/vms/d7027e29-9e46-4501-a3f5-b0ce83cfbddd/commit_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 4.47, "detail": "" }, { @@ -59752,12 +59826,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/vms/6b969c66-2fa7-4e02-9dd3-0ccd79524ff9/undo_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.1, + "duration_ms": 4.25, "detail": "" }, { @@ -59765,12 +59839,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/vms/076de6c6-8d46-469d-a603-c8b554660b09/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.07, + "duration_ms": 5.12, "detail": "" }, { @@ -59778,12 +59852,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/vms/7aa31eb6-c23b-479c-a6b8-0846ed6dd86a/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.33, + "duration_ms": 6.36, "detail": "" }, { @@ -59796,7 +59870,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.39, "detail": "" }, { @@ -59807,9 +59881,9 @@ "path_resolved": "/ovirt-engine/api/vnicprofiles", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.84, + "duration_ms": 6.53, "detail": "" }, { @@ -59817,12 +59891,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/df2ad794-1123-4ddf-b41b-e9b828f49ae3", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 4.79, "detail": "" }, { @@ -59830,12 +59904,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/fab4e1e1-3ec5-4cfe-a2a9-a356c03acc22", + "path_resolved": "/ovirt-engine/api/vnicprofiles/4f263be9-263b-4b5b-8f82-c07bc18e8c7d", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 3.08, "detail": "" }, { @@ -59843,12 +59917,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/10727ceb-d76d-4934-bd37-7b32fe17317e", + "path_resolved": "/ovirt-engine/api/vnicprofiles/daff481c-3d94-4c64-9003-984780dec411", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 4.96, "detail": "" }, { @@ -59856,12 +59930,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/f876978e-73b1-4dba-9b89-bf42d2e67722/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.04, + "duration_ms": 4.5, "detail": "" }, { @@ -59869,12 +59943,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/4e8dcb06-6623-490a-97c3-e61a9ef9e9ec/diskattachments", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 3.49, + "duration_ms": 6.96, "detail": "" }, { @@ -59882,12 +59956,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/4b992a75-232a-400e-b9de-6fa4c529597d/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.69, + "duration_ms": 4.54, "detail": "" }, { @@ -59895,12 +59969,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/85747034-93b6-49de-a382-3f7d1c7ecf35/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.38, + "duration_ms": 6.39, "detail": "" }, { @@ -59908,12 +59982,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/f3b88987-4689-4f25-b7e4-6a8ea5aee5df/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.6, + "duration_ms": 60.71, "detail": "" }, { @@ -59921,12 +59995,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/8358ecb5-0ed2-44f9-8f32-69ebdfd32b83/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.32, + "duration_ms": 3.4, "detail": "" }, { @@ -59934,12 +60008,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/ed264946-1867-4bf9-99ab-7e03971c74e6/nics", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.16, + "duration_ms": 5.59, "detail": "" }, { @@ -59947,12 +60021,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/f936c284-9e3c-443e-9936-2c576515d126/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.7, + "duration_ms": 3.79, "detail": "" }, { @@ -59960,12 +60034,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/469a5f5c-c892-4111-8a67-cc42532c548e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/0156163f-d475-4a22-b4fd-a2b67e1d2865", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 2.97, "detail": "" }, { @@ -59973,12 +60047,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/2cc161eb-a869-406a-9f90-74765b9b014e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.28, + "duration_ms": 2.53, "detail": "" }, { @@ -59986,12 +60060,12 @@ "operation_id": "nics.activate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate", - "path_resolved": "/ovirt-engine/api/vms/9a029c37-4a7b-4cf7-8f22-d62281a7c110/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.56, + "duration_ms": 4.68, "detail": "" }, { @@ -59999,12 +60073,12 @@ "operation_id": "nics.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/vms/de454ece-1f3d-45c8-97de-439151c88e3c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.9, + "duration_ms": 2.94, "detail": "" }, { @@ -60012,12 +60086,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/2df311f8-b5b3-4c3f-8154-29a83c07dfd4/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.55, + "duration_ms": 2.27, "detail": "" }, { @@ -60025,12 +60099,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/070fe2de-e1fd-47b6-935d-78843896e968/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.73, + "duration_ms": 2.63, "detail": "" }, { @@ -60038,12 +60112,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/a5abd817-78c0-42e1-b78e-70b6dcc601a0/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.87, + "duration_ms": 2.13, "detail": "" }, { @@ -60051,12 +60125,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/9c733182-72cc-4363-8318-1904da5cfef5/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.01, + "duration_ms": 2.34, "detail": "" }, { @@ -60064,12 +60138,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/c7c8578b-82fb-4a46-b594-0814e302c762/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.42, + "duration_ms": 2.19, "detail": "" }, { @@ -60077,12 +60151,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/36207dad-ae73-4526-b549-58b52b93b3c6/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.3, + "duration_ms": 1.94, "detail": "" }, { @@ -60090,12 +60164,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/e2d10293-e9a2-42e5-a82f-4d400723ecdb/snapshots", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.59, + "duration_ms": 3.44, "detail": "" }, { @@ -60103,12 +60177,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/8f4a668e-0ee8-4682-9184-7ffb8bd3ac9a/snapshots/ea202650-2b72-4fa9-9efc-69268e5f2076", + "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": 1.11, + "duration_ms": 2.56, "detail": "" }, { @@ -60116,12 +60190,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/233fac11-73fd-47e2-a079-315162054f5f/snapshots/7a4d2238-d618-4dc8-ae50-84dafef0b337", + "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.12, + "duration_ms": 1.76, "detail": "" }, { @@ -60129,12 +60203,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/0c2ffcff-3828-4eac-ab26-d20aa8878c8e/snapshots/00617d6e-1415-4816-8cc8-00a3a4df1852", + "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": 1.41, + "duration_ms": 3.21, "detail": "" }, { @@ -60142,12 +60216,12 @@ "operation_id": "snapshots.restore", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore", - "path_resolved": "/ovirt-engine/api/vms/c3ff97cc-b0af-4f29-a5a8-b27a8e5ee88b/snapshots/fbab4a2f-03a5-4151-9513-4f6ccd8e5d88/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": 2.21, + "duration_ms": 3.97, "detail": "" }, { @@ -60155,12 +60229,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/daecb99d-8cc3-4d97-97e0-30ceb64e8712/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.67, + "duration_ms": 2.74, "detail": "" }, { @@ -60168,12 +60242,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/25edf7d6-7052-4ef1-8bb4-24133827e04e/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.4, + "duration_ms": 3.79, "detail": "" }, { @@ -60181,12 +60255,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/63383bbb-5f21-470e-aaa4-5e27a35aa523/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.2, + "duration_ms": 2.49, "detail": "" }, { @@ -60194,12 +60268,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/4ca79ffd-ad35-421a-a376-bc829e221c34/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.08, + "duration_ms": 2.5, "detail": "" }, { @@ -60207,12 +60281,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/986a44fe-42fb-45b7-8046-a41103bdf398/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.02, + "duration_ms": 2.27, "detail": "" }, { @@ -60220,12 +60294,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/72cc95ee-5970-4c23-85af-c641534b16ac/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": 1.35, + "duration_ms": 3.3, "detail": "" }, { @@ -60233,12 +60307,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/3569e1ec-42d2-4396-a7c2-ca758d9b58a8/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": 1.44, + "duration_ms": 3.21, "detail": "" }, { @@ -60246,12 +60320,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/af434f99-e081-41b4-843f-c92618f6401c/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.15, + "duration_ms": 2.36, "detail": "" }, { @@ -60259,12 +60333,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/d8933127-c4fe-4eea-9b2c-54bf7e58d5d3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.26, + "duration_ms": 3.18, "detail": "" }, { @@ -60272,12 +60346,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/40a31afd-37ba-4b38-b805-d5dc8345f272/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.24, + "duration_ms": 2.78, "detail": "" }, { @@ -60285,12 +60359,12 @@ "operation_id": "graphicsconsoles.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/1a7d3824-8f7b-4ca8-a85e-fd268f7ec23e/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.13, + "duration_ms": 3.84, "detail": "" }, { @@ -60298,12 +60372,12 @@ "operation_id": "graphicsconsoles.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/2a6ff784-52fd-4b72-8857-ef425b950c03/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": 1.38, + "duration_ms": 4.01, "detail": "" }, { @@ -60311,12 +60385,12 @@ "operation_id": "graphicsconsoles.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/ca1a1ddb-390f-4a37-baf5-7d039b9dd180/graphicsconsoles/a7929e01-da39-4e12-89a1-f53eb00847df", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/20ae3f8e-8ebe-4b3e-a86e-719e2e09af4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 2.83, "detail": "" }, { @@ -60324,12 +60398,12 @@ "operation_id": "graphicsconsoles.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/c2601d71-4b46-4928-bb1a-826e2a05c7e1/graphicsconsoles/a7929e01-da39-4e12-89a1-f53eb00847df", + "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": 1.36, + "duration_ms": 4.09, "detail": "" }, { @@ -60337,12 +60411,12 @@ "operation_id": "graphicsconsoles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/13887330-fab4-4c71-8000-27203decd5af/graphicsconsoles/a7929e01-da39-4e12-89a1-f53eb00847df", + "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": 1.17, + "duration_ms": 3.72, "detail": "" }, { @@ -60350,12 +60424,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/9faebed5-240f-4ee0-a5a2-f09dd25097a0/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.17, + "duration_ms": 3.56, "detail": "" }, { @@ -60363,12 +60437,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/d17e2b9b-61c5-4e01-83b2-e3c9ce9b9673/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.86, + "duration_ms": 4.27, "detail": "" }, { @@ -60376,12 +60450,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/6a1fd2a8-cdc3-47d8-86ad-03819361db36/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 2.99, "detail": "" }, { @@ -60389,12 +60463,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/46570e87-e338-41a4-9bb0-7c6d249d4e34/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.28, + "duration_ms": 3.77, "detail": "" }, { @@ -60402,12 +60476,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/3ac612f3-f83e-416e-bda2-c15f6b31ad5c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.11, + "duration_ms": 3.71, "detail": "" }, { @@ -60415,12 +60489,12 @@ "operation_id": "nics.update", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update", - "path_resolved": "/ovirt-engine/api/hosts/18d62d4a-24c9-4214-9d2b-98fca4bd15ee/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.71, + "duration_ms": 8.14, "detail": "" }, { @@ -60428,12 +60502,12 @@ "operation_id": "nics.attach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach", - "path_resolved": "/ovirt-engine/api/hosts/e192263f-20ae-406c-b379-76e8c3e1e4cf/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.75, + "duration_ms": 6.98, "detail": "" }, { @@ -60441,12 +60515,12 @@ "operation_id": "nics.detach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach", - "path_resolved": "/ovirt-engine/api/hosts/d0eedf7a-f1e5-4f4d-a105-ab67ee286259/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.72, + "duration_ms": 3.59, "detail": "" }, { @@ -60454,12 +60528,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/48ab437d-be3d-4f41-8e83-a5ec8aff870e/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.31, + "duration_ms": 2.79, "detail": "" }, { @@ -60467,12 +60541,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/ae9ffae7-fa52-42db-af14-2ba617ae842e/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.38, + "duration_ms": 3.81, "detail": "" }, { @@ -60480,12 +60554,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/9dcd9176-80d1-4ba7-ae4b-a2e8954db002/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.2, + "duration_ms": 4.29, "detail": "" }, { @@ -60493,12 +60567,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/e0555392-abeb-42a1-862e-5f4933ec86c3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.28, + "duration_ms": 4.22, "detail": "" }, { @@ -60506,12 +60580,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/8f9a66dd-f0a9-485d-969e-ead04a449349/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.12, + "duration_ms": 2.36, "detail": "" }, { @@ -60519,12 +60593,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/d91a6ed9-79d6-4a16-80eb-a4e7799fe25a/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.17, + "duration_ms": 3.31, "detail": "" }, { @@ -60532,12 +60606,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/2d3f6b29-d050-4cd4-ac55-28e8095d3bd4/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.47, + "duration_ms": 3.56, "detail": "" }, { @@ -60545,12 +60619,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/95ba0559-9cee-4844-ac55-939b9f546cde/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.17, + "duration_ms": 3.0, "detail": "" }, { @@ -60558,12 +60632,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/5d6d236c-72a5-496d-9a64-85a88aecf522/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.18, + "duration_ms": 6.07, "detail": "" }, { @@ -60571,12 +60645,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/065b5812-560e-4243-aa9f-bc943123a2c9/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.11, + "duration_ms": 4.41, "detail": "" }, { @@ -60584,12 +60658,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/964b6da9-a450-486b-8b1d-e07677341f80/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.11, + "duration_ms": 5.03, "detail": "" }, { @@ -60597,12 +60671,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/de744d32-a14c-4430-a351-b4ec71f4237b/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.43, + "duration_ms": 85.4, "detail": "" }, { @@ -60610,12 +60684,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/e1f4e4b1-2875-4cce-8467-57a7f07eefb2/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 6.16, "detail": "" }, { @@ -60623,12 +60697,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ab1e2fe8-219a-446b-971b-d70df9daabc5/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.35, + "duration_ms": 4.36, "detail": "" }, { @@ -60636,12 +60710,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/fa58d29c-bb76-4149-9cae-02b105b12451/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.11, + "duration_ms": 3.71, "detail": "" }, { @@ -60654,7 +60728,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 3.66, "detail": "" }, { @@ -60665,9 +60739,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.64, + "duration_ms": 3.01, "detail": "" }, { @@ -60675,12 +60749,12 @@ "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/451f39af-c3fb-4d23-8f96-30b2fe34cf0a", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9dd9071f-db77-4dad-bd0f-99d6ae6592fe", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 2.38, "detail": "" }, { @@ -60688,12 +60762,12 @@ "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/c8a93131-ed89-4757-b2d3-03313c47dfa4", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/4288da36-698d-4ca8-b622-233bae5361e0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 3.2, "detail": "" }, { @@ -60701,12 +60775,12 @@ "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/f6c9435d-dd29-462c-9b88-f1e2c7a06066", + "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": 1.13, + "duration_ms": 2.52, "detail": "" }, { @@ -60717,9 +60791,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 2.7, "detail": "" }, { @@ -60730,9 +60804,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 1.71, + "duration_ms": 2.53, "detail": "" }, { @@ -60740,12 +60814,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 2.46, "detail": "" }, { @@ -60753,12 +60827,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "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": 1.56, + "duration_ms": 2.26, "detail": "" }, { @@ -60766,12 +60840,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "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": 1.02, + "duration_ms": 2.49, "detail": "" }, { @@ -60784,7 +60858,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 6.61, "detail": "" }, { @@ -60797,7 +60871,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.31, + "duration_ms": 4.73, "detail": "" }, { @@ -60810,7 +60884,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 3.16, "detail": "" }, { @@ -60823,7 +60897,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 3.3, "detail": "" }, { @@ -60831,12 +60905,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.0, + "duration_ms": 3.32, "detail": "" }, { @@ -60849,7 +60923,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 4.02, "detail": "" }, { @@ -60862,7 +60936,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 0.93, + "duration_ms": 3.12, "detail": "" }, { @@ -60873,9 +60947,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 3.97, "detail": "" }, { @@ -60883,12 +60957,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 0.97, + "duration_ms": 2.7, "detail": "" }, { @@ -60896,12 +60970,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.02, + "duration_ms": 2.16, "detail": "" }, { @@ -60914,7 +60988,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.39, + "duration_ms": 4.79, "detail": "" }, { @@ -60927,7 +61001,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.85, + "duration_ms": 3.41, "detail": "" }, { @@ -60938,9 +61012,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 4.13, "detail": "" }, { @@ -60951,9 +61025,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.03, + "duration_ms": 3.09, "detail": "" }, { @@ -60964,9 +61038,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 2.71, "detail": "" }, { @@ -60974,12 +61048,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 1.02, + "duration_ms": 2.02, "detail": "" }, { @@ -60987,12 +61061,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/ab34506d-e375-4911-bb6b-956df3560171", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 3.47, "detail": "" }, { @@ -61003,9 +61077,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 0.96, + "duration_ms": 2.78, "detail": "" }, { @@ -61016,9 +61090,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 0.97, + "duration_ms": 2.48, "detail": "" }, { @@ -61026,12 +61100,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 3.97, "detail": "" }, { @@ -61039,12 +61113,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "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": 0.98, + "duration_ms": 3.43, "detail": "" }, { @@ -61052,12 +61126,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/f3786efc-5881-4232-a5d9-1fd691557785", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 8.07, "detail": "" }, { @@ -61070,7 +61144,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 4.67, "detail": "" }, { @@ -61083,7 +61157,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.26, + "duration_ms": 5.08, "detail": "" }, { @@ -61091,12 +61165,12 @@ "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/ca457762-f57a-4520-86cf-b433b562a2fe", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 4.13, "detail": "" }, { @@ -61104,12 +61178,12 @@ "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/ca457762-f57a-4520-86cf-b433b562a2fe", + "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": 1.29, + "duration_ms": 5.0, "detail": "" }, { @@ -61117,12 +61191,12 @@ "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/ca457762-f57a-4520-86cf-b433b562a2fe", + "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": 1.16, + "duration_ms": 4.25, "detail": "" }, { @@ -61135,7 +61209,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 4.18, "detail": "" }, { @@ -61148,7 +61222,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.29, + "duration_ms": 4.24, "detail": "" }, { @@ -61161,7 +61235,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 4.01, "detail": "" }, { @@ -61174,7 +61248,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 4.99, "detail": "" }, { @@ -61182,12 +61256,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.07, + "duration_ms": 4.68, "detail": "" }, { @@ -61195,12 +61269,12 @@ "operation_id": "vnicprofiles.list", "method": "GET", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/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.14, + "duration_ms": 4.93, "detail": "" }, { @@ -61208,12 +61282,12 @@ "operation_id": "vnicprofiles.add", "method": "POST", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/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.95, + "duration_ms": 5.66, "detail": "" }, { @@ -61221,12 +61295,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/vnicprofiles/4085c207-ad7c-404d-8359-70a12b8b3aa9", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.14, + "duration_ms": 3.84, "detail": "" }, { @@ -61234,12 +61308,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/vnicprofiles/35a3865c-f172-4c41-bf17-ca221122b8c1", + "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": 2.89, + "duration_ms": 3.8, "detail": "" }, { @@ -61247,12 +61321,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/vnicprofiles/0b3edd28-9b81-4526-b8e6-b70654bb6c77", + "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": 2.82, + "duration_ms": 5.19, "detail": "" }, { @@ -61265,7 +61339,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 4.21, "detail": "" }, { @@ -61278,7 +61352,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.42, + "duration_ms": 6.48, "detail": "" }, { @@ -61291,7 +61365,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.34, + "duration_ms": 3.68, "detail": "" }, { @@ -61304,7 +61378,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.99, + "duration_ms": 3.99, "detail": "" }, { @@ -61312,12 +61386,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.57, + "duration_ms": 3.58, "detail": "" }, { @@ -61330,7 +61404,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 3.63, "detail": "" }, { @@ -61343,7 +61417,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.47, + "duration_ms": 5.64, "detail": "" }, { @@ -61356,7 +61430,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 3.71, "detail": "" }, { @@ -61369,7 +61443,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.91, + "duration_ms": 4.68, "detail": "" }, { @@ -61377,12 +61451,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 2.76, + "duration_ms": 3.53, "detail": "" }, { @@ -61395,7 +61469,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.01, + "duration_ms": 4.1, "detail": "" }, { @@ -61408,7 +61482,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.24, + "duration_ms": 5.62, "detail": "" }, { @@ -61419,9 +61493,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.31, + "duration_ms": 4.56, "detail": "" }, { @@ -61429,12 +61503,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 3.04, + "duration_ms": 4.04, "detail": "" }, { @@ -61442,12 +61516,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 4.86, + "duration_ms": 3.77, "detail": "" }, { @@ -61460,7 +61534,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.98, + "duration_ms": 5.3, "detail": "" }, { @@ -61473,7 +61547,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.82, + "duration_ms": 4.81, "detail": "" }, { @@ -61486,7 +61560,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.79, + "duration_ms": 3.57, "detail": "" }, { @@ -61499,7 +61573,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.09, + "duration_ms": 8.07, "detail": "" }, { @@ -61507,12 +61581,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 7.45, + "duration_ms": 3.8, "detail": "" }, { @@ -61520,12 +61594,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/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": 4.88, + "duration_ms": 5.25, "detail": "" }, { @@ -61533,12 +61607,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/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": 5.92, + "duration_ms": 3.58, "detail": "" }, { @@ -61546,12 +61620,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/steps/56cc4c40-0a39-4062-95de-06eb4211d814", + "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.16, + "duration_ms": 3.7, "detail": "" }, { @@ -61559,12 +61633,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/steps/1ee55ddc-e738-4f84-ba2f-305e36e12138", + "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": 2.27, + "duration_ms": 3.12, "detail": "" }, { @@ -61572,12 +61646,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/steps/0737fd0f-3519-498c-ae4c-f567c5df7808", + "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": 1.41, + "duration_ms": 2.99, "detail": "" }, { @@ -61590,7 +61664,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.21, + "duration_ms": 8.33, "detail": "" }, { @@ -61603,7 +61677,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 4.03, "detail": "" }, { @@ -61616,7 +61690,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.71, + "duration_ms": 4.44, "detail": "" }, { @@ -61627,9 +61701,9 @@ "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 4.59, "detail": "" }, { @@ -61637,12 +61711,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v3/bookmarks/15b7ff97-a565-4160-ad0c-5710da8388f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 3.61, "detail": "" }, { @@ -61650,12 +61724,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v3/bookmarks/d7bbc03b-3f23-472a-bf12-71fd073c68ac", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 3.4, "detail": "" }, { @@ -61668,7 +61742,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 3.04, "detail": "" }, { @@ -61681,7 +61755,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 2.81, "detail": "" }, { @@ -61692,9 +61766,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 2.39, "detail": "" }, { @@ -61702,12 +61776,12 @@ "operation_id": "clusterlevels.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/v3/clusterlevels/103abd11-b58d-4b74-a802-ece78e682a42", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 2.76, "detail": "" }, { @@ -61715,12 +61789,12 @@ "operation_id": "clusterlevels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/v3/clusterlevels/06025c54-b3e6-4651-9ac4-24468a831551", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 6.85, "detail": "" }, { @@ -61733,7 +61807,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 4.65, "detail": "" }, { @@ -61746,7 +61820,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.3, + "duration_ms": 6.65, "detail": "" }, { @@ -61757,9 +61831,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 3.86, "detail": "" }, { @@ -61767,12 +61841,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/clusters/046b4017-e4fb-443e-8a05-27596cdce9ca", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 4.04, "detail": "" }, { @@ -61780,12 +61854,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/clusters/a46f772e-93a5-46e5-9d68-69c64d2de235", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 3.9, "detail": "" }, { @@ -61798,7 +61872,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.27, + "duration_ms": 5.33, "detail": "" }, { @@ -61811,7 +61885,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.29, + "duration_ms": 5.09, "detail": "" }, { @@ -61824,7 +61898,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.95, + "duration_ms": 6.12, "detail": "" }, { @@ -61837,7 +61911,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.84, + "duration_ms": 5.54, "detail": "" }, { @@ -61850,7 +61924,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 3.45, "detail": "" }, { @@ -61863,7 +61937,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.74, + "duration_ms": 5.47, "detail": "" }, { @@ -61874,9 +61948,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.1, "detail": "" }, { @@ -61884,12 +61958,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/d3277a1f-7f52-409b-8410-8084453ee59c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 8.72, "detail": "" }, { @@ -61897,12 +61971,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v3/datacenters/8154c197-4edd-467c-9c17-a157d78e287e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 6.55, "detail": "" }, { @@ -61915,7 +61989,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.02, + "duration_ms": 8.86, "detail": "" }, { @@ -61928,7 +62002,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 7.73, "detail": "" }, { @@ -61941,7 +62015,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.65, + "duration_ms": 13.48, "detail": "" }, { @@ -61952,9 +62026,9 @@ "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 5.79, "detail": "" }, { @@ -61962,12 +62036,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/disks/{id}", - "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v3/disks/e23b4689-1bd3-4eb3-83bb-95c64d606b05", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.12, + "duration_ms": 4.41, "detail": "" }, { @@ -61975,12 +62049,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/disks/{id}", - "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v3/disks/47781128-c4be-414c-9aad-accf0d4f085f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.84, + "duration_ms": 7.09, "detail": "" }, { @@ -61993,7 +62067,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.21, + "duration_ms": 9.51, "detail": "" }, { @@ -62006,7 +62080,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.14, + "duration_ms": 7.15, "detail": "" }, { @@ -62019,7 +62093,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.16, + "duration_ms": 6.86, "detail": "" }, { @@ -62032,7 +62106,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.04, + "duration_ms": 9.24, "detail": "" }, { @@ -62045,7 +62119,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 5.88, "detail": "" }, { @@ -62058,7 +62132,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.17, + "duration_ms": 3.88, "detail": "" }, { @@ -62071,7 +62145,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 3.28, "detail": "" }, { @@ -62084,7 +62158,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 4.36, "detail": "" }, { @@ -62092,12 +62166,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/domains/{id}", - "path_resolved": "/ovirt-engine/api/v3/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/v3/domains/389a41df-d508-454a-93d9-11aab7c4a8d0", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 3.95, "detail": "" }, { @@ -62110,7 +62184,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 5.36, "detail": "" }, { @@ -62123,7 +62197,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.19, + "duration_ms": 4.56, "detail": "" }, { @@ -62131,12 +62205,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1111", + "path_resolved": "/ovirt-engine/api/v3/events/54", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 5.33, "detail": "" }, { @@ -62144,12 +62218,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1111", + "path_resolved": "/ovirt-engine/api/v3/events/54", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.58, "detail": "" }, { @@ -62157,12 +62231,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1111", + "path_resolved": "/ovirt-engine/api/v3/events/7f5932e8-0bc0-4b00-bf9f-1fde8f8133b0", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 5.6, "detail": "" }, { @@ -62175,7 +62249,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.65, "detail": "" }, { @@ -62188,7 +62262,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.86, + "duration_ms": 3.6, "detail": "" }, { @@ -62199,9 +62273,9 @@ "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.73, "detail": "" }, { @@ -62209,12 +62283,12 @@ "operation_id": "externalhostproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/85e723e9-7da3-4188-9fae-e1589e4d6cbe", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 4.52, "detail": "" }, { @@ -62222,12 +62296,12 @@ "operation_id": "externalhostproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/3ef035b6-a57d-447d-9f2e-9b4cd3e42a8e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 5.28, "detail": "" }, { @@ -62240,7 +62314,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 3.66, "detail": "" }, { @@ -62253,7 +62327,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 6.26, "detail": "" }, { @@ -62264,9 +62338,9 @@ "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 4.97, "detail": "" }, { @@ -62274,12 +62348,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/groups/{id}", - "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v3/groups/212ba20e-76f7-4270-a16e-b9d1f8e27972", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 4.85, "detail": "" }, { @@ -62287,12 +62361,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/groups/{id}", - "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v3/groups/f37b2847-4ba5-4d5a-8890-790f8c1ea3c7", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 5.0, "detail": "" }, { @@ -62305,7 +62379,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 2.96, "detail": "" }, { @@ -62318,7 +62392,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.12, + "duration_ms": 5.02, "detail": "" }, { @@ -62326,12 +62400,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/518816dd-a9b8-4329-9388-6bb404dad25a", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 3.03, "detail": "" }, { @@ -62339,12 +62413,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/4a18f8fe-ca12-4d17-a10f-118029ce63cf", + "path_resolved": "/ovirt-engine/api/v3/hosts/4e937b23-75e7-4964-ac25-9c9def86e471", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 3.14, "detail": "" }, { @@ -62352,12 +62426,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/08e18cc8-458d-407d-9374-934ff847c33e", + "path_resolved": "/ovirt-engine/api/v3/hosts/a398d63e-d536-49de-bbfd-1a07163f1b58", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 3.43, "detail": "" }, { @@ -62365,12 +62439,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/v3/hosts/3bdf1ea4-ac4d-4e46-a1ce-3fd6a83efde4/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": 2.1, + "duration_ms": 4.81, "detail": "" }, { @@ -62378,12 +62452,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/v3/hosts/03867bd7-ede5-4884-b7ca-62e8ec871c72/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": 2.65, + "duration_ms": 8.37, "detail": "" }, { @@ -62391,12 +62465,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/v3/hosts/02abd8cb-9295-4f42-b257-641486df94e7/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.25, + "duration_ms": 6.71, "detail": "" }, { @@ -62404,12 +62478,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/v3/hosts/1e4810e8-1416-4a67-8a4b-09ad8cf00a41/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.11, + "duration_ms": 4.82, "detail": "" }, { @@ -62417,12 +62491,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/v3/hosts/42d2ddf2-7704-4f99-bdd4-dcbf726edc84/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": 2.01, + "duration_ms": 4.56, "detail": "" }, { @@ -62430,12 +62504,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/v3/hosts/4f96728e-b7d5-480b-b09c-aab17414edd2/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": 1.98, + "duration_ms": 5.05, "detail": "" }, { @@ -62443,12 +62517,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/v3/hosts/06753bbd-0965-4e9b-ba80-21b9214ae33f/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.61, + "duration_ms": 3.65, "detail": "" }, { @@ -62456,12 +62530,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/v3/hosts/c84cb398-b3d5-48c7-a428-55c542b8d6f0/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.62, + "duration_ms": 3.29, "detail": "" }, { @@ -62469,12 +62543,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/v3/hosts/65419b90-b249-4e54-a116-4f54c46c491c/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": 1.89, + "duration_ms": 3.31, "detail": "" }, { @@ -62482,12 +62556,12 @@ "operation_id": "hosts.unregisteredstoragedomainsdiscover", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/v3/hosts/428ddef1-34c6-48e7-b455-c51de4b33aac/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": 1.92, + "duration_ms": 3.86, "detail": "" }, { @@ -62495,12 +62569,12 @@ "operation_id": "hosts.upgrade", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgrade", - "path_resolved": "/ovirt-engine/api/v3/hosts/9d77fa92-175f-4bce-ab7c-8dc697feca29/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": 1.85, + "duration_ms": 3.86, "detail": "" }, { @@ -62508,12 +62582,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/v3/hosts/f3056081-af72-44b1-8111-eb8a38f8c925/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": 1.76, + "duration_ms": 3.43, "detail": "" }, { @@ -62526,7 +62600,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 2.13, "detail": "" }, { @@ -62539,7 +62613,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.36, + "duration_ms": 2.32, "detail": "" }, { @@ -62550,9 +62624,9 @@ "path_resolved": "/ovirt-engine/api/v3/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 2.01, "detail": "" }, { @@ -62560,12 +62634,12 @@ "operation_id": "icons.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/icons/{id}", - "path_resolved": "/ovirt-engine/api/v3/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/v3/icons/8ae0bb7e-0256-4462-8dfe-1cd7fb623254", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 2.59, "detail": "" }, { @@ -62573,12 +62647,12 @@ "operation_id": "icons.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/icons/{id}", - "path_resolved": "/ovirt-engine/api/v3/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/v3/icons/8c91da90-37c2-40c5-a7d7-9394a60146a1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 2.39, "detail": "" }, { @@ -62591,7 +62665,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 3.08, "detail": "" }, { @@ -62604,7 +62678,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.37, + "duration_ms": 2.3, "detail": "" }, { @@ -62615,9 +62689,9 @@ "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 2.26, "detail": "" }, { @@ -62625,12 +62699,12 @@ "operation_id": "instancetypes.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/v3/instancetypes/70a36642-9895-4fb0-ae6c-90c1b6e0758c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.93, "detail": "" }, { @@ -62638,12 +62712,12 @@ "operation_id": "instancetypes.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/v3/instancetypes/51d67aeb-ad9f-4cfb-94a0-541d60823ecd", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 2.65, "detail": "" }, { @@ -62656,7 +62730,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 3.85, "detail": "" }, { @@ -62669,7 +62743,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.09, + "duration_ms": 2.31, "detail": "" }, { @@ -62677,12 +62751,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad", + "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 2.03, "detail": "" }, { @@ -62690,12 +62764,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad", + "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 2.99, "detail": "" }, { @@ -62703,12 +62777,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad", + "path_resolved": "/ovirt-engine/api/v3/jobs/92741a45-6ba8-46cf-b6ac-be8b195dbe65", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 3.86, "detail": "" }, { @@ -62721,7 +62795,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 2.77, "detail": "" }, { @@ -62734,7 +62808,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 2.61, "detail": "" }, { @@ -62742,12 +62816,12 @@ "operation_id": "katelloerrata.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v3/katelloerrata/90644bd3-f10a-4344-a7eb-374ce8fd6370", + "path_resolved": "/ovirt-engine/api/v3/katelloerrata/26df5a2c-3732-4d5c-a82f-e8d6c1c8aa21", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.9, + "duration_ms": 2.37, "detail": "" }, { @@ -62755,12 +62829,12 @@ "operation_id": "katelloerrata.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v3/katelloerrata/90644bd3-f10a-4344-a7eb-374ce8fd6370", + "path_resolved": "/ovirt-engine/api/v3/katelloerrata/f4d8096f-9f9e-41d2-977d-31889d9c8ad5", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 2.64, "detail": "" }, { @@ -62768,12 +62842,12 @@ "operation_id": "katelloerrata.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v3/katelloerrata/90644bd3-f10a-4344-a7eb-374ce8fd6370", + "path_resolved": "/ovirt-engine/api/v3/katelloerrata/11c130aa-ce92-4f87-8f03-57c170f12355", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 2.3, "detail": "" }, { @@ -62786,7 +62860,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 2.26, "detail": "" }, { @@ -62799,7 +62873,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.99, + "duration_ms": 2.85, "detail": "" }, { @@ -62810,9 +62884,9 @@ "path_resolved": "/ovirt-engine/api/v3/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 2.21, "detail": "" }, { @@ -62820,12 +62894,12 @@ "operation_id": "macpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/macpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/v3/macpools/b6fc88ab-6244-4d62-8843-dea79ad6fda0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 5.84, "detail": "" }, { @@ -62833,12 +62907,12 @@ "operation_id": "macpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/macpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/v3/macpools/8f113ee9-6b4b-4b88-9c2d-e94c0b09fd64", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 2.45, "detail": "" }, { @@ -62851,7 +62925,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 2.11, "detail": "" }, { @@ -62864,7 +62938,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.73, + "duration_ms": 2.29, "detail": "" }, { @@ -62872,12 +62946,12 @@ "operation_id": "networkfilters.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v3/networkfilters/e1935c5d-51a0-4cc9-be19-7c1b09fb8802", + "path_resolved": "/ovirt-engine/api/v3/networkfilters/f2cb2f7b-b4ed-47ce-bcbc-b5015ff9a741", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.13, "detail": "" }, { @@ -62885,12 +62959,12 @@ "operation_id": "networkfilters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v3/networkfilters/e1935c5d-51a0-4cc9-be19-7c1b09fb8802", + "path_resolved": "/ovirt-engine/api/v3/networkfilters/42ef103a-4a84-4be7-9695-13a968d81b41", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 2.4, "detail": "" }, { @@ -62898,12 +62972,12 @@ "operation_id": "networkfilters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v3/networkfilters/e1935c5d-51a0-4cc9-be19-7c1b09fb8802", + "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.72, + "duration_ms": 2.05, "detail": "" }, { @@ -62916,7 +62990,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.3, + "duration_ms": 2.16, "detail": "" }, { @@ -62929,7 +63003,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 7.46, + "duration_ms": 2.73, "detail": "" }, { @@ -62937,12 +63011,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.68, + "duration_ms": 2.05, "detail": "" }, { @@ -62950,12 +63024,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/v3/networks/f9d86b68-55f6-4bd2-a85d-9e72aafd009a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.16, + "duration_ms": 2.43, "detail": "" }, { @@ -62963,12 +63037,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "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.58, + "duration_ms": 2.52, "detail": "" }, { @@ -62981,7 +63055,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.1, + "duration_ms": 1.96, "detail": "" }, { @@ -62994,7 +63068,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.91, + "duration_ms": 2.39, "detail": "" }, { @@ -63005,9 +63079,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.64, + "duration_ms": 2.9, "detail": "" }, { @@ -63015,12 +63089,12 @@ "operation_id": "openstackimageproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/e94784a4-0c2d-4a66-8102-47a21fb0b9b3", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.06, + "duration_ms": 2.51, "detail": "" }, { @@ -63028,12 +63102,12 @@ "operation_id": "openstackimageproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "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.04, + "duration_ms": 2.12, "detail": "" }, { @@ -63046,7 +63120,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.37, + "duration_ms": 1.86, "detail": "" }, { @@ -63059,7 +63133,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.34, + "duration_ms": 2.36, "detail": "" }, { @@ -63070,9 +63144,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.88, + "duration_ms": 1.82, "detail": "" }, { @@ -63080,12 +63154,12 @@ "operation_id": "openstacknetworkproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/03f936d4-7d1f-4d30-a923-a149df8e4745", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.0, + "duration_ms": 2.82, "detail": "" }, { @@ -63093,12 +63167,12 @@ "operation_id": "openstacknetworkproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "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.58, + "duration_ms": 2.47, "detail": "" }, { @@ -63111,7 +63185,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 7.5, + "duration_ms": 2.16, "detail": "" }, { @@ -63124,7 +63198,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 5.58, + "duration_ms": 2.27, "detail": "" }, { @@ -63135,9 +63209,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.29, + "duration_ms": 1.94, "detail": "" }, { @@ -63145,12 +63219,12 @@ "operation_id": "openstackvolumeproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/fa01d5b6-e7c7-432a-9b7d-45452e9a0e4b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 6.58, + "duration_ms": 2.19, "detail": "" }, { @@ -63158,12 +63232,12 @@ "operation_id": "openstackvolumeproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/ef6aba81-7fa8-484f-b95c-576a43c7088a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.48, + "duration_ms": 2.08, "detail": "" }, { @@ -63176,7 +63250,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.28, + "duration_ms": 1.92, "detail": "" }, { @@ -63189,7 +63263,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.49, + "duration_ms": 2.29, "detail": "" }, { @@ -63197,12 +63271,12 @@ "operation_id": "operatingsystems.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v3/operatingsystems/e7a49e06-4414-4dd3-b252-c3e24a06c909", + "path_resolved": "/ovirt-engine/api/v3/operatingsystems/17415db0-2d19-4450-a6e0-ca1e12a7f2bf", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.18, + "duration_ms": 1.84, "detail": "" }, { @@ -63210,12 +63284,12 @@ "operation_id": "operatingsystems.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v3/operatingsystems/e7a49e06-4414-4dd3-b252-c3e24a06c909", + "path_resolved": "/ovirt-engine/api/v3/operatingsystems/c545dee3-28f4-4493-9d51-057582d5a99d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.6, + "duration_ms": 2.35, "detail": "" }, { @@ -63223,12 +63297,12 @@ "operation_id": "operatingsystems.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v3/operatingsystems/e7a49e06-4414-4dd3-b252-c3e24a06c909", + "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.21, + "duration_ms": 2.25, "detail": "" }, { @@ -63241,7 +63315,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.37, + "duration_ms": 2.36, "detail": "" }, { @@ -63254,7 +63328,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.97, + "duration_ms": 1.77, "detail": "" }, { @@ -63267,7 +63341,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.29, + "duration_ms": 2.11, "detail": "" }, { @@ -63280,7 +63354,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 1.79, "detail": "" }, { @@ -63288,12 +63362,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.49, + "duration_ms": 1.69, "detail": "" }, { @@ -63306,7 +63380,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 2.13, "detail": "" }, { @@ -63319,7 +63393,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.98, + "duration_ms": 3.0, "detail": "" }, { @@ -63330,9 +63404,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 1.99, "detail": "" }, { @@ -63340,12 +63414,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/roles/{id}", - "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v3/roles/388f6be5-b1ce-4ca9-8341-b850f79ddb04", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 2.34, "detail": "" }, { @@ -63353,12 +63427,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/roles/{id}", - "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v3/roles/d4813743-2dad-4a9a-aadb-e8e96d9614cb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.34, "detail": "" }, { @@ -63371,7 +63445,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 4.07, "detail": "" }, { @@ -63384,7 +63458,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.92, + "duration_ms": 2.14, "detail": "" }, { @@ -63395,9 +63469,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 1.84, "detail": "" }, { @@ -63405,12 +63479,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/c371beca-357f-4e27-ae81-8735d7dc2f16", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 2.4, "detail": "" }, { @@ -63418,12 +63492,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/a4f82b67-64b3-487d-abe7-60303f721cf1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.07, "detail": "" }, { @@ -63436,7 +63510,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 1.98, "detail": "" }, { @@ -63449,7 +63523,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.15, + "duration_ms": 2.27, "detail": "" }, { @@ -63460,9 +63534,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 1.91, "detail": "" }, { @@ -63470,12 +63544,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/19f2aa7a-1500-4cc9-9a74-6b24f2c3e123", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.21, "detail": "" }, { @@ -63483,12 +63557,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/f65f6404-4ea0-485d-91a7-bc125844e0b9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 2.04, "detail": "" }, { @@ -63501,7 +63575,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 2.19, "detail": "" }, { @@ -63514,7 +63588,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.34, + "duration_ms": 2.58, "detail": "" }, { @@ -63522,12 +63596,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/9e470bf3-f5ae-4667-80bd-575ce6801b91", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/64eb0822-b478-4829-896b-d7361a773079", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 2.01, "detail": "" }, { @@ -63535,12 +63609,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/9e470bf3-f5ae-4667-80bd-575ce6801b91", + "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.46, + "duration_ms": 1.83, "detail": "" }, { @@ -63548,12 +63622,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/9e470bf3-f5ae-4667-80bd-575ce6801b91", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/dd3cd48e-9c21-4d2b-b9bf-60e4497c63bf", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 2.07, "detail": "" }, { @@ -63566,7 +63640,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 1.96, "detail": "" }, { @@ -63579,7 +63653,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.42, + "duration_ms": 3.55, "detail": "" }, { @@ -63590,9 +63664,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 2.01, "detail": "" }, { @@ -63600,12 +63674,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v3/storagedomains/9db82db4-31c4-43b1-a957-86be2cedd526", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 2.21, "detail": "" }, { @@ -63613,12 +63687,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v3/storagedomains/3e2cc4ef-df9a-4203-975a-0c8182dc6cd2", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 2.28, "detail": "" }, { @@ -63631,7 +63705,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.83, + "duration_ms": 2.89, "detail": "" }, { @@ -63644,7 +63718,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.68, + "duration_ms": 2.73, "detail": "" }, { @@ -63657,7 +63731,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 2.18, "detail": "" }, { @@ -63670,7 +63744,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.15, + "duration_ms": 2.45, "detail": "" }, { @@ -63681,9 +63755,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.34, + "duration_ms": 1.9, "detail": "" }, { @@ -63691,12 +63765,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v3/tags/e9fab6e6-d82f-4167-982c-6e7ad1ea5f3d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 2.3, "detail": "" }, { @@ -63704,12 +63778,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v3/tags/78ba9520-8fc5-4078-a303-3373f2151912", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.93, + "duration_ms": 2.25, "detail": "" }, { @@ -63722,7 +63796,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.2, + "duration_ms": 2.09, "detail": "" }, { @@ -63735,7 +63809,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.54, + "duration_ms": 2.81, "detail": "" }, { @@ -63746,9 +63820,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.66, + "duration_ms": 1.95, "detail": "" }, { @@ -63756,12 +63830,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/templates/{id}", - "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "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.84, + "duration_ms": 1.78, "detail": "" }, { @@ -63769,12 +63843,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/templates/{id}", - "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v3/templates/1236e1d2-8dc2-423e-b24c-079b94633cd9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.05, + "duration_ms": 3.27, "detail": "" }, { @@ -63787,7 +63861,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.08, + "duration_ms": 2.83, "detail": "" }, { @@ -63800,7 +63874,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.57, + "duration_ms": 2.06, "detail": "" }, { @@ -63813,7 +63887,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 1.74, "detail": "" }, { @@ -63826,7 +63900,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 2.09, "detail": "" }, { @@ -63839,7 +63913,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 1.86, "detail": "" }, { @@ -63847,12 +63921,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/users/{id}", - "path_resolved": "/ovirt-engine/api/v3/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "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.89, + "duration_ms": 1.81, "detail": "" }, { @@ -63865,7 +63939,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.93, + "duration_ms": 2.17, "detail": "" }, { @@ -63878,7 +63952,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.2, + "duration_ms": 3.41, "detail": "" }, { @@ -63889,9 +63963,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.88, + "duration_ms": 1.78, "detail": "" }, { @@ -63899,12 +63973,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v3/vmpools/616dd6a2-cf67-4e75-9dfc-6fb3bff3e960", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.91, + "duration_ms": 2.43, "detail": "" }, { @@ -63912,12 +63986,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "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.23, + "duration_ms": 2.06, "detail": "" }, { @@ -63930,7 +64004,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.21, + "duration_ms": 2.13, "detail": "" }, { @@ -63943,7 +64017,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 5.16, + "duration_ms": 4.55, "detail": "" }, { @@ -63951,12 +64025,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/72c25047-f95e-4e1d-bb26-4f0f7abd4998", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.17, + "duration_ms": 2.12, "detail": "" }, { @@ -63964,12 +64038,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/71154bb6-bfb1-465a-8a3e-a83db32658c8", + "path_resolved": "/ovirt-engine/api/v3/vms/0e3fe926-4651-4d69-a365-61e5150b0089", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 2.65, "detail": "" }, { @@ -63977,12 +64051,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/16d6c625-9061-48f5-9830-c54232e13190", + "path_resolved": "/ovirt-engine/api/v3/vms/3a9a548a-be30-4dc7-8cdc-8599e605bd02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 3.48, "detail": "" }, { @@ -63990,12 +64064,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/v3/vms/bdd93f4c-02a8-42ce-9bb0-508f7be3bbc9/start", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 3.88, "detail": "" }, { @@ -64003,12 +64077,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/v3/vms/f4f9f8f1-a258-4ed6-81c7-d2a24bc45374/stop", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.51, + "duration_ms": 3.82, "detail": "" }, { @@ -64016,12 +64090,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/v3/vms/c86fdb0e-a064-489e-90b1-439580932d02/shutdown", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.88, + "duration_ms": 4.52, "detail": "" }, { @@ -64029,12 +64103,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/v3/vms/ddf43b0b-a11a-4d13-8754-99c1cfbb56c8/reboot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 5.14, "detail": "" }, { @@ -64042,12 +64116,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/v3/vms/d4815020-b133-4df4-b5ca-015477cdc8a5/suspend", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.82, + "duration_ms": 3.16, "detail": "" }, { @@ -64055,12 +64129,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/v3/vms/c28f1519-724b-4a95-a56d-ac552bfeae59/migrate", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.76, + "duration_ms": 3.62, "detail": "" }, { @@ -64068,12 +64142,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/v3/vms/13839308-131f-49ce-9eec-08b45cf0b5fb/cancelmigration", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.66, + "duration_ms": 3.2, "detail": "" }, { @@ -64081,12 +64155,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/v3/vms/b0e859f6-bc39-4674-a2cd-254ef94b6808/clone", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 409, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 2.3, "detail": "" }, { @@ -64094,12 +64168,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/v3/vms/9120adf9-903d-48af-9750-3d1e6e510c35/export", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.65, + "duration_ms": 3.03, "detail": "" }, { @@ -64107,12 +64181,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/v3/vms/35385fd4-2f83-4838-80b0-899340591e76/detach", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.98, + "duration_ms": 2.86, "detail": "" }, { @@ -64120,12 +64194,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/v3/vms/27d5a1ca-ed35-42e7-830b-d27ba6a96d98/screenthumbnail", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.81, + "duration_ms": 2.81, "detail": "" }, { @@ -64133,12 +64207,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/v3/vms/c60dfb6b-0737-4b71-b4d8-d20e3cfc8de4/ticket", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 3.27, "detail": "" }, { @@ -64146,12 +64220,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/v3/vms/80746fa9-f1f3-4e2a-a01a-45e2d173087f/logon", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 3.02, "detail": "" }, { @@ -64159,12 +64233,12 @@ "operation_id": "vms.maintenance", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/v3/vms/4bdae04d-f73c-43c6-9d72-c1aa40d09195/maintenance", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 3.03, "detail": "" }, { @@ -64172,12 +64246,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/a24a28b3-7ac0-4339-bb04-32ebdceb9e5b/preview_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.77, + "duration_ms": 2.8, "detail": "" }, { @@ -64185,12 +64259,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/d3773d0f-b25e-4f8c-90c9-c838c2bd3342/commit_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.7, + "duration_ms": 2.96, "detail": "" }, { @@ -64198,12 +64272,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/v3/vms/d439033a-51f0-4fa8-a6c0-b0127c898b83/undo_snapshot", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.81, + "duration_ms": 2.79, "detail": "" }, { @@ -64211,12 +64285,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/v3/vms/39e64061-0de2-435b-80fb-60c3ce5679d6/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.72, + "duration_ms": 3.17, "detail": "" }, { @@ -64224,12 +64298,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/v3/vms/89bc8354-8040-475b-864e-233370bce18e/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.85, + "duration_ms": 5.27, "detail": "" }, { @@ -64242,7 +64316,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.09, + "duration_ms": 2.16, "detail": "" }, { @@ -64255,7 +64329,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.93, + "duration_ms": 3.08, "detail": "" }, { @@ -64263,7 +64337,228 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/cdf30e76-7a48-4467-92db-6c981850afbe", + "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, @@ -64271,233 +64566,12 @@ "duration_ms": 2.42, "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/13fdc0ca-8318-40c7-907a-5ef4bb706938", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.34, - "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/a6931f76-e2ff-4e81-ab72-9a883293d692", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.8, - "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/d25d5587-e328-4021-b3b8-61576be985cf/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.88, - "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/14608806-0f9b-4a99-90c9-c2c3a2043c84/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 3.36, - "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/1a4cc548-9a7f-4309-8360-33854cf878b7/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.21, - "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/5832941e-b303-4b24-8735-b00c021ee3c8/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.64, - "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/66d85be0-52e5-4a8f-b0bc-8377d7722116/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.84, - "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/87a092e0-abab-4c85-a35a-506726bb59bf/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.15, - "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/9502fc15-9d06-482a-8467-76b5dc58151f/nics", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 2.57, - "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/0a48f886-d65d-42e1-8fed-be29b5fc6e05/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.78, - "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/08d1d825-5368-40bb-a4f9-dc24d66da22e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.41, - "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/edcb8232-51ea-402b-a45e-12ce94cc39df/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.11, - "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/4a4844c9-5c13-4278-8e7f-3e62d8862c5a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.99, - "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/d27344e4-d04a-49db-b95e-9edf027ed922/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 5.23, - "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/7b1153be-e9d8-43f4-93a4-7c803719b51a/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.95, - "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/ef93aa44-da61-41b7-bb78-324022dd2946/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.97, - "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/c9b95630-a668-4229-b4d3-2a48abc481a0/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.08, - "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/4adb2fd3-bba2-4c82-ba58-7821c4ea48a7/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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, @@ -64510,12 +64584,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/0053db27-a965-4393-8344-652c32b6d2ad/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 2.4, + "duration_ms": 4.14, "detail": "" }, { @@ -64523,12 +64597,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/cddc097f-f0c1-4cfe-8b4f-d95aac52a28f/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.02, + "duration_ms": 2.67, "detail": "" }, { @@ -64536,12 +64610,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/8c1620df-f5b3-44ef-bba8-d9b4e3f33c1e/snapshots", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.21, + "duration_ms": 7.85, "detail": "" }, { @@ -64549,12 +64623,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/e93b8fc6-7514-43a8-a038-19eb51c5fd06/snapshots/6e7c717b-ac1f-444e-8014-a905ad95dca9", + "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": 1.73, + "duration_ms": 5.75, "detail": "" }, { @@ -64562,12 +64636,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/2454c458-269d-482a-a026-42aa3e8f88d4/snapshots/ba5d3e17-826c-4db9-876c-15779c091798", + "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": 2.04, + "duration_ms": 3.25, "detail": "" }, { @@ -64575,12 +64649,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/9d874ec9-6b9c-4cab-a88b-19f42709a5e5/snapshots/ac788aab-9ab0-47cf-8d99-5a002bc70303", + "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": 2.27, + "duration_ms": 3.26, "detail": "" }, { @@ -64588,12 +64662,12 @@ "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/840a3747-f1ec-4b43-836a-33fad16fcfb7/snapshots/dd1d7b0d-e9fc-4d9f-9920-8dee90158411/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.31, + "duration_ms": 3.77, "detail": "" }, { @@ -64601,7 +64675,306 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/365c4ccd-e336-4b67-80a6-765778979f39/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, @@ -64613,312 +64986,13 @@ "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/cc0da4d6-e365-4b0e-8bb8-a2081c442da8/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 4.94, - "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/36b9452a-18ab-411a-a235-bc95d87bd5f0/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.4, - "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/ed9d22d4-a268-4133-9bc9-574b22ef1d9d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.21, - "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/6fc4e6da-a637-4129-b148-8804992ca4b2/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.91, - "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/e4350bbd-79ac-4979-a5e7-cf57b20266b9/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.37, - "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/f6e3ddc8-70ea-4b11-a34f-341e781d39b7/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 3.38, - "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/ef5dd602-c226-48bb-8946-fc58056063f6/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.87, - "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/320351e4-d339-4262-b6b1-67c8eba7f0e6/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 4.37, - "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/d4cd12db-e762-4075-aa7c-51e9e3584b30/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.33, - "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/11750209-fdcc-4fd9-9d66-e1bb6bad4e67/graphicsconsoles", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.01, - "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/f459af5b-80fb-4b9d-a070-582974fb5c9c/graphicsconsoles", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.49, - "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/2331a955-434a-4307-bce6-fdd7542df2fc/graphicsconsoles/a7929e01-da39-4e12-89a1-f53eb00847df", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.48, - "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/9dbf0292-9886-4188-90d3-5244de1eacbf/graphicsconsoles/a7929e01-da39-4e12-89a1-f53eb00847df", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.28, - "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/a5b261e3-2c75-48ed-bd88-1f0fa128595f/graphicsconsoles/a7929e01-da39-4e12-89a1-f53eb00847df", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.99, - "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/4b98e0bf-f98a-4b79-920a-e908609a54ab/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.74, - "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/1c288734-5034-4a91-a6cf-b2a3b35d384e/nics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.86, - "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/cf3eb8e2-fd5b-4617-a0ce-91e6522cfab9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.54, - "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/40e31136-39ca-416e-8019-80c9041add7c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.71, - "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/926367a6-ff33-45d6-9035-8a4d65e848d0/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.4, - "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/d7bb071e-c7b0-43e5-8b69-8ded37bf2aff/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.06, - "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/821c0229-6f2a-4e32-8a3f-04447083aa79/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.66, - "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/895e47fb-ac50-43f8-89d5-905e5e696fcb/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.1, - "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/b43f0681-ce2a-47cc-a7b8-24ad69fc9178/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.71, - "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/52e48d20-e1c6-4dae-8718-2a5739c8ae29/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": 1.78, + "duration_ms": 2.94, "detail": "" }, { @@ -64926,12 +65000,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/886a4225-5382-4553-8153-e216a5773573/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.51, + "duration_ms": 3.66, "detail": "" }, { @@ -64939,12 +65013,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/54c3054b-59f0-494e-82f4-ddfd845d9052/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.57, + "duration_ms": 2.99, "detail": "" }, { @@ -64952,12 +65026,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/7e4db4f8-b0bc-41f3-b511-6db143c3424d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.48, + "duration_ms": 3.14, "detail": "" }, { @@ -64965,12 +65039,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/b9736028-5824-4954-9eb9-d54491b75663/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.59, + "duration_ms": 3.56, "detail": "" }, { @@ -64978,12 +65052,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/9eb277bc-945f-4d45-9373-41dbf268d1f2/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": 1.86, + "duration_ms": 3.82, "detail": "" }, { @@ -64991,12 +65065,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/d4d3ff12-aed0-466a-82b5-8a46ffee345d/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.49, + "duration_ms": 4.01, "detail": "" }, { @@ -65004,12 +65078,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/81c80fad-d433-4a75-90c9-8870d9828ec3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.53, + "duration_ms": 5.04, "detail": "" }, { @@ -65017,12 +65091,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/15b233fb-132a-49d8-b3dc-f6ab600cbc35/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.45, + "duration_ms": 5.24, "detail": "" }, { @@ -65030,12 +65104,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/e4609837-6b2d-4015-a0d2-a749e7903258/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.17, + "duration_ms": 5.09, "detail": "" }, { @@ -65043,12 +65117,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/89101c24-7ece-4ead-83f9-329c8d8cd014/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": 1.84, + "duration_ms": 5.28, "detail": "" }, { @@ -65056,12 +65130,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/a532f034-00bd-42f4-840c-f1a678562553/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 4.34, "detail": "" }, { @@ -65069,12 +65143,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/683d0dcd-86a4-4d4e-b355-33957b9c44b0/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.65, + "duration_ms": 5.2, "detail": "" }, { @@ -65082,12 +65156,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/39138ea4-5d32-4efb-8c2b-3341671a62e8/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.4, + "duration_ms": 3.01, "detail": "" }, { @@ -65100,7 +65174,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 3.32, "detail": "" }, { @@ -65111,9 +65185,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.27, + "duration_ms": 3.78, "detail": "" }, { @@ -65121,12 +65195,12 @@ "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/bdc4a554-c6c8-4451-b432-9d69e05e6272", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9dd9071f-db77-4dad-bd0f-99d6ae6592fe", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.72, "detail": "" }, { @@ -65134,12 +65208,12 @@ "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/c4462f0c-b790-48b8-bdb2-106e5cd2c973", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/c0fc5a97-7b66-4dae-a44c-90d61d8bc2bd", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 4.17, "detail": "" }, { @@ -65147,12 +65221,12 @@ "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/b586059c-58c9-46b6-94ed-0fe6bb9735fb", + "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": 1.42, + "duration_ms": 4.87, "detail": "" }, { @@ -65163,9 +65237,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 8.17, "detail": "" }, { @@ -65176,9 +65250,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 3.98, "detail": "" }, { @@ -65186,12 +65260,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 3.58, "detail": "" }, { @@ -65199,12 +65273,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "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": 1.4, + "duration_ms": 2.71, "detail": "" }, { @@ -65212,12 +65286,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "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": 1.34, + "duration_ms": 3.23, "detail": "" }, { @@ -65230,7 +65304,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.53, "detail": "" }, { @@ -65243,7 +65317,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.16, + "duration_ms": 6.41, "detail": "" }, { @@ -65256,7 +65330,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 3.53, "detail": "" }, { @@ -65269,7 +65343,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 4.42, "detail": "" }, { @@ -65277,12 +65351,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.44, + "duration_ms": 2.73, "detail": "" }, { @@ -65295,7 +65369,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.22, + "duration_ms": 3.61, "detail": "" }, { @@ -65308,7 +65382,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 1.3, + "duration_ms": 2.7, "detail": "" }, { @@ -65319,9 +65393,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 3.46, "detail": "" }, { @@ -65329,12 +65403,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.21, + "duration_ms": 3.82, "detail": "" }, { @@ -65342,12 +65416,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.32, + "duration_ms": 2.47, "detail": "" }, { @@ -65360,7 +65434,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.23, + "duration_ms": 3.81, "detail": "" }, { @@ -65373,7 +65447,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.04, + "duration_ms": 5.09, "detail": "" }, { @@ -65384,9 +65458,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 3.83, "detail": "" }, { @@ -65397,9 +65471,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 3.93, "detail": "" }, { @@ -65410,9 +65484,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 3.07, "detail": "" }, { @@ -65420,12 +65494,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 1.28, + "duration_ms": 2.55, "detail": "" }, { @@ -65433,12 +65507,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/00562e37-9e9e-4b77-bfc5-5bfeb1002ea8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 4.19, "detail": "" }, { @@ -65449,9 +65523,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 2.75, "detail": "" }, { @@ -65462,9 +65536,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.65, + "duration_ms": 2.65, "detail": "" }, { @@ -65472,12 +65546,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 2.26, "detail": "" }, { @@ -65485,7 +65559,7 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "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, @@ -65498,12 +65572,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/89714968-c108-468f-85be-aaa0cb8abf42", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.2, "detail": "" }, { @@ -65516,7 +65590,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 2.15, "detail": "" }, { @@ -65529,7 +65603,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.99, + "duration_ms": 2.68, "detail": "" }, { @@ -65537,12 +65611,12 @@ "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/ca457762-f57a-4520-86cf-b433b562a2fe", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.82, + "duration_ms": 2.04, "detail": "" }, { @@ -65550,12 +65624,12 @@ "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/ca457762-f57a-4520-86cf-b433b562a2fe", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/a2845cb7-7a81-4d1a-bfe2-6adefd472cc6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 2.5, "detail": "" }, { @@ -65563,12 +65637,12 @@ "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/ca457762-f57a-4520-86cf-b433b562a2fe", + "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": 1.47, + "duration_ms": 2.07, "detail": "" }, { @@ -65581,7 +65655,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 1.96, "detail": "" }, { @@ -65594,7 +65668,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.92, + "duration_ms": 2.24, "detail": "" }, { @@ -65607,7 +65681,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 1.91, "detail": "" }, { @@ -65620,7 +65694,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 2.12, "detail": "" }, { @@ -65628,12 +65702,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.48, + "duration_ms": 1.9, "detail": "" }, { @@ -65641,12 +65715,12 @@ "operation_id": "vnicprofiles.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v3/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/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.47, + "duration_ms": 2.0, "detail": "" }, { @@ -65654,12 +65728,12 @@ "operation_id": "vnicprofiles.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v3/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/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": 1.64, + "duration_ms": 2.16, "detail": "" }, { @@ -65667,12 +65741,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/vnicprofiles/c4308b62-6078-4e96-8a48-c589214adc4a", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 1.95, "detail": "" }, { @@ -65680,12 +65754,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/vnicprofiles/c430f542-6a0f-472e-bfda-0a34cfcf404e", + "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": 1.41, + "duration_ms": 2.0, "detail": "" }, { @@ -65693,12 +65767,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/vnicprofiles/6e4b06bf-83c4-4340-8182-1bf7f79f541b", + "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": 1.31, + "duration_ms": 2.22, "detail": "" }, { @@ -65711,7 +65785,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.9, + "duration_ms": 1.84, "detail": "" }, { @@ -65724,7 +65798,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.9, + "duration_ms": 2.57, "detail": "" }, { @@ -65735,9 +65809,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 2.12, "detail": "" }, { @@ -65748,9 +65822,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 2.29, "detail": "" }, { @@ -65758,12 +65832,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.2, + "duration_ms": 2.4, "detail": "" }, { @@ -65776,7 +65850,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 1.67, "detail": "" }, { @@ -65789,7 +65863,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.88, + "duration_ms": 2.27, "detail": "" }, { @@ -65802,7 +65876,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 1.83, "detail": "" }, { @@ -65815,7 +65889,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 1.94, "detail": "" }, { @@ -65823,12 +65897,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.19, + "duration_ms": 1.56, "detail": "" }, { @@ -65841,7 +65915,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.16, "detail": "" }, { @@ -65854,7 +65928,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 4.16, + "duration_ms": 3.01, "detail": "" }, { @@ -65865,9 +65939,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.65, + "duration_ms": 2.64, "detail": "" }, { @@ -65875,12 +65949,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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.52, + "duration_ms": 2.61, "detail": "" }, { @@ -65888,12 +65962,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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.09, + "duration_ms": 2.31, "detail": "" }, { @@ -65906,7 +65980,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.12, "detail": "" }, { @@ -65919,7 +65993,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.05, + "duration_ms": 2.77, "detail": "" }, { @@ -65930,9 +66004,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 1.95, "detail": "" }, { @@ -65943,9 +66017,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.65, "detail": "" }, { @@ -65953,12 +66027,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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.29, + "duration_ms": 1.94, "detail": "" }, { @@ -65966,12 +66040,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/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": 1.45, + "duration_ms": 2.08, "detail": "" }, { @@ -65979,12 +66053,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/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.26, + "duration_ms": 1.84, "detail": "" }, { @@ -65992,12 +66066,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/steps/782ce344-711f-46b1-b82b-4ce92354b600", + "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.16, + "duration_ms": 1.71, "detail": "" }, { @@ -66005,12 +66079,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/steps/028a26f3-2ee5-41b2-a940-6202627a2a5f", + "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": 1.23, + "duration_ms": 2.09, "detail": "" }, { @@ -66018,12 +66092,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/steps/3b89b5b8-5e3c-4dfa-bd9e-9a8166d08110", + "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.18, + "duration_ms": 1.8, "detail": "" }, { @@ -66036,7 +66110,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.68, + "duration_ms": 5.73, "detail": "" }, { @@ -66049,7 +66123,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.15, "detail": "" }, { @@ -66060,9 +66134,9 @@ "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 2.07, "detail": "" }, { @@ -66075,7 +66149,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 2.44, "detail": "" }, { @@ -66086,9 +66160,9 @@ "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 3.38, "detail": "" }, { @@ -66101,7 +66175,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 5.74, "detail": "" }, { @@ -66112,9 +66186,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.26, + "duration_ms": 6.88, "detail": "" }, { @@ -66127,7 +66201,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.77, + "duration_ms": 4.64, "detail": "" }, { @@ -66138,9 +66212,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.54, + "duration_ms": 4.01, "detail": "" }, { @@ -66153,7 +66227,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 3.64, "detail": "" }, { @@ -66164,9 +66238,9 @@ "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.16, + "duration_ms": 3.42, "detail": "" }, { @@ -66179,7 +66253,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.26, + "duration_ms": 2.74, "detail": "" }, { @@ -66192,7 +66266,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.11, + "duration_ms": 3.0, "detail": "" }, { @@ -66205,7 +66279,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.93, + "duration_ms": 3.06, "detail": "" }, { @@ -66213,12 +66287,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1111", + "path_resolved": "/ovirt-engine/api/events/54", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 9.15, "detail": "" }, { @@ -66231,7 +66305,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.95, + "duration_ms": 3.24, "detail": "" }, { @@ -66242,9 +66316,9 @@ "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 2.79, "detail": "" }, { @@ -66257,7 +66331,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 5.22, "detail": "" }, { @@ -66268,9 +66342,9 @@ "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 3.45, "detail": "" }, { @@ -66283,7 +66357,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 3.68, "detail": "" }, { @@ -66291,12 +66365,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/311b0dfc-9eb3-4ce8-b21b-740a2e3f9ad1", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 6.97, "detail": "" }, { @@ -66309,7 +66383,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 9.24, "detail": "" }, { @@ -66320,9 +66394,9 @@ "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 7.84, "detail": "" }, { @@ -66335,7 +66409,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 6.9, "detail": "" }, { @@ -66346,9 +66420,9 @@ "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 7.38, "detail": "" }, { @@ -66361,7 +66435,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.48, + "duration_ms": 10.4, "detail": "" }, { @@ -66369,12 +66443,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad", + "path_resolved": "/ovirt-engine/api/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 8.61, "detail": "" }, { @@ -66387,7 +66461,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 7.94, "detail": "" }, { @@ -66395,12 +66469,12 @@ "operation_id": "head.katelloerrata.get", "method": "HEAD", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/90644bd3-f10a-4344-a7eb-374ce8fd6370", + "path_resolved": "/ovirt-engine/api/katelloerrata/26df5a2c-3732-4d5c-a82f-e8d6c1c8aa21", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 6.75, "detail": "" }, { @@ -66413,7 +66487,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 15.37, "detail": "" }, { @@ -66424,9 +66498,9 @@ "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 5.89, "detail": "" }, { @@ -66439,7 +66513,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 5.02, "detail": "" }, { @@ -66447,12 +66521,12 @@ "operation_id": "head.networkfilters.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/e1935c5d-51a0-4cc9-be19-7c1b09fb8802", + "path_resolved": "/ovirt-engine/api/networkfilters/f2cb2f7b-b4ed-47ce-bcbc-b5015ff9a741", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 3.62, "detail": "" }, { @@ -66465,7 +66539,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 7.36, "detail": "" }, { @@ -66473,12 +66547,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 4.66, "detail": "" }, { @@ -66491,7 +66565,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 3.88, "detail": "" }, { @@ -66502,9 +66576,9 @@ "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 4.31, "detail": "" }, { @@ -66517,7 +66591,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.31, + "duration_ms": 6.53, "detail": "" }, { @@ -66528,9 +66602,9 @@ "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 3.64, "detail": "" }, { @@ -66543,7 +66617,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 3.52, "detail": "" }, { @@ -66554,9 +66628,9 @@ "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 4.55, "detail": "" }, { @@ -66569,7 +66643,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 4.68, "detail": "" }, { @@ -66577,12 +66651,12 @@ "operation_id": "head.operatingsystems.get", "method": "HEAD", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/e7a49e06-4414-4dd3-b252-c3e24a06c909", + "path_resolved": "/ovirt-engine/api/operatingsystems/17415db0-2d19-4450-a6e0-ca1e12a7f2bf", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 4.88, "detail": "" }, { @@ -66595,7 +66669,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 7.59, "detail": "" }, { @@ -66608,7 +66682,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 5.5, "detail": "" }, { @@ -66621,7 +66695,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 6.04, "detail": "" }, { @@ -66632,9 +66706,9 @@ "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 5.66, "detail": "" }, { @@ -66647,7 +66721,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 7.19, "detail": "" }, { @@ -66658,9 +66732,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 7.31, "detail": "" }, { @@ -66673,7 +66747,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 5.85, "detail": "" }, { @@ -66684,9 +66758,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 7.03, "detail": "" }, { @@ -66699,7 +66773,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 7.28, "detail": "" }, { @@ -66707,12 +66781,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/9e470bf3-f5ae-4667-80bd-575ce6801b91", + "path_resolved": "/ovirt-engine/api/storageconnections/64eb0822-b478-4829-896b-d7361a773079", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 7.75, "detail": "" }, { @@ -66725,7 +66799,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 7.69, "detail": "" }, { @@ -66736,9 +66810,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 6.77, "detail": "" }, { @@ -66751,7 +66825,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.44, + "duration_ms": 7.57, "detail": "" }, { @@ -66762,9 +66836,9 @@ "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 9.68, "detail": "" }, { @@ -66777,7 +66851,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 7.24, "detail": "" }, { @@ -66788,9 +66862,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 5.72, "detail": "" }, { @@ -66803,7 +66877,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 6.91, "detail": "" }, { @@ -66816,7 +66890,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 8.18, "detail": "" }, { @@ -66829,7 +66903,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 5.26, "detail": "" }, { @@ -66840,9 +66914,9 @@ "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.26, + "duration_ms": 5.91, "detail": "" }, { @@ -66855,7 +66929,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.74, + "duration_ms": 6.83, "detail": "" }, { @@ -66863,12 +66937,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/cebda229-e7ac-42a4-bf6f-2a9b863121e9", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.59, + "duration_ms": 6.06, "detail": "" }, { @@ -66881,7 +66955,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.9, + "duration_ms": 4.78, "detail": "" }, { @@ -66889,12 +66963,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/20c18bfc-80ac-409f-bb0c-72bba3046dc6", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 5.83, "detail": "" }, { @@ -66902,12 +66976,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/b2aa5922-6655-46c2-a957-8393eead4613/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.78, + "duration_ms": 6.14, "detail": "" }, { @@ -66915,12 +66989,12 @@ "operation_id": "head.diskattachments.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/e4f816d2-b72f-489d-a06b-b43fdc8fb272/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.52, + "duration_ms": 8.04, "detail": "" }, { @@ -66928,12 +67002,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/1ed90e87-bad2-4503-8b56-2db0df9142cd/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.8, + "duration_ms": 12.42, "detail": "" }, { @@ -66941,12 +67015,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/69533998-f4de-4eae-a68c-7291567e8016/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.63, + "duration_ms": 7.24, "detail": "" }, { @@ -66954,12 +67028,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/7672e8ec-4ffe-4d8e-a33d-2c343acc0a7b/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.91, + "duration_ms": 6.7, "detail": "" }, { @@ -66967,12 +67041,12 @@ "operation_id": "head.cdroms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/946b403e-09c7-4a75-bb48-35c6c328c9a6/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.85, + "duration_ms": 5.98, "detail": "" }, { @@ -66980,12 +67054,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/4d3feb94-5315-45b9-8e71-bb2dd2a3c7e1/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.75, + "duration_ms": 7.33, "detail": "" }, { @@ -66993,12 +67067,12 @@ "operation_id": "head.snapshots.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/dc966d53-7597-4c87-98a5-e9b6f429b66b/snapshots/2cdcd2cb-072c-4800-95af-cc679880d7f1", + "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": 1.65, + "duration_ms": 6.38, "detail": "" }, { @@ -67006,12 +67080,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/75f3f19a-0202-4360-a8c8-d154e64efe46/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.49, + "duration_ms": 5.46, "detail": "" }, { @@ -67019,12 +67093,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/e48475cd-7ef5-4048-8451-cdd4ec250f93/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.03, + "duration_ms": 4.13, "detail": "" }, { @@ -67032,12 +67106,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/d96720eb-936c-46aa-b2af-30ddc672c1a1/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.14, + "duration_ms": 6.06, "detail": "" }, { @@ -67045,12 +67119,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/983c3736-ca07-4b5b-a3b4-da32748ae0fc/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.76, + "duration_ms": 8.14, "detail": "" }, { @@ -67058,12 +67132,12 @@ "operation_id": "head.graphicsconsoles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/f5016180-e923-45c5-8968-714bb98a74c7/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": 2.21, + "duration_ms": 7.32, "detail": "" }, { @@ -67071,12 +67145,12 @@ "operation_id": "head.graphicsconsoles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/7bab3338-b444-4d67-8aa7-8fd05d9a2ea5/graphicsconsoles/a7929e01-da39-4e12-89a1-f53eb00847df", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/20ae3f8e-8ebe-4b3e-a86e-719e2e09af4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.84, + "duration_ms": 6.06, "detail": "" }, { @@ -67084,12 +67158,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/cdfc03ad-4fcf-4781-9f9a-c33833648147/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.63, + "duration_ms": 6.08, "detail": "" }, { @@ -67097,12 +67171,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/21947205-27db-481d-a09c-e712a9436bb1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.02, + "duration_ms": 5.75, "detail": "" }, { @@ -67110,12 +67184,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/72d25318-7034-43a9-b4db-dee34cc05bd8/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.83, + "duration_ms": 8.58, "detail": "" }, { @@ -67123,12 +67197,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/856c30a9-4105-448c-b7a4-1d2b3450fd2a/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.82, + "duration_ms": 5.85, "detail": "" }, { @@ -67136,12 +67210,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/4f030e56-20ec-4b41-af3e-2d79ade63a72/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.76, + "duration_ms": 5.85, "detail": "" }, { @@ -67149,12 +67223,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/3c45bfdf-785a-4ae5-a5df-03971e5706a2/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.14, + "duration_ms": 6.98, "detail": "" }, { @@ -67162,12 +67236,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/4e45c94b-7eb8-438a-bd26-f943008f22c0/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.5, + "duration_ms": 7.51, "detail": "" }, { @@ -67175,12 +67249,12 @@ "operation_id": "head.statistics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/fbab1ec8-9ba5-4e49-9840-fe43fc37ff25/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.72, + "duration_ms": 8.52, "detail": "" }, { @@ -67193,7 +67267,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 4.58, "detail": "" }, { @@ -67201,12 +67275,12 @@ "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/12c4737d-98fc-43c4-999e-3ce058652c3c", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9dd9071f-db77-4dad-bd0f-99d6ae6592fe", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.96, + "duration_ms": 5.27, "detail": "" }, { @@ -67217,9 +67291,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 5.28, "detail": "" }, { @@ -67227,12 +67301,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.54, + "duration_ms": 4.96, "detail": "" }, { @@ -67245,7 +67319,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.63, + "duration_ms": 5.58, "detail": "" }, { @@ -67258,7 +67332,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.0, + "duration_ms": 4.8, "detail": "" }, { @@ -67271,7 +67345,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.6, + "duration_ms": 5.04, "detail": "" }, { @@ -67282,9 +67356,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.28, + "duration_ms": 4.79, "detail": "" }, { @@ -67295,9 +67369,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.18, + "duration_ms": 5.65, "detail": "" }, { @@ -67308,9 +67382,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 3.36, "detail": "" }, { @@ -67321,9 +67395,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 3.24, "detail": "" }, { @@ -67331,12 +67405,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.18, + "duration_ms": 3.04, "detail": "" }, { @@ -67349,7 +67423,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 2.72, "detail": "" }, { @@ -67357,12 +67431,12 @@ "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/ca457762-f57a-4520-86cf-b433b562a2fe", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.75, "detail": "" }, { @@ -67375,7 +67449,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 4.25, "detail": "" }, { @@ -67388,7 +67462,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 2.67, "detail": "" }, { @@ -67396,12 +67470,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/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.6, + "duration_ms": 2.52, "detail": "" }, { @@ -67409,12 +67483,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/vnicprofiles/0f52f932-9ed2-446a-a660-078782bd11a1", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 2.3, "detail": "" }, { @@ -67427,7 +67501,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 2.34, "detail": "" }, { @@ -67438,9 +67512,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 2.31, "detail": "" }, { @@ -67453,7 +67527,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 2.34, "detail": "" }, { @@ -67466,7 +67540,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 2.38, "detail": "" }, { @@ -67479,7 +67553,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 2.4, "detail": "" }, { @@ -67490,9 +67564,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 2.14, "detail": "" }, { @@ -67505,7 +67579,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 2.19, "detail": "" }, { @@ -67516,9 +67590,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 2.16, "detail": "" }, { @@ -67526,12 +67600,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/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": 1.56, + "duration_ms": 2.13, "detail": "" }, { @@ -67539,12 +67613,12 @@ "operation_id": "head.steps.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/steps/c1e3b18a-b693-4a12-81ed-9c1d7f6628ee", + "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.34, + "duration_ms": 1.9, "detail": "" }, { @@ -67557,7 +67631,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.6, + "duration_ms": 4.56, "detail": "" }, { @@ -67570,7 +67644,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 2.18, "detail": "" }, { @@ -67581,9 +67655,9 @@ "path_resolved": "/ovirt-engine/api/v3/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.11, "detail": "" }, { @@ -67596,7 +67670,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.5, "detail": "" }, { @@ -67607,9 +67681,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.05, + "duration_ms": 2.45, "detail": "" }, { @@ -67622,7 +67696,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.52, "detail": "" }, { @@ -67633,9 +67707,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 2.66, "detail": "" }, { @@ -67648,7 +67722,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.19, "detail": "" }, { @@ -67659,9 +67733,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.18, "detail": "" }, { @@ -67674,7 +67748,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.25, "detail": "" }, { @@ -67685,9 +67759,9 @@ "path_resolved": "/ovirt-engine/api/v3/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.07, "detail": "" }, { @@ -67700,7 +67774,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 3.27, "detail": "" }, { @@ -67713,7 +67787,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 3.25, "detail": "" }, { @@ -67726,7 +67800,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 3.23, "detail": "" }, { @@ -67734,12 +67808,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/events/{id}", - "path_resolved": "/ovirt-engine/api/v3/events/1111", + "path_resolved": "/ovirt-engine/api/v3/events/54", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 3.32, "detail": "" }, { @@ -67752,7 +67826,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.16, + "duration_ms": 2.71, "detail": "" }, { @@ -67763,9 +67837,9 @@ "path_resolved": "/ovirt-engine/api/v3/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 2.41, "detail": "" }, { @@ -67778,7 +67852,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.75, "detail": "" }, { @@ -67789,9 +67863,9 @@ "path_resolved": "/ovirt-engine/api/v3/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 3.91, "detail": "" }, { @@ -67804,7 +67878,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 13.05, "detail": "" }, { @@ -67812,12 +67886,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v3/hosts/8c07d5cb-bcb2-4ec7-8062-1f4958a06d61", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 4.82, "detail": "" }, { @@ -67830,7 +67904,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 2.85, "detail": "" }, { @@ -67841,9 +67915,9 @@ "path_resolved": "/ovirt-engine/api/v3/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 2.88, "detail": "" }, { @@ -67856,7 +67930,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 2.62, "detail": "" }, { @@ -67867,9 +67941,9 @@ "path_resolved": "/ovirt-engine/api/v3/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 2.96, "detail": "" }, { @@ -67882,7 +67956,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.07, + "duration_ms": 5.33, "detail": "" }, { @@ -67890,12 +67964,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v3/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad", + "path_resolved": "/ovirt-engine/api/v3/jobs/4b10eb6f-8f7c-4773-96b5-6c52fcd9d393", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 3.18, "detail": "" }, { @@ -67908,7 +67982,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 2.74, "detail": "" }, { @@ -67916,12 +67990,12 @@ "operation_id": "head.katelloerrata.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v3/katelloerrata/90644bd3-f10a-4344-a7eb-374ce8fd6370", + "path_resolved": "/ovirt-engine/api/v3/katelloerrata/26df5a2c-3732-4d5c-a82f-e8d6c1c8aa21", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 2.98, "detail": "" }, { @@ -67934,7 +68008,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.9, "detail": "" }, { @@ -67945,9 +68019,9 @@ "path_resolved": "/ovirt-engine/api/v3/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 4.47, "detail": "" }, { @@ -67960,7 +68034,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 22.81, "detail": "" }, { @@ -67968,12 +68042,12 @@ "operation_id": "head.networkfilters.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v3/networkfilters/e1935c5d-51a0-4cc9-be19-7c1b09fb8802", + "path_resolved": "/ovirt-engine/api/v3/networkfilters/f2cb2f7b-b4ed-47ce-bcbc-b5015ff9a741", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 9.82, "detail": "" }, { @@ -67986,7 +68060,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 8.18, "detail": "" }, { @@ -67994,12 +68068,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/networks/{id}", - "path_resolved": "/ovirt-engine/api/v3/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 5.11, "detail": "" }, { @@ -68012,7 +68086,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 4.04, "detail": "" }, { @@ -68023,9 +68097,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 4.6, "detail": "" }, { @@ -68038,7 +68112,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 3.29, "detail": "" }, { @@ -68049,9 +68123,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 4.3, "detail": "" }, { @@ -68064,7 +68138,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 3.5, "detail": "" }, { @@ -68075,9 +68149,9 @@ "path_resolved": "/ovirt-engine/api/v3/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 3.13, "detail": "" }, { @@ -68090,7 +68164,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 3.52, "detail": "" }, { @@ -68098,12 +68172,12 @@ "operation_id": "head.operatingsystems.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v3/operatingsystems/e7a49e06-4414-4dd3-b252-c3e24a06c909", + "path_resolved": "/ovirt-engine/api/v3/operatingsystems/17415db0-2d19-4450-a6e0-ca1e12a7f2bf", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 6.1, "detail": "" }, { @@ -68116,7 +68190,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 5.53, "detail": "" }, { @@ -68129,7 +68203,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 5.08, "detail": "" }, { @@ -68142,7 +68216,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 4.67, "detail": "" }, { @@ -68153,9 +68227,9 @@ "path_resolved": "/ovirt-engine/api/v3/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 6.0, "detail": "" }, { @@ -68168,7 +68242,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.12, + "duration_ms": 5.57, "detail": "" }, { @@ -68179,9 +68253,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.28, "detail": "" }, { @@ -68194,7 +68268,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 4.68, "detail": "" }, { @@ -68205,9 +68279,9 @@ "path_resolved": "/ovirt-engine/api/v3/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.15, "detail": "" }, { @@ -68220,7 +68294,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 4.68, "detail": "" }, { @@ -68228,12 +68302,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v3/storageconnections/9e470bf3-f5ae-4667-80bd-575ce6801b91", + "path_resolved": "/ovirt-engine/api/v3/storageconnections/64eb0822-b478-4829-896b-d7361a773079", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 5.9, "detail": "" }, { @@ -68246,7 +68320,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 3.64, "detail": "" }, { @@ -68257,9 +68331,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.43, "detail": "" }, { @@ -68272,7 +68346,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.05, "detail": "" }, { @@ -68283,9 +68357,9 @@ "path_resolved": "/ovirt-engine/api/v3/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 4.2, "detail": "" }, { @@ -68298,7 +68372,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 4.08, "detail": "" }, { @@ -68309,9 +68383,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 3.9, "detail": "" }, { @@ -68324,7 +68398,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 7.61, "detail": "" }, { @@ -68337,7 +68411,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.32, + "duration_ms": 5.8, "detail": "" }, { @@ -68350,7 +68424,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.37, + "duration_ms": 4.48, "detail": "" }, { @@ -68361,9 +68435,9 @@ "path_resolved": "/ovirt-engine/api/v3/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.57, + "duration_ms": 3.22, "detail": "" }, { @@ -68376,7 +68450,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 2.74, "detail": "" }, { @@ -68384,12 +68458,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{id}", - "path_resolved": "/ovirt-engine/api/v3/vms/515da46b-d423-4cee-9388-f433481f551a", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 2.26, "detail": "" }, { @@ -68402,7 +68476,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 2.3, "detail": "" }, { @@ -68410,12 +68484,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/c7a4de04-a749-48f6-b126-c445a5e900f4", + "path_resolved": "/ovirt-engine/api/v3/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 2.18, "detail": "" }, { @@ -68423,12 +68497,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v3/vms/7bc252c0-67e2-490c-911b-456d59784a19/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": 1.62, + "duration_ms": 2.64, "detail": "" }, { @@ -68436,12 +68510,12 @@ "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/8314d98c-41a2-41f5-aeda-4099d4c7f3fe/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.59, + "duration_ms": 2.28, "detail": "" }, { @@ -68449,12 +68523,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/vms/5773f6a8-aca0-4193-b30d-10c3a96c1813/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.66, + "duration_ms": 2.23, "detail": "" }, { @@ -68462,12 +68536,12 @@ "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/0d350c07-a2f9-4cd1-b2e8-bddf1da56006/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.05, + "duration_ms": 2.48, "detail": "" }, { @@ -68475,12 +68549,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v3/vms/6ec39410-b723-4c5d-8ddf-4627bc5b9254/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": 1.68, + "duration_ms": 2.86, "detail": "" }, { @@ -68488,12 +68562,12 @@ "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/7205f6cb-f133-466d-96af-63a3a0990f61/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.62, + "duration_ms": 2.57, "detail": "" }, { @@ -68501,12 +68575,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v3/vms/3448c5c9-1aa5-430c-92dc-273fac7b1428/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": 1.55, + "duration_ms": 2.46, "detail": "" }, { @@ -68514,12 +68588,12 @@ "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/267bd6d1-c0a4-4794-a76c-f674ed8f3bb6/snapshots/8e0ae15e-0be6-48d7-a11d-51dfcbc97a6c", + "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": 1.43, + "duration_ms": 2.41, "detail": "" }, { @@ -68527,12 +68601,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/vms/e99a1df2-e33a-442e-853b-57a963e3ec2c/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.6, + "duration_ms": 2.34, "detail": "" }, { @@ -68540,12 +68614,12 @@ "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/580e10d0-3281-4249-a86d-9451ea102c8f/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.52, + "duration_ms": 2.34, "detail": "" }, { @@ -68553,12 +68627,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/vms/7fd054cd-fdb2-480d-b63e-35d93276a634/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.64, + "duration_ms": 2.47, "detail": "" }, { @@ -68566,12 +68640,12 @@ "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/f0d0575c-9e1f-4cc8-9b92-470e2ce97bf1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.71, + "duration_ms": 2.39, "detail": "" }, { @@ -68579,12 +68653,12 @@ "operation_id": "head.graphicsconsoles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v3/vms/3c131a46-3bc4-4892-9bd0-8e04a4168b37/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.19, + "duration_ms": 2.72, "detail": "" }, { @@ -68592,12 +68666,12 @@ "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/31d3786d-81ef-4d96-b2f2-4fbd420d79a1/graphicsconsoles/a7929e01-da39-4e12-89a1-f53eb00847df", + "path_resolved": "/ovirt-engine/api/v3/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/20ae3f8e-8ebe-4b3e-a86e-719e2e09af4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 2.56, "detail": "" }, { @@ -68605,12 +68679,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v3/hosts/c574342b-0259-43bd-bce3-023b6eba3963/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.21, + "duration_ms": 2.41, "detail": "" }, { @@ -68618,12 +68692,12 @@ "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/bd289437-1648-47ff-b9b3-ac4bfafe67b7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.82, + "duration_ms": 2.56, "detail": "" }, { @@ -68631,12 +68705,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v3/hosts/c0aaa4ae-6f9c-4ed5-bc5d-19082974689c/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.74, + "duration_ms": 2.98, "detail": "" }, { @@ -68644,12 +68718,12 @@ "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/1b64c11a-c444-40a9-a9f1-8a83aed59450/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.7, + "duration_ms": 2.31, "detail": "" }, { @@ -68657,12 +68731,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v3/hosts/a2440a65-9ad4-4dda-ad8b-82758d16aed3/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.69, + "duration_ms": 2.43, "detail": "" }, { @@ -68670,12 +68744,12 @@ "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/5e5c42bf-0c88-44ae-8937-bda9cb71f14b/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.85, + "duration_ms": 2.35, "detail": "" }, { @@ -68683,12 +68757,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v3/hosts/c36114a4-73a6-40f6-b284-643e136671b7/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.93, + "duration_ms": 2.57, "detail": "" }, { @@ -68696,12 +68770,12 @@ "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/2c77eaf5-c2b2-4aad-8def-daf23a96bcb8/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v3/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 2.64, "detail": "" }, { @@ -68714,7 +68788,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 3.56, "detail": "" }, { @@ -68722,12 +68796,12 @@ "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/1f0ff62a-3f62-4638-acad-a7c4f3b39510", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/9dd9071f-db77-4dad-bd0f-99d6ae6592fe", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.5, "detail": "" }, { @@ -68738,9 +68812,9 @@ "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 3.06, "detail": "" }, { @@ -68748,12 +68822,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/v3/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 4.88, "detail": "" }, { @@ -68766,7 +68840,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 3.54, "detail": "" }, { @@ -68779,7 +68853,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.17, + "duration_ms": 2.71, "detail": "" }, { @@ -68792,7 +68866,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.17, + "duration_ms": 2.59, "detail": "" }, { @@ -68803,9 +68877,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 2.59, "detail": "" }, { @@ -68816,9 +68890,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 2.69, "detail": "" }, { @@ -68829,9 +68903,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 3.38, "detail": "" }, { @@ -68842,9 +68916,9 @@ "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 2.59, "detail": "" }, { @@ -68852,12 +68926,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.82, + "duration_ms": 2.72, "detail": "" }, { @@ -68870,7 +68944,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 2.28, "detail": "" }, { @@ -68878,12 +68952,12 @@ "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/ca457762-f57a-4520-86cf-b433b562a2fe", + "path_resolved": "/ovirt-engine/api/v3/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 2.28, "detail": "" }, { @@ -68896,7 +68970,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.51, "detail": "" }, { @@ -68909,7 +68983,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.56, "detail": "" }, { @@ -68917,12 +68991,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v3/networks/38c64540-b0ef-4d8f-a039-81bd83f1faaa/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.17, + "duration_ms": 3.79, "detail": "" }, { @@ -68930,12 +69004,12 @@ "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/38c64540-b0ef-4d8f-a039-81bd83f1faaa/vnicprofiles/36c59008-d30c-41ff-89dd-44e1df674c69", + "path_resolved": "/ovirt-engine/api/v3/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.9, + "duration_ms": 2.26, "detail": "" }, { @@ -68948,7 +69022,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.02, + "duration_ms": 2.44, "detail": "" }, { @@ -68959,9 +69033,9 @@ "path_resolved": "/ovirt-engine/api/v3/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 3.3, "detail": "" }, { @@ -68974,7 +69048,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.32, + "duration_ms": 4.09, "detail": "" }, { @@ -68987,7 +69061,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 3.22, + "duration_ms": 3.08, "detail": "" }, { @@ -69000,7 +69074,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.4, + "duration_ms": 3.76, "detail": "" }, { @@ -69011,9 +69085,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.54, + "duration_ms": 3.22, "detail": "" }, { @@ -69026,7 +69100,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.05, + "duration_ms": 3.13, "detail": "" }, { @@ -69037,9 +69111,9 @@ "path_resolved": "/ovirt-engine/api/v3/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.95, + "duration_ms": 2.81, "detail": "" }, { @@ -69047,12 +69121,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v3/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v3/jobs/f12fb13c-99a0-4708-92ae-d7e4ac13faad/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": 1.96, + "duration_ms": 2.5, "detail": "" }, { @@ -69060,12 +69134,12 @@ "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/f12fb13c-99a0-4708-92ae-d7e4ac13faad/steps/76c07f7b-6992-4452-b6ad-07770e2362b1", + "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.0, + "duration_ms": 2.47, "detail": "" }, { @@ -69078,7 +69152,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 9.07, + "duration_ms": 10.21, "detail": "" }, { @@ -69091,7 +69165,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.89, + "duration_ms": 4.16, "detail": "" }, { @@ -69104,7 +69178,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.48, + "duration_ms": 6.05, "detail": "" }, { @@ -69117,7 +69191,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 4.45, "detail": "" }, { @@ -69125,12 +69199,12 @@ "operation_id": "affinitylabels.update", "method": "PUT", "path_template": "/ovirt-engine/api/affinitylabels/{id}", - "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", + "path_resolved": "/ovirt-engine/api/affinitylabels/ea1a0e82-217b-4084-a468-307f3fa6da54", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.51, + "duration_ms": 3.24, "detail": "" }, { @@ -69138,4050 +69212,7 @@ "operation_id": "affinitylabels.remove", "method": "DELETE", "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": 1.66, - "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": 1.46, - "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": 2.03, - "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": 1.48, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "bookmarks.update", - "method": "PUT", - "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.03, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "bookmarks.remove", - "method": "DELETE", - "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": 1.6, - "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": 1.5, - "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": 1.78, - "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": 1.29, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "clusterlevels.update", - "method": "PUT", - "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": 1.7, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "clusterlevels.remove", - "method": "DELETE", - "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": 1.65, - "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": 1.54, - "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": 1.99, - "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": 1.25, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "clusters.update", - "method": "PUT", - "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": 1.78, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "clusters.remove", - "method": "DELETE", - "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.1, - "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": 2.83, - "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": 2.24, - "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": 2.31, - "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": 2.16, - "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": 1.44, - "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": 3.46, - "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": 1.98, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "datacenters.update", - "method": "PUT", - "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": 1.82, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "datacenters.remove", - "method": "DELETE", - "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": 3.87, - "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": 3.94, - "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": 2.32, - "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": 5.01, - "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": 2.08, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "disks.update", - "method": "PUT", - "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.64, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "disks.remove", - "method": "DELETE", - "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.51, - "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.07, - "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.09, - "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": 2.78, - "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": 3.42, - "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": 1.96, - "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": 1.76, - "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.04, - "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.85, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "domains.remove", - "method": "DELETE", - "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.46, - "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.0, - "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.85, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "events.get", - "method": "GET", - "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1112", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.18, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "events.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1112", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.02, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "events.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1112", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.2, - "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": 2.89, - "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.9, - "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": 1.55, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "externalhostproviders.update", - "method": "PUT", - "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": "4.3", - "operation_id": "externalhostproviders.remove", - "method": "DELETE", - "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": 1.58, - "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.66, - "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": 3.53, - "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.77, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "groups.update", - "method": "PUT", - "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.33, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "groups.remove", - "method": "DELETE", - "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.66, - "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": 1.9, - "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": 400, - "expected_hint": 201, - "duration_ms": 2.71, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.get", - "method": "GET", - "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ffa681f0-48a3-4431-b40d-c90237deb11c", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.35, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ae8da07e-71ec-4d40-ae4e-71a254eae4af", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.39, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/8c43f3aa-d103-4e8d-bbbb-0b5bc9e7274d", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.15, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.activate", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/hosts/d7c088a8-b3d7-4f78-b171-a4b2fcfa7692/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.93, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.deactivate", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/hosts/c7df8dd6-a5a6-4f9a-bfa1-fdde48ee8f11/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.19, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.approve", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/hosts/2a9c3196-5088-4fd5-b337-6cc02e552f26/approve", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.03, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.install", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/hosts/e629ac72-29ab-410c-8c63-3066427902a4/install", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.04, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.fence", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/hosts/ff17c032-e594-4313-baf8-1dc255f1c410/fence", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.45, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.iscsidiscover", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/hosts/d71ac8da-346c-454d-b74a-2bf4a3b0cf96/iscsidiscover", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.15, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.iscsilogin", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/hosts/fbc01d2c-68d6-453c-b707-90ee8bbbf542/iscsilogin", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.02, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.commitnetconfig", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/hosts/840a6105-3eba-4a21-9f47-2e835216abfb/commitnetconfig", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.04, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.refresh", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/hosts/8c18467c-0ac3-4e41-8941-edab39db0b35/refresh", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.11, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.unregisteredstoragedomainsdiscover", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/hosts/f099bab9-9c24-4626-a819-f4101ae24af0/unregisteredstoragedomainsdiscover", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.03, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.upgrade", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/upgrade", - "path_resolved": "/ovirt-engine/api/hosts/1f9aaf95-09a9-4cdc-9c19-4db2bc34b06a/upgrade", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.81, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.upgradeCheck", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/hosts/001d0d73-7981-4c40-8974-4a1006235339/upgradeCheck", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 7.18, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "hosts.enrollcertificate", - "method": "POST", - "path_template": "/ovirt-engine/api/hosts/{id}/enrollcertificate", - "path_resolved": "/ovirt-engine/api/hosts/6323c7ad-4735-4226-8a2e-43c0c41bcdee/enrollcertificate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.99, - "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": 2.23, - "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": 2.25, - "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": 2.27, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "icons.update", - "method": "PUT", - "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.08, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "icons.remove", - "method": "DELETE", - "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.66, - "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": 1.65, - "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": 2.0, - "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.01, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "instancetypes.update", - "method": "PUT", - "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.22, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "instancetypes.remove", - "method": "DELETE", - "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.88, - "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": 2.07, - "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": 1.45, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "jobs.get", - "method": "GET", - "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/3f778cd0-0f97-4740-94c6-6b1905349d56", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.37, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "jobs.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/3f778cd0-0f97-4740-94c6-6b1905349d56", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.99, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "jobs.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/3f778cd0-0f97-4740-94c6-6b1905349d56", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.98, - "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.04, - "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": 1.86, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "katelloerrata.get", - "method": "GET", - "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/42ca6247-6368-454c-a32b-fbbfc3799522", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.4, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "katelloerrata.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/42ca6247-6368-454c-a32b-fbbfc3799522", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.25, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "katelloerrata.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/42ca6247-6368-454c-a32b-fbbfc3799522", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.01, - "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.59, - "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.86, - "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": 2.02, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "macpools.update", - "method": "PUT", - "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.28, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "macpools.remove", - "method": "DELETE", - "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.74, - "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.32, - "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.7, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "networkfilters.get", - "method": "GET", - "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/78f8e9d3-0a83-4b68-916d-4c96b167a109", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.31, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "networkfilters.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/78f8e9d3-0a83-4b68-916d-4c96b167a109", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.33, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "networkfilters.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/78f8e9d3-0a83-4b68-916d-4c96b167a109", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.49, - "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": 2.11, - "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": 1.96, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "networks.get", - "method": "GET", - "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.35, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "networks.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.59, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "networks.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.57, - "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.32, - "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.43, - "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.24, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "openstackimageproviders.update", - "method": "PUT", - "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.59, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "openstackimageproviders.remove", - "method": "DELETE", - "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.39, - "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.25, - "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.57, - "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.3, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "openstacknetworkproviders.update", - "method": "PUT", - "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.51, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "openstacknetworkproviders.remove", - "method": "DELETE", - "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.51, - "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": 1.3, - "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": 1.49, - "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.2, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "openstackvolumeproviders.update", - "method": "PUT", - "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.6, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "openstackvolumeproviders.remove", - "method": "DELETE", - "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.41, - "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.34, - "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.45, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "operatingsystems.get", - "method": "GET", - "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/91827a52-c72e-42a3-aa57-f0cb0398779c", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.22, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "operatingsystems.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/91827a52-c72e-42a3-aa57-f0cb0398779c", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.48, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "operatingsystems.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/91827a52-c72e-42a3-aa57-f0cb0398779c", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.39, - "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": 1.63, - "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.18, - "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.64, - "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.42, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "permissions.remove", - "method": "DELETE", - "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.15, - "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.4, - "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": 1.82, - "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.32, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "roles.update", - "method": "PUT", - "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.7, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "roles.remove", - "method": "DELETE", - "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.48, - "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.57, - "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.56, - "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.29, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "schedulingpolicies.update", - "method": "PUT", - "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.91, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "schedulingpolicies.remove", - "method": "DELETE", - "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.39, - "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.22, - "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.25, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "schedulingpolicyunits.update", - "method": "PUT", - "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.59, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "schedulingpolicyunits.remove", - "method": "DELETE", - "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.36, - "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.5, - "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": 2.02, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "storageconnections.get", - "method": "GET", - "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/86b1cb52-6199-4e2e-85d2-d50c7da7fdf0", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.28, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "storageconnections.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/86b1cb52-6199-4e2e-85d2-d50c7da7fdf0", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.14, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "storageconnections.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/86b1cb52-6199-4e2e-85d2-d50c7da7fdf0", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.38, - "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.4, - "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": 2.09, - "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.45, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "storagedomains.update", - "method": "PUT", - "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.95, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "storagedomains.remove", - "method": "DELETE", - "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.74, - "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.94, - "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.77, - "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.41, - "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.7, - "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.36, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "tags.update", - "method": "PUT", - "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.55, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "tags.remove", - "method": "DELETE", - "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.43, - "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": 1.35, - "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.67, - "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.23, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "templates.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.05, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "templates.remove", - "method": "DELETE", - "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.46, - "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.82, - "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.35, - "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.14, - "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.33, - "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.43, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "users.remove", - "method": "DELETE", - "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.0, - "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.12, - "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.45, - "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.13, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vmpools.update", - "method": "PUT", - "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.41, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vmpools.remove", - "method": "DELETE", - "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.23, - "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.28, - "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": 400, - "expected_hint": 201, - "duration_ms": 1.27, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.get", - "method": "GET", - "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/7b6a6295-5e2a-436c-a090-14a2e271e0f8", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.98, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/1017958b-3456-4015-b9ee-3a1b61afb075", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.14, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/6ef24b84-a510-4d12-a2ce-ac3b903a8e0e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.06, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.start", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/vms/8dbca27d-be92-4a63-b04c-fe9570763523/start", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.2, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.stop", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/vms/e5522070-4357-4546-b73e-954844255454/stop", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.19, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.shutdown", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/vms/68473d20-66d9-4a2f-b2ea-f5b218efd2f5/shutdown", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.09, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.reboot", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/vms/640e657c-0463-4b5d-bc24-a19d985d72a8/reboot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.14, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.suspend", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/vms/cf63160a-3215-4cc0-811f-b351ed171041/suspend", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.11, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.migrate", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/vms/0fae631c-2b61-4e72-b98d-c8511d989f35/migrate", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.34, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.cancelmigration", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/vms/b63f8107-4bd3-407d-8f94-66f96dab03bb/cancelmigration", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.33, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.clone", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/vms/92b14145-6e3f-485f-b03a-cd2b7db33d61/clone", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.26, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.export", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/vms/69173245-05fc-480b-a661-b60c78260711/export", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.08, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.detach", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/vms/fff3d40b-5b14-4ea9-ae57-8847a31d937d/detach", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.07, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.screenthumbnail", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/vms/20001a14-4657-4972-93b0-7339d20df0bf/screenthumbnail", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.06, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.ticket", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/vms/f8bfc930-6b28-4b3d-b21d-434b47bfb932/ticket", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.09, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.logon", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/vms/cb987ed9-5a85-4b51-a0f9-935d43e3a70d/logon", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.08, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vms.maintenance", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/vms/b4ec3271-dc4a-4b12-84e7-573abe8ea96e/maintenance", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.08, - "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/ad9b91b3-72da-4346-94d3-2dd40ec0af63/preview_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.12, - "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/e3ad5e18-f44c-4609-a47c-54e4f0161b09/commit_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.16, - "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/09371749-ea11-48c9-847b-5c1af347b415/undo_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.3, - "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/e6278804-f311-450e-aa31-a55c3006ef2f/freeze_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.29, - "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/d3df82a8-b0cf-4c90-992e-c710fa74f7fd/thaw_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.26, - "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.5, - "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": 400, - "expected_hint": 201, - "duration_ms": 1.79, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vnicprofiles.get", - "method": "GET", - "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/3f7e0cd8-7c16-4c80-bb65-baa3a38f9017", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.4, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vnicprofiles.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/42699258-a956-4cc3-b511-65b4408e8d06", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.21, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "vnicprofiles.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/44c6f3a0-57f3-4277-a566-cabde44d3821", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.37, - "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.34, - "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.69, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "imagetransfers.get", - "method": "GET", - "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/27c422bd-635a-416b-95cf-835884ba9989", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.12, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "imagetransfers.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/27c422bd-635a-416b-95cf-835884ba9989", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.32, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "imagetransfers.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/27c422bd-635a-416b-95cf-835884ba9989", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.48, - "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/c56bed42-5f38-4974-b92a-d4fa0d19b4f2/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.07, - "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/36c0c549-b4b9-4a63-8e7e-19c3ba957b63/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 2.05, - "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/84512ee7-a64e-4a90-9ad9-0c588510db9f/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.34, - "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/f89426fe-e94a-450f-a0d7-88f5b686f304/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.12, - "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/a7a30eec-a8f3-44e1-a752-810a63f89790/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.38, - "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/96642622-be99-4cb1-9813-7159d5312cac/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.4, - "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/f571b87d-b8e3-4a22-86e1-b3171bd29245/nics", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 1.71, - "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/c7fb7221-a18f-4deb-af79-aa415f969118/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.09, - "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/47160205-425e-4f78-a2e9-ed2a68ab9b64/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.5, - "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/7ad3a4eb-522d-4c6c-be00-93851906d743/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.44, - "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/89f97b1c-2608-4986-9462-d243f15f7dcc/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.63, - "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/634b5a7e-92a2-43fe-b3e7-4f938d203f87/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.38, - "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/e9513fc3-2bac-41dd-8450-813edc33a62c/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.34, - "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/680a152d-5971-4ed8-b6f8-2bc69898da04/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.61, - "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/23a5143b-b5e8-460c-9f41-d11df67a5562/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.36, - "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/41f9b556-a768-4f86-95a7-9eea8dd8d1e7/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.65, - "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/b35df961-ee49-4702-a596-a18fbc3b7d6c/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.37, - "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/afa90c4f-c957-499b-a342-d1e82fef58fd/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/e4723ffd-12b5-4877-931b-458c764208c6/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 1.51, - "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/407c5e4c-6177-4796-857b-ae493afa1bd0/snapshots/f8e7d796-b3be-4b08-b8d4-3c2059356f7f", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.19, - "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/b2700b84-8850-4739-9872-1b20721200d4/snapshots/4610c5ca-ac77-4b74-9ecb-23f43294f496", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.17, - "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/707db5ed-5a1e-471c-855d-3514a10aeea3/snapshots/34856594-83bb-434c-990a-bd79ce180eb0", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.31, - "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/4e8702c3-1af7-484a-a493-63e62554dffd/snapshots/d2fe62a3-cd4e-445a-90ed-84f1a3aad7de/restore", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 1.94, - "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/7e9efa26-e0bc-4928-80ee-120dab073d2f/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.48, - "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/6673db97-c9dd-488d-9bb7-6ebe545c317d/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.07, - "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/0eb4c57a-d307-40e5-89ee-c3578bf4e96d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.21, - "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/bbf0e258-443c-4a85-b806-dc9e8ea43930/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.78, - "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/61a50c0b-e97c-4b63-bc39-c622aa56c18a/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.15, - "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/784d6f7d-5263-487b-b61a-77f3a226a8bc/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.43, - "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/951ec376-8d11-4653-86c3-f31434c4cfe7/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.48, - "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/f187abaf-406f-4208-a59d-15f5e413edc8/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.22, - "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/7bafe102-3770-4098-884e-699572695a3f/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.46, - "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/ff4e5d82-12ff-45b7-a6e5-57df8e4a2a42/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.25, - "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/5bd8e10a-0ed2-43f9-9c42-f5020dbb58c2/graphicsconsoles", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.28, - "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/bd47aa5b-1671-4e4e-b77c-6a2feb4c8fce/graphicsconsoles", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.49, - "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/87f00cc1-003c-4164-b32d-210ae7d88e54/graphicsconsoles/216acedb-5c8b-4409-b955-7b347486ca8e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.27, - "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/b8859e31-ec67-499f-a256-b6dba9f9407d/graphicsconsoles/216acedb-5c8b-4409-b955-7b347486ca8e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.52, - "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/984484d3-1bdc-4726-810b-00852187bfb8/graphicsconsoles/216acedb-5c8b-4409-b955-7b347486ca8e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.22, - "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/aaa6c094-0af4-4ae2-ab83-f05fb8220907/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.29, - "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/39704b4c-a152-4c23-bd76-f592f5d7668c/nics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.61, - "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/5682e610-40f2-49f4-91ef-90ff0745427e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.23, - "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/1e374e80-c4eb-469d-9bd6-e634c7acd83b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.49, - "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/5886371e-235a-4563-9f15-74c50378ddf3/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.2, - "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/36eaf67f-7797-4c25-905a-57ac5b47b213/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 1.9, - "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/25688cb5-373f-407d-941e-b981ed64b06c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.26, - "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/1e27386d-289d-481d-a392-79f8a3f21c69/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.37, - "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/5a461a08-8885-4c2b-83c9-54308e225d42/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.52, - "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/3ef4ef4d-2dfa-48d8-aa8e-9055c1b17931/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.3, - "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/72fa0af1-24af-449e-bec4-ada488e6859d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.7, - "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/2cb154c2-ab08-4975-8a32-ff095dd43318/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.64, - "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/1a6b1b42-ca91-4694-8136-ef1fa194956d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.42, - "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/470e5b63-c5a1-4f13-a392-6cc1a958a36d/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.48, - "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/29529c06-b93d-4aba-b9e3-11ee1dcde5d5/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.92, - "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/2f6e5537-b0b6-4975-9fec-3692c111d44c/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.37, - "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/eda8da61-f4aa-436f-9977-e4ac3068196f/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.52, - "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/47e42596-952d-4699-8634-031746dd8a86/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.4, - "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/5582cfc1-af84-4199-8b7d-acebf6649818/statistics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.03, - "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/79200922-16f3-4a0b-93e5-923dfc3e8f42/statistics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.51, - "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/2ff56c13-66cb-4e61-a033-b9e7d2bea59a/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.48, - "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/7adb0a03-c6f4-4705-8dd1-3d15e7e96275/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.48, - "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/8f9cd3c2-3d64-4c19-a36b-79bf3cd37b24/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.23, - "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": 2.67, - "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": 200, - "expected_hint": 201, - "duration_ms": 3.06, - "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/ca5a0a23-9396-4a18-8c34-17fcf78955bb", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.48, - "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/13140cab-b3fd-417e-b90b-ee1ec7b13879", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.39, - "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/ec051b5e-1aac-4d1a-957f-b8636766411d", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.47, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.69, - "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": 200, - "expected_hint": 201, - "duration_ms": 2.71, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.96, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.71, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.35, - "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.68, - "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": 2.84, - "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.66, - "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.84, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.86, - "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.38, - "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.73, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.33, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.51, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.38, - "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": 2.79, - "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.46, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.57, - "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": 404, - "expected_hint": 201, - "duration_ms": 1.38, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.44, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.96, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 4.94, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.17, - "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": 404, - "expected_hint": 201, - "duration_ms": 1.76, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.65, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.5, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.56, - "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": 3.11, - "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": 2.39, - "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/8abfa405-5fee-49f9-988d-9bd0b376b636", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.51, - "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/8abfa405-5fee-49f9-988d-9bd0b376b636", + "path_resolved": "/ovirt-engine/api/affinitylabels/6d7c3a5c-d6c0-4a97-b8fe-1d7dbadd698a", "kind": "item", "status": "passed", "http_status": 200, @@ -73189,2495 +69220,493 @@ "duration_ms": 2.61, "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/8abfa405-5fee-49f9-988d-9bd0b376b636", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.18, - "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": 2.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": 2.6, - "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": 2.2, - "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": 2.24, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.47, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.62, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.95, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles/1fc06617-e4f9-4ebc-8af4-ed975cb65db6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.88, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles/ee5d59ea-38f6-42d8-969e-52747b5b0419", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.81, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles/1c8d6ce3-0fb1-43cc-9aa9-5e036da7ae78", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.46, - "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.52, - "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": 2.23, - "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.84, - "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.83, - "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/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.47, - "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.39, - "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": 2.16, - "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.59, - "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.56, - "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.23, - "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": 2.04, - "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": 2.03, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.58, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.39, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.3, - "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.33, - "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": 2.85, - "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.3, - "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.55, - "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/8c25e806-ce4d-573e-bc31-ed83976beb77", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.44, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.73, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps", - "kind": "collection", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.27, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps/d21feaf8-c426-462f-bba7-1e3aaea26759", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.12, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps/6b63c5d6-a254-441b-8c41-80dc4ed7bc1b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.38, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps/7644202c-29a9-424c-ad17-968b98f8fb60", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.15, - "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": 3.0, - "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.32, - "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.55, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.38, - "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/8d2d49df-9b9a-548a-8f29-0a14e2c91696", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.55, - "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/8d2d49df-9b9a-548a-8f29-0a14e2c91696", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.36, - "detail": "" - }, { "series": "4.3", "operation_id": "bookmarks.list", "method": "GET", - "path_template": "/ovirt-engine/api/v4/bookmarks", - "path_resolved": "/ovirt-engine/api/v4/bookmarks", + "path_template": "/ovirt-engine/api/bookmarks", + "path_resolved": "/ovirt-engine/api/bookmarks", "kind": "collection", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 3.21, "detail": "" }, { "series": "4.3", "operation_id": "bookmarks.add", "method": "POST", - "path_template": "/ovirt-engine/api/v4/bookmarks", - "path_resolved": "/ovirt-engine/api/v4/bookmarks", + "path_template": "/ovirt-engine/api/bookmarks", + "path_resolved": "/ovirt-engine/api/bookmarks", "kind": "collection", "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 4.06, "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", + "path_template": "/ovirt-engine/api/bookmarks/{id}", + "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 3.86, "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/41bd259d-99ba-57db-b003-b8858163a652", + "path_template": "/ovirt-engine/api/bookmarks/{id}", + "path_resolved": "/ovirt-engine/api/bookmarks/13c1ab16-15d3-4624-b069-d0c3d5308ea4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.67, "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/41bd259d-99ba-57db-b003-b8858163a652", + "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": 1.34, + "duration_ms": 6.99, "detail": "" }, { "series": "4.3", "operation_id": "clusterlevels.list", "method": "GET", - "path_template": "/ovirt-engine/api/v4/clusterlevels", - "path_resolved": "/ovirt-engine/api/v4/clusterlevels", + "path_template": "/ovirt-engine/api/clusterlevels", + "path_resolved": "/ovirt-engine/api/clusterlevels", "kind": "collection", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.99, "detail": "" }, { "series": "4.3", "operation_id": "clusterlevels.add", "method": "POST", - "path_template": "/ovirt-engine/api/v4/clusterlevels", - "path_resolved": "/ovirt-engine/api/v4/clusterlevels", + "path_template": "/ovirt-engine/api/clusterlevels", + "path_resolved": "/ovirt-engine/api/clusterlevels", "kind": "collection", "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 3.24, "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", + "path_template": "/ovirt-engine/api/clusterlevels/{id}", + "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 3.23, "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/be3dfc42-61b8-5249-891c-003376268fa4", + "path_template": "/ovirt-engine/api/clusterlevels/{id}", + "path_resolved": "/ovirt-engine/api/clusterlevels/8827a5c7-392c-4bb9-aae3-9edcfa2a01d9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.36, "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/be3dfc42-61b8-5249-891c-003376268fa4", + "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": 2.14, + "duration_ms": 3.81, "detail": "" }, { "series": "4.3", "operation_id": "clusters.list", "method": "GET", - "path_template": "/ovirt-engine/api/v4/clusters", - "path_resolved": "/ovirt-engine/api/v4/clusters", + "path_template": "/ovirt-engine/api/clusters", + "path_resolved": "/ovirt-engine/api/clusters", "kind": "collection", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 4.19, "detail": "" }, { "series": "4.3", "operation_id": "clusters.add", "method": "POST", - "path_template": "/ovirt-engine/api/v4/clusters", - "path_resolved": "/ovirt-engine/api/v4/clusters", + "path_template": "/ovirt-engine/api/clusters", + "path_resolved": "/ovirt-engine/api/clusters", "kind": "collection", "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.79, + "duration_ms": 8.75, "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", + "path_template": "/ovirt-engine/api/clusters/{id}", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.07, + "duration_ms": 3.15, "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_template": "/ovirt-engine/api/clusters/{id}", + "path_resolved": "/ovirt-engine/api/clusters/01173e84-d9fe-4e9e-938a-743d8ec40a9a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.99, + "duration_ms": 3.27, "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 1.9, - "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": 4.08, - "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": 3.21, - "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": 2.45, - "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": 2.54, - "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": 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/v4/datacenters", - "path_resolved": "/ovirt-engine/api/v4/datacenters", + "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.29, + "duration_ms": 9.11, "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", + "path_template": "/ovirt-engine/api/datacenters/{id}", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 10.31, "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/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_template": "/ovirt-engine/api/datacenters/{id}", + "path_resolved": "/ovirt-engine/api/datacenters/cdc1e80a-a2b1-4075-8476-ec867a1017e5", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 9.31, "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/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "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": 1.57, + "duration_ms": 5.39, "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", + "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": 2.3, + "duration_ms": 10.19, "detail": "" }, { "series": "4.3", "operation_id": "disks.list", "method": "GET", - "path_template": "/ovirt-engine/api/v4/disks", - "path_resolved": "/ovirt-engine/api/v4/disks", + "path_template": "/ovirt-engine/api/disks", + "path_resolved": "/ovirt-engine/api/disks", "kind": "collection", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 6.06, "detail": "" }, { "series": "4.3", "operation_id": "disks.add", "method": "POST", - "path_template": "/ovirt-engine/api/v4/disks", - "path_resolved": "/ovirt-engine/api/v4/disks", + "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.32, + "duration_ms": 14.28, "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", + "path_template": "/ovirt-engine/api/disks/{id}", + "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.63, + "duration_ms": 5.6, "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_template": "/ovirt-engine/api/disks/{id}", + "path_resolved": "/ovirt-engine/api/disks/3c98e144-ad8d-4980-b159-cba9c0f7d052", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 4.33, "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.96, + "duration_ms": 4.21, "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", + "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.18, + "duration_ms": 3.87, "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", + "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": 2.75, + "duration_ms": 3.78, "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", + "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": 2.68, + "duration_ms": 4.76, "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", + "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": 4.88, + "duration_ms": 5.7, "detail": "" }, { "series": "4.3", "operation_id": "domains.list", "method": "GET", - "path_template": "/ovirt-engine/api/v4/domains", - "path_resolved": "/ovirt-engine/api/v4/domains", + "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.53, + "duration_ms": 3.71, "detail": "" }, { "series": "4.3", "operation_id": "domains.add", "method": "POST", - "path_template": "/ovirt-engine/api/v4/domains", - "path_resolved": "/ovirt-engine/api/v4/domains", + "path_template": "/ovirt-engine/api/domains", + "path_resolved": "/ovirt-engine/api/domains", "kind": "collection", "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 3.36, + "duration_ms": 2.85, "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", + "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.87, + "duration_ms": 2.2, "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": 13.34, - "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/13902786-7690-5fe2-9030-7b09d92b411d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 15.35, - "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": 8.93, - "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": 7.6, - "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/1112", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 15.86, - "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/1112", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 5.96, - "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/1112", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 5.74, - "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": 26.26, - "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": 6.09, - "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": 404, - "expected_hint": 200, - "duration_ms": 4.37, - "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/b3313044-239a-5c84-8c75-f25bf5269a11", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 5.13, - "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/b3313044-239a-5c84-8c75-f25bf5269a11", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 23.67, - "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": 4.07, - "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": 3.72, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.96, - "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/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.74, - "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/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.79, - "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.76, - "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": 3.56, - "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/0a61e651-896e-4b91-9cf0-2f74864b41db", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.38, - "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/7d783aea-4172-4a88-8b54-c4ce1f8754f8", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.14, - "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/bc56888c-e6f2-430d-9015-79bf0aa33599", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.82, - "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/44bf1217-8786-41b9-8923-7763d7a7c5d2/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.61, - "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/9712405e-bb5a-48c2-a7c5-d571cb53f888/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.64, - "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/ce96bdc5-939e-4746-b768-226b31712565/approve", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.76, - "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/b3574b57-1af8-47c6-913c-7f3b7fbd7f3e/install", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.58, - "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/0e236174-0361-4fe3-a831-88aa60f74fa1/fence", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.66, - "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/243f1e6e-c7b2-45b6-9f0f-7c05b0ffb0d8/iscsidiscover", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.55, - "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/f31bc59a-08f9-44af-a99f-3b89bf43d212/iscsilogin", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.8, - "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/8d6d6343-77d4-412f-9d1e-02962ed5bb4c/commitnetconfig", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.32, - "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/b3300d0f-12ad-4db2-a5ac-7fe600592795/refresh", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 7.18, - "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/a30800d9-551c-44e7-9c40-323e16523dcc/unregisteredstoragedomainsdiscover", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 4.03, - "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/28af4cf1-4274-461d-9704-741179b9b7ae/upgrade", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.76, - "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/d13a07da-63d6-42a8-a5b6-f0666a6afaa1/upgradeCheck", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 5.36, - "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/fc9b5954-1945-41ac-b3d6-e77a4fc343d7/enrollcertificate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 4.16, - "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.94, - "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": 3.36, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.51, - "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/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 4.45, - "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/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 4.5, - "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": 3.21, - "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": 3.1, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.06, - "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/025341da-e43f-52c5-ad75-2fabc7a3fb99", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.57, - "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/025341da-e43f-52c5-ad75-2fabc7a3fb99", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.76, - "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": 5.86, - "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": 2.6, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.01, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.8, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 5.06, - "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": 3.18, - "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": 2.81, - "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/42ca6247-6368-454c-a32b-fbbfc3799522", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.42, - "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/42ca6247-6368-454c-a32b-fbbfc3799522", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.53, - "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/42ca6247-6368-454c-a32b-fbbfc3799522", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.9, - "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": 2.22, - "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": 2.6, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.85, - "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/67eeb84a-19a4-57fa-88d6-e1a6e0847517", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.57, - "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/67eeb84a-19a4-57fa-88d6-e1a6e0847517", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.67, - "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": 2.06, - "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.16, - "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/78f8e9d3-0a83-4b68-916d-4c96b167a109", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.44, - "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/78f8e9d3-0a83-4b68-916d-4c96b167a109", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.98, - "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/78f8e9d3-0a83-4b68-916d-4c96b167a109", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.1, - "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": 2.02, - "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.54, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.83, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.5, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.9, - "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.88, - "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": 2.94, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.88, - "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/f4351207-3aa7-5ea6-82dc-588edfb35949", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.44, - "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/f4351207-3aa7-5ea6-82dc-588edfb35949", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.36, - "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.82, - "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": 2.26, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.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/08d01c4b-421b-56b0-9c9d-60773e301b71", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 6.49, - "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/08d01c4b-421b-56b0-9c9d-60773e301b71", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.75, - "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": 2.4, - "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": 2.41, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.22, - "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/8ac6b67d-ca9a-504e-9575-a736fd185483", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.08, - "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/8ac6b67d-ca9a-504e-9575-a736fd185483", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.94, - "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": 3.07, - "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": 3.22, - "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/91827a52-c72e-42a3-aa57-f0cb0398779c", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.83, - "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/91827a52-c72e-42a3-aa57-f0cb0398779c", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.68, - "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/91827a52-c72e-42a3-aa57-f0cb0398779c", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.69, - "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.17, - "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.56, - "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.52, - "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.91, - "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/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": "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.07, - "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": 3.0, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.29, - "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/f1402964-b206-54ba-ad9a-3e521a89bca6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.42, - "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/f1402964-b206-54ba-ad9a-3e521a89bca6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.42, - "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": 4.54, - "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": 3.49, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.29, - "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/b021976f-8f3f-5597-b9f6-8964d5cbd845", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.24, - "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/b021976f-8f3f-5597-b9f6-8964d5cbd845", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.87, - "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": 2.76, - "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": 2.44, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.78, - "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/41ce6e39-ebd5-584e-a875-65586bdc7f02", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.76, - "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/41ce6e39-ebd5-584e-a875-65586bdc7f02", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.68, - "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": 1.72, - "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.47, - "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/86b1cb52-6199-4e2e-85d2-d50c7da7fdf0", + "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, @@ -75687,101 +69716,400 @@ }, { "series": "4.3", - "operation_id": "storageconnections.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/86b1cb52-6199-4e2e-85d2-d50c7da7fdf0", + "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.67, + "duration_ms": 1.73, "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/86b1cb52-6199-4e2e-85d2-d50c7da7fdf0", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.54, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "storagedomains.list", + "operation_id": "events.list", "method": "GET", - "path_template": "/ovirt-engine/api/v4/storagedomains", - "path_resolved": "/ovirt-engine/api/v4/storagedomains", + "path_template": "/ovirt-engine/api/events", + "path_resolved": "/ovirt-engine/api/events", "kind": "collection", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.05, "detail": "" }, { "series": "4.3", - "operation_id": "storagedomains.add", + "operation_id": "events.add", "method": "POST", - "path_template": "/ovirt-engine/api/v4/storagedomains", - "path_resolved": "/ovirt-engine/api/v4/storagedomains", + "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.43, + "duration_ms": 2.63, "detail": "" }, { "series": "4.3", - "operation_id": "storagedomains.get", + "operation_id": "externalhostproviders.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": 404, - "expected_hint": 200, - "duration_ms": 1.47, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.75, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.52, + "duration_ms": 2.03, "detail": "" }, { "series": "4.3", - "operation_id": "storagedomains.refreshluns", + "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/v4/storagedomains/{id}/refreshluns", - "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/refreshluns", + "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, @@ -75791,23 +70119,49 @@ }, { "series": "4.3", - "operation_id": "storagedomains.updateovfstore", + "operation_id": "hosts.upgrade", "method": "POST", - "path_template": "/ovirt-engine/api/v4/storagedomains/{id}/updateovfstore", - "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/updateovfstore", + "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.68, + "duration_ms": 2.39, "detail": "" }, { "series": "4.3", - "operation_id": "tags.list", + "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/v4/tags", - "path_resolved": "/ovirt-engine/api/v4/tags", + "path_template": "/ovirt-engine/api/icons", + "path_resolved": "/ovirt-engine/api/icons", "kind": "collection", "status": "passed", "http_status": 200, @@ -75817,49 +70171,543 @@ }, { "series": "4.3", - "operation_id": "tags.add", + "operation_id": "icons.add", "method": "POST", - "path_template": "/ovirt-engine/api/v4/tags", - "path_resolved": "/ovirt-engine/api/v4/tags", + "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.85, + "duration_ms": 1.8, "detail": "" }, { "series": "4.3", - "operation_id": "tags.get", + "operation_id": "icons.get", "method": "GET", - "path_template": "/ovirt-engine/api/v4/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_template": "/ovirt-engine/api/icons/{id}", + "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 1.76, "detail": "" }, { "series": "4.3", - "operation_id": "tags.update", + "operation_id": "icons.update", "method": "PUT", - "path_template": "/ovirt-engine/api/v4/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": "tags.remove", + "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/v4/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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, @@ -75869,75 +70717,1154 @@ }, { "series": "4.3", - "operation_id": "templates.list", + "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/v4/templates", - "path_resolved": "/ovirt-engine/api/v4/templates", + "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.56, + "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/v4/templates", - "path_resolved": "/ovirt-engine/api/v4/templates", + "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.04, + "duration_ms": 1.99, "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", + "path_template": "/ovirt-engine/api/templates/{id}", + "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 1.41, "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/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "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.72, + "duration_ms": 1.21, "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/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "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.72, + "duration_ms": 1.49, "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", + "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, @@ -75945,6 +71872,4153 @@ "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", @@ -75955,7 +76029,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.01, + "duration_ms": 1.39, "detail": "" }, { @@ -75968,7 +76042,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 2.31, + "duration_ms": 1.16, "detail": "" }, { @@ -75981,7 +76055,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.01, + "duration_ms": 1.39, "detail": "" }, { @@ -75994,7 +76068,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 1.17, "detail": "" }, { @@ -76002,12 +76076,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/users/{id}", - "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "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.89, + "duration_ms": 1.1, "detail": "" }, { @@ -76020,7 +76094,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.01, + "duration_ms": 1.23, "detail": "" }, { @@ -76033,7 +76107,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.92, + "duration_ms": 1.36, "detail": "" }, { @@ -76044,9 +76118,9 @@ "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 1.22, "detail": "" }, { @@ -76054,12 +76128,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v4/vmpools/0f1e9231-4e3d-42da-a515-9b69930efa7f", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 1.39, "detail": "" }, { @@ -76067,12 +76141,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "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.48, + "duration_ms": 1.33, "detail": "" }, { @@ -76085,7 +76159,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 1.48, "detail": "" }, { @@ -76098,7 +76172,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.57, + "duration_ms": 2.99, "detail": "" }, { @@ -76106,12 +76180,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/ea9de446-2833-41df-ae73-b79c3cdb1b04", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 1.3, "detail": "" }, { @@ -76119,12 +76193,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/80bf14b6-729a-4d46-b9da-7df6bfa5a61b", + "path_resolved": "/ovirt-engine/api/v4/vms/aec42947-af0c-42a3-bc83-6779797b0933", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.9, + "duration_ms": 1.71, "detail": "" }, { @@ -76132,12 +76206,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/23d65267-90c4-4c21-a323-2c91b496040d", + "path_resolved": "/ovirt-engine/api/v4/vms/73ef8f66-51b9-44ed-8f14-f624309d7422", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.96, + "duration_ms": 2.03, "detail": "" }, { @@ -76145,12 +76219,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/v4/vms/aa79f059-08b9-4d6f-b431-c2b1df2eb370/start", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.52, + "duration_ms": 2.3, "detail": "" }, { @@ -76158,12 +76232,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/v4/vms/baacbb5f-8047-4638-9c13-5a8c062d35f2/stop", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 2.03, "detail": "" }, { @@ -76171,12 +76245,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/v4/vms/c2116793-ef36-4f46-9dcd-0d93201a127f/shutdown", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.38, + "duration_ms": 1.86, "detail": "" }, { @@ -76184,12 +76258,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/v4/vms/8465b138-a6a6-41d5-90f2-fe932c5b9cbc/reboot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.44, + "duration_ms": 1.98, "detail": "" }, { @@ -76197,12 +76271,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/v4/vms/09a44186-8d9a-414d-8960-324d4144d588/suspend", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.63, + "duration_ms": 2.05, "detail": "" }, { @@ -76210,12 +76284,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/v4/vms/2e3e197b-5606-4f60-9d93-44b38c09d6c7/migrate", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.59, + "duration_ms": 2.09, "detail": "" }, { @@ -76223,12 +76297,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/v4/vms/9a1e58a3-bbbc-4995-b775-5fd371a49af5/cancelmigration", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 2.05, "detail": "" }, { @@ -76236,12 +76310,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/v4/vms/85ca9c2a-326b-447f-81ba-ac5aef926377/clone", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 409, "expected_hint": 201, - "duration_ms": 1.66, + "duration_ms": 1.4, "detail": "" }, { @@ -76249,12 +76323,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/v4/vms/4fdfbd1c-b4f2-4ff2-be8e-1a9361d1bb62/export", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.55, + "duration_ms": 1.76, "detail": "" }, { @@ -76262,12 +76336,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/v4/vms/2b7d5979-af7e-4513-a8b2-c038c810e362/detach", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.26, + "duration_ms": 2.03, "detail": "" }, { @@ -76275,12 +76349,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/v4/vms/871f74dd-7035-407b-8cae-5d981796702c/screenthumbnail", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 3.38, "detail": "" }, { @@ -76288,12 +76362,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/v4/vms/5c6bdc83-bfb3-42ae-990d-d018ce919f10/ticket", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.46, + "duration_ms": 3.62, "detail": "" }, { @@ -76301,12 +76375,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/v4/vms/c9f0cd52-316a-4eec-b1b3-c1a2d3b5ddfc/logon", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 2.89, "detail": "" }, { @@ -76314,12 +76388,12 @@ "operation_id": "vms.maintenance", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/v4/vms/0fe2ab11-6051-4252-87f3-1a741791a2a5/maintenance", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.65, + "duration_ms": 2.1, "detail": "" }, { @@ -76327,12 +76401,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/3128f44e-7682-416e-99e3-b714efc2fdd5/preview_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.7, + "duration_ms": 2.14, "detail": "" }, { @@ -76340,12 +76414,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/25ae891b-2f03-466f-89a7-6309d794e3d1/commit_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.7, + "duration_ms": 2.68, "detail": "" }, { @@ -76353,12 +76427,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/53bc045f-48a8-4a86-b30f-af4401a639b2/undo_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.27, + "duration_ms": 1.79, "detail": "" }, { @@ -76366,12 +76440,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/v4/vms/6f01c346-712a-4787-b99e-23d0a6fa0d8c/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.64, + "duration_ms": 2.01, "detail": "" }, { @@ -76379,12 +76453,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/v4/vms/e9bcd9f9-afc0-4a18-ba11-7e2972171f18/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.81, + "duration_ms": 1.93, "detail": "" }, { @@ -76397,7 +76471,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 1.54, "detail": "" }, { @@ -76410,7 +76484,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.98, + "duration_ms": 1.89, "detail": "" }, { @@ -76418,12 +76492,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/38e64b6c-bf81-4fb9-9770-30a8797184d5", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.33, + "duration_ms": 1.44, "detail": "" }, { @@ -76431,12 +76505,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/41a14d16-1055-410e-b9af-9323b4659fa5", + "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.9, + "duration_ms": 1.33, "detail": "" }, { @@ -76444,12 +76518,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/7668b9fe-ddca-47c6-b3dc-809bfceb88de", + "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.12, + "duration_ms": 2.35, "detail": "" }, { @@ -76462,7 +76536,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.29, + "duration_ms": 2.23, "detail": "" }, { @@ -76475,7 +76549,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.3, + "duration_ms": 3.27, "detail": "" }, { @@ -76483,12 +76557,12 @@ "operation_id": "imagetransfers.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/27c422bd-635a-416b-95cf-835884ba9989", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/bca2bb71-37d8-4564-ad98-5988e3a7c3d8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 1.52, "detail": "" }, { @@ -76496,12 +76570,12 @@ "operation_id": "imagetransfers.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/27c422bd-635a-416b-95cf-835884ba9989", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/ce96ae4a-eca1-4d6d-8ac1-63d4eaadce1e", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.07, "detail": "" }, { @@ -76509,176 +76583,20 @@ "operation_id": "imagetransfers.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/27c422bd-635a-416b-95cf-835884ba9989", + "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.44, - "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/1fb03d55-cd1e-4ce9-840d-3d69729f523d/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, "duration_ms": 1.77, "detail": "" }, { "series": "4.3", - "operation_id": "diskattachments.add", - "method": "POST", + "operation_id": "diskattachments.list", + "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v4/vms/e525e356-d8e7-41e9-96e1-2631cb52f2b0/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 2.74, - "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/b7b0d2d1-6db5-40ee-8f8b-192ffdc0f37c/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.8, - "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/64f6b91a-b83a-46c2-ae61-4f17a9b7213b/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.48, - "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/4e1306f5-65e5-411c-9a79-441aa4eba785/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.78, - "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/48566b2d-4386-4530-a09c-84f7260e98a5/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.57, - "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/c84e809a-96cf-4bbf-a22f-88ccc7591f66/nics", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 4.03, - "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/373d09ce-9d0e-40e2-a721-29c44da1d56d/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.71, - "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/7d7e7fd3-fbc5-4ea8-bfd3-713c78fefbc9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.86, - "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/61daa814-c3af-4bce-bf03-84683aa82e83/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 4.63, - "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/364e65a1-efc6-48dd-993b-882e5185c9fc/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.17, - "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/6a9a616d-4f9c-4e2c-9c2b-6f2df0de5f4f/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.66, - "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/377a62cb-96cf-42e0-a4a3-2c430837110d/cdroms", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", "http_status": 200, @@ -76688,244 +76606,88 @@ }, { "series": "4.3", - "operation_id": "cdroms.add", + "operation_id": "diskattachments.add", "method": "POST", - "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v4/vms/3fb7c8e0-1129-4d30-9599-7e4ed263fac3/cdroms", + "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.48, + "duration_ms": 3.45, "detail": "" }, { "series": "4.3", - "operation_id": "cdroms.get", + "operation_id": "diskattachments.get", "method": "GET", - "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/cb9f8f9b-4ac0-42cf-a656-8c736514cdbe/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 3.1, + "duration_ms": 1.63, "detail": "" }, { "series": "4.3", - "operation_id": "cdroms.update", + "operation_id": "diskattachments.update", "method": "PUT", - "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/5b0cae6e-ded7-4b99-9a32-d664c549aacc/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.96, - "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/52e833c3-34ae-454d-b3d0-69528105a412/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.3, - "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/f64cb1af-76bc-460a-bdf4-4d1b9866a6dd/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.97, - "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/af82f245-9079-49b4-857f-33f229d9399b/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 2.88, - "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/9689e720-cba4-4c2c-bb39-9ed554d9f5c6/snapshots/b36efab8-0370-4947-bd3f-e6b56aac777b", + "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.41, + "duration_ms": 1.56, "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/a333bda3-bd2b-4340-aa88-fbfaf5ffd3c0/snapshots/78721cce-2ee4-4d8d-bdca-8b91ad0376f9", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.13, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "snapshots.remove", + "operation_id": "diskattachments.remove", "method": "DELETE", - "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/19b52582-5f84-4ac5-ba42-517f14e060db/snapshots/524efbe9-dc48-46df-9d1b-779003194b46", + "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.68, + "duration_ms": 2.57, "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/c4ad2c8c-0957-496d-b652-eaf26282ec4b/snapshots/e6828040-ed3b-4562-a333-fb1dc0eab543/restore", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.08, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "tags.list", + "operation_id": "nics.list", "method": "GET", - "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/77f7f31a-ba10-4770-925c-a4788f377755/tags", + "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.16, + "duration_ms": 1.88, "detail": "" }, { "series": "4.3", - "operation_id": "tags.add", + "operation_id": "nics.add", "method": "POST", - "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/10d26935-1afd-4402-bb38-fc097d035e48/tags", + "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.19, + "duration_ms": 2.65, "detail": "" }, { "series": "4.3", - "operation_id": "tags.get", + "operation_id": "nics.get", "method": "GET", - "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/67a9702a-bc59-4f4d-a1df-fd906ae95ad7/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.77, - "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/16a7bbe4-0590-4d1d-b346-5a44fe6f0576/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.69, - "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/60767c55-fa59-4557-a7c5-ad07520e308c/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.5, - "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/680d35a0-653c-41f4-827e-05d0dfc7544b/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.83, - "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/0c53ce9a-e5db-44e1-a4f3-5272fd1df94e/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.45, - "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/e0519d87-8d24-4895-8864-3e2b8989c115/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.74, - "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/b4cb4fe8-ad5e-43af-97dc-a82d9133bf8a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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, @@ -76935,10 +76697,23 @@ }, { "series": "4.3", - "operation_id": "permissions.remove", + "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}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/e3d33d37-5222-499d-bfa3-4da94d0e293e/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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, @@ -76948,15 +76723,314 @@ }, { "series": "4.3", - "operation_id": "graphicsconsoles.list", + "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}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/792c33c1-c8ee-44d0-8fc4-43ab2b24159e/graphicsconsoles", + "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.51, + "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": "" }, { @@ -76964,12 +77038,12 @@ "operation_id": "graphicsconsoles.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/d934234a-de6f-464b-acf3-f300d2111296/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.05, + "duration_ms": 2.76, "detail": "" }, { @@ -76977,12 +77051,12 @@ "operation_id": "graphicsconsoles.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/cfbcb1a3-4796-4346-b234-d5086d50e28b/graphicsconsoles/216acedb-5c8b-4409-b955-7b347486ca8e", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c69f9ad4-98ba-4791-9609-ebbd607bca91", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 2.65, "detail": "" }, { @@ -76990,12 +77064,12 @@ "operation_id": "graphicsconsoles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/d8f501aa-95a7-4b36-b6e1-38a14fbd6e52/graphicsconsoles/216acedb-5c8b-4409-b955-7b347486ca8e", + "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": 2.15, + "duration_ms": 3.06, "detail": "" }, { @@ -77003,12 +77077,12 @@ "operation_id": "graphicsconsoles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/34839dcd-85e0-4426-bf24-631bbca7bd0f/graphicsconsoles/216acedb-5c8b-4409-b955-7b347486ca8e", + "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.48, + "duration_ms": 1.94, "detail": "" }, { @@ -77016,12 +77090,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/aab4d921-5ae2-457f-949b-49dd05a4ca60/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.5, + "duration_ms": 1.87, "detail": "" }, { @@ -77029,12 +77103,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/99f3a8b6-728e-4a6d-babc-7c3dd81b6e3a/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.68, + "duration_ms": 1.98, "detail": "" }, { @@ -77042,12 +77116,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/1406eac1-5b58-4a63-874f-3b65c25d4951/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 1.59, "detail": "" }, { @@ -77055,12 +77129,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/b9eea352-ba68-48e8-888c-a0fee33bf440/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.85, + "duration_ms": 5.28, "detail": "" }, { @@ -77068,12 +77142,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/ba4d0093-449a-4b77-a731-5df61f7b12d2/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 2.08, + "duration_ms": 3.02, "detail": "" }, { @@ -77081,12 +77155,12 @@ "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/d0368f09-cd52-4cbc-a047-25578e3032a1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.2, + "duration_ms": 6.61, "detail": "" }, { @@ -77094,12 +77168,12 @@ "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/d72f8f8d-91c3-4349-a6be-089e5d74131d/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.0, + "duration_ms": 4.11, "detail": "" }, { @@ -77107,12 +77181,12 @@ "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/b6e863a8-7cbb-4b87-8f0d-1ebf753bc8fd/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.13, + "duration_ms": 3.19, "detail": "" }, { @@ -77120,12 +77194,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/38a57015-e47f-4ff8-86d7-f534d05f7589/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": 1.85, + "duration_ms": 3.01, "detail": "" }, { @@ -77133,12 +77207,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/e7be47d8-9513-46c9-903f-0d816ce22ca0/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": 1.97, + "duration_ms": 4.0, "detail": "" }, { @@ -77146,12 +77220,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/7a3d87ef-b6bc-4a46-a252-8cee6a742d0c/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.69, + "duration_ms": 3.34, "detail": "" }, { @@ -77159,7 +77233,319 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/9e4187e3-eace-4f1d-aa8b-0a5eaa216bc8/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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, @@ -77169,36 +77555,140 @@ }, { "series": "4.3", - "operation_id": "tags.remove", + "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/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/7503ff04-8ef4-45c1-a97a-8e3f96eb1fac/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 2.18, + "duration_ms": 1.68, "detail": "" }, { "series": "4.3", - "operation_id": "permissions.list", + "operation_id": "storagedomains.list", "method": "GET", - "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/843c94f1-7d47-4169-9abe-c6a61ea95ca3/permissions", + "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": 2.84, + "duration_ms": 1.94, "detail": "" }, { "series": "4.3", - "operation_id": "permissions.add", + "operation_id": "storagedomains.add", "method": "POST", - "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/059b6310-a0e4-4e7a-b8c1-8740a333df53/permissions", + "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, @@ -77208,231 +77698,478 @@ }, { "series": "4.3", - "operation_id": "permissions.get", + "operation_id": "clusters.get", "method": "GET", - "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/39973929-377b-4a6f-bc18-b48ab6f86736/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.27, + "duration_ms": 6.56, "detail": "" }, { "series": "4.3", - "operation_id": "permissions.update", + "operation_id": "clusters.update", "method": "PUT", - "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/fa133e5a-1e16-4e4d-9111-7d23d36e2243/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 2.38, + "duration_ms": 4.42, "detail": "" }, { "series": "4.3", - "operation_id": "permissions.remove", + "operation_id": "clusters.remove", "method": "DELETE", - "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/c421c7cd-a644-4b39-8f86-2bb417a3c59e/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 2.25, - "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/937f0bb3-f5b1-46c5-9987-3aa236b97b6d/statistics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.66, - "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/c3b16126-1573-4ef0-ba92-4c85c71c1f4c/statistics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 4.75, - "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/b50e3893-a57a-429d-99e2-222b99f5dafb/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.62, - "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/76848003-b476-4234-9bcc-9dfad5791f51/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.71, - "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/bb28058c-b69a-4633-885e-2c550e5e2873/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.18, - "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.63, - "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": 200, - "expected_hint": 201, - "duration_ms": 5.96, - "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/8712e85c-9e6e-4d6c-a7b7-adb65e98bbd8", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 3.22, - "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/a985cdd5-a379-461a-93ec-e4476d5b1f04", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 5.91, - "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/04e58041-ad82-40d3-90d2-deeb62b98ec6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 6.9, + "duration_ms": 10.82, "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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.52, + "duration_ms": 7.24, "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", + "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, + "http_status": 201, "expected_hint": 201, - "duration_ms": 5.5, + "duration_ms": 9.37, "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/d123a698-64ee-41aa-8788-28ffa575ef9e", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.46, + "duration_ms": 11.13, "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/d123a698-64ee-41aa-8788-28ffa575ef9e", + "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": 2.59, + "duration_ms": 6.29, "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/d123a698-64ee-41aa-8788-28ffa575ef9e", + "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, @@ -77442,62 +78179,1804 @@ }, { "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", + "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": 10.18, + "duration_ms": 8.71, "detail": "" }, { "series": "4.3", - "operation_id": "permissions.add", + "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/clusters/{cluster_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/permissions", + "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": 10.32, + "duration_ms": 12.01, "detail": "" }, { "series": "4.3", - "operation_id": "permissions.get", + "operation_id": "files.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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.5, + "duration_ms": 7.27, "detail": "" }, { "series": "4.3", - "operation_id": "permissions.update", + "operation_id": "files.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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.36, + "duration_ms": 8.71, "detail": "" }, { "series": "4.3", - "operation_id": "permissions.remove", + "operation_id": "files.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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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, @@ -77505,1288 +79984,417 @@ "duration_ms": 6.52, "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": 17.99, - "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": 13.17, - "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": 404, - "expected_hint": 200, - "duration_ms": 11.96, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 9.32, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 9.29, - "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": 12.14, - "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": 29.14, - "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": 404, - "expected_hint": 200, - "duration_ms": 10.75, - "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": 404, - "expected_hint": 201, - "duration_ms": 3.83, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.28, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 4.78, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.4, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.28, - "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": 404, - "expected_hint": 201, - "duration_ms": 3.24, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.17, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.28, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.27, - "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": 2.18, - "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": 2.59, - "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/8abfa405-5fee-49f9-988d-9bd0b376b636", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.08, - "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/8abfa405-5fee-49f9-988d-9bd0b376b636", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.68, - "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/8abfa405-5fee-49f9-988d-9bd0b376b636", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.46, - "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": 1.82, - "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.5, - "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": 1.96, - "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": 1.73, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.57, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.61, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.0, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles/83090767-bb96-46d3-88ba-d3f95727c50a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.64, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles/06b16a44-cadb-4c7d-89b6-0448f426eea3", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.51, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles/941a101d-3aa4-4b7a-b1f7-1de9e92f44e0", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.84, - "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": 2.14, - "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": 2.86, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.59, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.74, - "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/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.62, - "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": 1.67, - "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": 3.14, - "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": 1.88, - "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": 2.37, - "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.61, - "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": 1.72, - "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": 2.15, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.82, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.79, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.54, - "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": 1.56, - "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": 3.49, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.42, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.92, - "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/8c25e806-ce4d-573e-bc31-ed83976beb77", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.62, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.83, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps", - "kind": "collection", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.54, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps/31a32ef8-a458-412d-99b9-fe45b1bf352b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.72, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps/c30e8b5b-140a-486e-b760-69ae305341d4", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.94, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps/0cbdfa95-05c5-49a3-bafb-a7e11fbfad9b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.77, - "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": 5.66, - "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": 2.13, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.79, - "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": 1.74, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.8, - "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": 2.21, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.55, - "detail": "" - }, { "series": "4.3", "operation_id": "head.clusters.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/clusters", - "path_resolved": "/ovirt-engine/api/clusters", + "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.98, + "duration_ms": 6.18, "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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 5.71, "detail": "" }, { "series": "4.3", "operation_id": "head.datacenters.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/datacenters", - "path_resolved": "/ovirt-engine/api/datacenters", + "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.95, + "duration_ms": 5.5, "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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.91, + "duration_ms": 10.6, "detail": "" }, { "series": "4.3", "operation_id": "head.disks.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/disks", - "path_resolved": "/ovirt-engine/api/disks", + "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.94, + "duration_ms": 7.16, "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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.62, + "duration_ms": 6.18, "detail": "" }, { "series": "4.3", "operation_id": "head.domains.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/domains", - "path_resolved": "/ovirt-engine/api/domains", + "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.16, + "duration_ms": 6.94, "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", + "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.63, + "duration_ms": 5.18, "detail": "" }, { "series": "4.3", "operation_id": "head.events.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/events", - "path_resolved": "/ovirt-engine/api/events", + "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.14, + "duration_ms": 5.48, "detail": "" }, { "series": "4.3", "operation_id": "head.events.get", "method": "HEAD", - "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1112", + "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, + "duration_ms": 4.5, "detail": "" }, { "series": "4.3", "operation_id": "head.externalhostproviders.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/externalhostproviders", - "path_resolved": "/ovirt-engine/api/externalhostproviders", + "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.8, + "duration_ms": 3.76, "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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 3.39, "detail": "" }, { "series": "4.3", "operation_id": "head.groups.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/groups", - "path_resolved": "/ovirt-engine/api/groups", + "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.69, + "duration_ms": 4.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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 6.41, "detail": "" }, { "series": "4.3", "operation_id": "head.hosts.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/hosts", - "path_resolved": "/ovirt-engine/api/hosts", + "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.77, + "duration_ms": 3.94, "detail": "" }, { "series": "4.3", "operation_id": "head.hosts.get", "method": "HEAD", - "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/fe4685e6-e861-450f-a0b1-cc14889fdbc1", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 3.39, "detail": "" }, { "series": "4.3", "operation_id": "head.icons.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/icons", - "path_resolved": "/ovirt-engine/api/icons", + "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.97, + "duration_ms": 3.21, "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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 3.5, "detail": "" }, { "series": "4.3", "operation_id": "head.instancetypes.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/instancetypes", - "path_resolved": "/ovirt-engine/api/instancetypes", + "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.61, + "duration_ms": 6.69, "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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 4.96, "detail": "" }, { "series": "4.3", "operation_id": "head.jobs.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/jobs", - "path_resolved": "/ovirt-engine/api/jobs", + "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.38, + "duration_ms": 6.63, "detail": "" }, { "series": "4.3", "operation_id": "head.jobs.get", "method": "HEAD", - "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/3f778cd0-0f97-4740-94c6-6b1905349d56", + "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.47, + "duration_ms": 6.14, "detail": "" }, { "series": "4.3", "operation_id": "head.katelloerrata.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/katelloerrata", - "path_resolved": "/ovirt-engine/api/katelloerrata", + "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.53, + "duration_ms": 5.98, "detail": "" }, { "series": "4.3", "operation_id": "head.katelloerrata.get", "method": "HEAD", - "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/42ca6247-6368-454c-a32b-fbbfc3799522", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 5.58, "detail": "" }, { "series": "4.3", "operation_id": "head.macpools.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/macpools", - "path_resolved": "/ovirt-engine/api/macpools", + "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.89, + "duration_ms": 4.71, "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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.93, + "duration_ms": 4.64, "detail": "" }, { "series": "4.3", "operation_id": "head.networkfilters.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/networkfilters", - "path_resolved": "/ovirt-engine/api/networkfilters", + "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.83, + "duration_ms": 4.91, "detail": "" }, { "series": "4.3", "operation_id": "head.networkfilters.get", "method": "HEAD", - "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/78f8e9d3-0a83-4b68-916d-4c96b167a109", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.82, + "duration_ms": 5.63, "detail": "" }, { "series": "4.3", "operation_id": "head.networks.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/networks", - "path_resolved": "/ovirt-engine/api/networks", + "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.78, + "duration_ms": 4.56, "detail": "" }, { "series": "4.3", "operation_id": "head.networks.get", "method": "HEAD", - "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/d123a698-64ee-41aa-8788-28ffa575ef9e", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 2.91, "detail": "" }, { "series": "4.3", "operation_id": "head.openstackimageproviders.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/openstackimageproviders", - "path_resolved": "/ovirt-engine/api/openstackimageproviders", + "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.84, + "duration_ms": 3.66, "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", + "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": 404, - "expected_hint": 200, - "duration_ms": 2.01, - "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": 2.8, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.72, - "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": 3.44, @@ -78794,127 +80402,270 @@ }, { "series": "4.3", - "operation_id": "head.openstackvolumeproviders.get", + "operation_id": "head.openstacknetworkproviders.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.0, + "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/operatingsystems", - "path_resolved": "/ovirt-engine/api/operatingsystems", + "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": 2.16, + "duration_ms": 3.14, "detail": "" }, { "series": "4.3", "operation_id": "head.operatingsystems.get", "method": "HEAD", - "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/91827a52-c72e-42a3-aa57-f0cb0398779c", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.49, + "duration_ms": 2.3, "detail": "" }, { "series": "4.3", "operation_id": "head.permissions.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/permissions", - "path_resolved": "/ovirt-engine/api/permissions", + "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": 3.67, + "duration_ms": 4.18, "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", + "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": 4.52, + "duration_ms": 3.57, "detail": "" }, { "series": "4.3", "operation_id": "head.roles.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/roles", - "path_resolved": "/ovirt-engine/api/roles", + "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.23, + "duration_ms": 3.82, "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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.05, + "duration_ms": 2.98, "detail": "" }, { "series": "4.3", "operation_id": "head.schedulingpolicies.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/schedulingpolicies", - "path_resolved": "/ovirt-engine/api/schedulingpolicies", + "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.29, + "duration_ms": 2.89, "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", + "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": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.34, + "duration_ms": 3.27, "detail": "" }, { "series": "4.3", "operation_id": "head.schedulingpolicyunits.list", "method": "HEAD", - "path_template": "/ovirt-engine/api/schedulingpolicyunits", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits", + "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, @@ -78922,1683 +80673,6 @@ "duration_ms": 2.91, "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": 404, - "expected_hint": 200, - "duration_ms": 2.87, - "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": 1.89, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "head.storageconnections.get", - "method": "HEAD", - "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/86b1cb52-6199-4e2e-85d2-d50c7da7fdf0", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.85, - "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": 2.45, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.74, - "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": 2.04, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.73, - "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": 2.8, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.14, - "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": 2.19, - "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": 1.85, - "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": 1.7, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.61, - "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": 1.69, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "head.vms.get", - "method": "HEAD", - "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/87c49571-6495-4a2d-9c29-e5c81fbdad0e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.86, - "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": 2.04, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "head.vnicprofiles.get", - "method": "HEAD", - "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/9c56055f-71d0-476f-b7f4-f871030c6d1b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.79, - "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": 1.57, - "detail": "" - }, - { - "series": "4.3", - "operation_id": "head.imagetransfers.get", - "method": "HEAD", - "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/27c422bd-635a-416b-95cf-835884ba9989", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.57, - "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/1670e896-3385-44cf-9da7-5b29be801f18/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.76, - "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/83333345-7c07-4773-a0db-365d64691a3b/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.77, - "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/95bd40d7-b1b3-4dd6-9a58-f3dbb8477f10/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.69, - "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/893d1ee5-0164-4bce-bec7-024fd6ce72a2/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.49, - "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/142676c6-387a-4718-8e54-4fcdc5396511/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.7, - "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/1dc94408-cfd4-4a55-ac57-2a207b6cec61/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.82, - "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/3c4e0694-23b3-4f54-80fa-65c92be1dd70/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.03, - "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/245d5807-e340-473d-ae56-62a4c5ce81ea/snapshots/f9d868c9-f2a0-4731-8fb7-09687ab4eb84", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.61, - "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/11f28c98-8973-49aa-99c1-37be3111e038/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.71, - "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/2e9a0155-069c-43d6-b31b-03be3bccbaaf/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.62, - "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/c1203fcf-21e2-4310-bc60-670d62773f42/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.77, - "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/518a2d4b-c3db-422f-8a4f-76e672388ae8/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.72, - "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/ce95f35c-1301-4e9d-8793-cc521973460c/graphicsconsoles", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.68, - "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/a04cafa7-5299-4830-b8be-babc7b31f1f8/graphicsconsoles/216acedb-5c8b-4409-b955-7b347486ca8e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.73, - "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/7ead615a-8e3c-42b1-b6bc-cb5fce61833b/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.42, - "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/eddfbfba-e425-428f-b409-714db008655b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.64, - "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/a491f2da-4088-41e6-a586-3f98a5c24b86/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.89, - "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/7966a62d-472f-4fa7-b744-3a5374c9ebb6/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.69, - "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/4237dca9-9970-43c1-bdb5-a1d943d389fb/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.97, - "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/5d13e1fd-59b6-4955-b93c-043209145d41/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": "head.statistics.list", - "method": "HEAD", - "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/01ffe04c-78e3-48b6-bb87-2b48720bfc41/statistics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.44, - "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/665d74c7-62ba-443f-bfe9-fca0011eca79/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.6, - "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": 1.96, - "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/250f2e2c-a459-4b97-94c7-e152e38f81eb", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.7, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.72, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.56, - "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": 1.67, - "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": 1.67, - "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": 1.91, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.87, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.91, - "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": 404, - "expected_hint": 200, - "duration_ms": 4.73, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.53, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.95, - "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": 3.43, - "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/8abfa405-5fee-49f9-988d-9bd0b376b636", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.35, - "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": 1.95, - "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": 3.72, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.74, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles/9a239d45-c387-482f-a36d-fe7e266a06bd", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.05, - "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": 3.37, - "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": 404, - "expected_hint": 200, - "duration_ms": 4.38, - "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": 6.5, - "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": 3.26, - "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": 2.86, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.35, - "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": 1.94, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.79, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.48, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps/ef9ddc53-7d1e-4273-82c9-811f29f4a175", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.71, - "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": 2.33, - "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": 1.9, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.45, - "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": 1.29, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.43, - "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": 1.65, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.97, - "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": 1.77, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.48, - "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": 1.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": 404, - "expected_hint": 200, - "duration_ms": 1.61, - "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": 1.55, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.55, - "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": 1.45, - "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": 1.61, - "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": 2.05, - "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/1112", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.97, - "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": 2.09, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.51, - "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": 2.15, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.54, - "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": 1.53, - "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/64865b1d-6dd2-4151-bf7c-8783dc2f4391", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.48, - "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": 1.55, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.6, - "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": 1.89, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.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": 2.73, - "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/3f778cd0-0f97-4740-94c6-6b1905349d56", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.53, - "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": 1.41, - "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/42ca6247-6368-454c-a32b-fbbfc3799522", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.49, - "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": 1.59, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.66, - "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": 1.83, - "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/78f8e9d3-0a83-4b68-916d-4c96b167a109", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.35, - "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": 3.95, - "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/d123a698-64ee-41aa-8788-28ffa575ef9e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.26, - "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": 2.21, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.57, - "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": 2.53, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.71, - "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.44, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.24, - "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": 2.18, - "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/91827a52-c72e-42a3-aa57-f0cb0398779c", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.85, - "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": 1.82, - "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": 1.96, - "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": 2.68, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.96, - "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.36, - "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": 404, - "expected_hint": 200, - "duration_ms": 5.09, - "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": 3.19, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.92, - "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": 2.89, - "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/86b1cb52-6199-4e2e-85d2-d50c7da7fdf0", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 5.79, - "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.35, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.6, - "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": 3.35, - "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": 404, - "expected_hint": 200, - "duration_ms": 4.3, - "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.5, - "detail": "" - }, { "series": "4.3", "operation_id": "head.templates.get", @@ -80607,9 +80681,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 4.55, "detail": "" }, { @@ -80622,7 +80696,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 5.44, "detail": "" }, { @@ -80635,7 +80709,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 4.48, "detail": "" }, { @@ -80648,7 +80722,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 3.53, "detail": "" }, { @@ -80659,9 +80733,9 @@ "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 3.18, "detail": "" }, { @@ -80674,7 +80748,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.7, + "duration_ms": 2.94, "detail": "" }, { @@ -80682,12 +80756,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/e5fac206-9b40-4468-80f7-87775b897d63", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.29, + "duration_ms": 3.62, "detail": "" }, { @@ -80700,7 +80774,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 3.27, "detail": "" }, { @@ -80708,12 +80782,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/84fa7806-d03f-4693-b8fe-e9c26a5e81d9", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.1, + "duration_ms": 3.44, "detail": "" }, { @@ -80726,7 +80800,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 5.84, "detail": "" }, { @@ -80734,12 +80808,12 @@ "operation_id": "head.imagetransfers.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/27c422bd-635a-416b-95cf-835884ba9989", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/bca2bb71-37d8-4564-ad98-5988e3a7c3d8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 6.16, "detail": "" }, { @@ -80747,12 +80821,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v4/vms/3138423a-5db3-4ef5-961c-25c886a794d2/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": 1.81, + "duration_ms": 6.45, "detail": "" }, { @@ -80760,12 +80834,12 @@ "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/00dde5f2-5b11-4b16-ad69-11628dd2fcfa/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.9, + "duration_ms": 8.51, "detail": "" }, { @@ -80773,12 +80847,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/vms/3978588d-36a5-4300-b51b-4985c2c1247f/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.72, + "duration_ms": 7.12, "detail": "" }, { @@ -80786,12 +80860,12 @@ "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/307aec0e-4a44-4c17-a586-30260d12a40d/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 3.53, + "duration_ms": 6.23, "detail": "" }, { @@ -80799,12 +80873,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v4/vms/9ff75096-6471-40fe-99da-eb5c5f046037/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.93, + "duration_ms": 4.88, "detail": "" }, { @@ -80812,12 +80886,12 @@ "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/6824101d-a9cf-41ef-9725-41343bc901b3/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.71, + "duration_ms": 6.52, "detail": "" }, { @@ -80825,12 +80899,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v4/vms/4a09c3f4-718f-4912-8381-d4f0c1b071e6/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": 1.61, + "duration_ms": 6.38, "detail": "" }, { @@ -80838,12 +80912,12 @@ "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/f3dced01-76f6-42d9-8b4c-bbf5fa9a4b1b/snapshots/b6cc3247-7abe-4715-8d55-6b5ef25832aa", + "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": 1.63, + "duration_ms": 8.34, "detail": "" }, { @@ -80851,12 +80925,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/28152190-86b6-4d8e-8313-a979c5d3cb49/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": 1.7, + "duration_ms": 7.46, "detail": "" }, { @@ -80864,12 +80938,12 @@ "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/f02be47a-587c-4a43-b36c-9427dd40a06c/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.56, + "duration_ms": 6.66, "detail": "" }, { @@ -80877,12 +80951,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/vms/4b503f77-5016-4eea-9348-05276165791c/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.45, + "duration_ms": 8.01, "detail": "" }, { @@ -80890,12 +80964,12 @@ "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/7f1aae40-e95a-421a-9215-4c9905f95a52/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 2.84, + "duration_ms": 6.31, "detail": "" }, { @@ -80903,12 +80977,12 @@ "operation_id": "head.graphicsconsoles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/481fcbe6-36b3-4fc1-8013-337c8d997773/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": 2.41, + "duration_ms": 6.17, "detail": "" }, { @@ -80916,12 +80990,12 @@ "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/f4a283e0-1f62-4404-9820-e97d18e78e68/graphicsconsoles/216acedb-5c8b-4409-b955-7b347486ca8e", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c69f9ad4-98ba-4791-9609-ebbd607bca91", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.03, + "duration_ms": 5.27, "detail": "" }, { @@ -80929,12 +81003,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/cc80f68a-06bc-4e58-9dd3-59207f346888/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.63, + "duration_ms": 5.08, "detail": "" }, { @@ -80942,12 +81016,12 @@ "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/22bcc90c-2b77-4cc5-a6f7-83783b8947e3/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.96, + "duration_ms": 4.54, "detail": "" }, { @@ -80955,12 +81029,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/566c5b73-f953-46d0-95fa-cc49eeaaead3/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.3, + "duration_ms": 5.16, "detail": "" }, { @@ -80968,12 +81042,12 @@ "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/94b0c606-ebf5-4d43-8f6f-d6ed66b5a296/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.82, + "duration_ms": 5.74, "detail": "" }, { @@ -80981,12 +81055,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/192bcbb7-46d4-43f2-89e9-61b701a2ee4b/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.7, + "duration_ms": 7.44, "detail": "" }, { @@ -80994,12 +81068,12 @@ "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/6da4d144-9a95-4726-ba29-a0b7168bb25f/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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, + "duration_ms": 7.25, "detail": "" }, { @@ -81007,12 +81081,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v4/hosts/8879ca47-87a1-44e5-bb8c-29b3e7ca54fb/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.7, + "duration_ms": 7.03, "detail": "" }, { @@ -81020,12 +81094,12 @@ "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/33f8a4db-1298-4284-a0bd-eb78420f4685/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 11.59, "detail": "" }, { @@ -81038,7 +81112,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 6.79, "detail": "" }, { @@ -81046,12 +81120,12 @@ "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/ee46688a-b8b8-4f69-8c8f-22240c61623d", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/77f723d3-6da9-4094-8f16-f7b2b6a21f74", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 6.26, "detail": "" }, { @@ -81062,9 +81136,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 7.06, "detail": "" }, { @@ -81072,12 +81146,12 @@ "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/d123a698-64ee-41aa-8788-28ffa575ef9e", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.44, + "duration_ms": 6.88, "detail": "" }, { @@ -81090,7 +81164,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.42, + "duration_ms": 6.62, "detail": "" }, { @@ -81103,7 +81177,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 6.83, "detail": "" }, { @@ -81116,7 +81190,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 6.47, "detail": "" }, { @@ -81127,9 +81201,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 6.23, "detail": "" }, { @@ -81140,9 +81214,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.11, + "duration_ms": 7.24, "detail": "" }, { @@ -81153,9 +81227,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.36, + "duration_ms": 6.64, "detail": "" }, { @@ -81166,9 +81240,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 5.41, "detail": "" }, { @@ -81176,12 +81250,12 @@ "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/d123a698-64ee-41aa-8788-28ffa575ef9e", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.86, + "duration_ms": 6.18, "detail": "" }, { @@ -81194,7 +81268,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.45, + "duration_ms": 8.5, "detail": "" }, { @@ -81202,12 +81276,12 @@ "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/8abfa405-5fee-49f9-988d-9bd0b376b636", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 13.87, "detail": "" }, { @@ -81220,7 +81294,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.18, + "duration_ms": 14.95, "detail": "" }, { @@ -81233,7 +81307,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.58, + "duration_ms": 6.37, "detail": "" }, { @@ -81241,12 +81315,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v4/networks/d123a698-64ee-41aa-8788-28ffa575ef9e/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.78, + "duration_ms": 4.02, "detail": "" }, { @@ -81254,12 +81328,12 @@ "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/d123a698-64ee-41aa-8788-28ffa575ef9e/vnicprofiles/ebcf9ff1-e378-4056-9bda-a5efbb0c43a5", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.27, + "duration_ms": 3.46, "detail": "" }, { @@ -81272,7 +81346,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.62, + "duration_ms": 3.41, "detail": "" }, { @@ -81283,9 +81357,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.46, + "duration_ms": 3.59, "detail": "" }, { @@ -81298,7 +81372,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.76, + "duration_ms": 3.78, "detail": "" }, { @@ -81311,7 +81385,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 6.96, + "duration_ms": 3.56, "detail": "" }, { @@ -81324,7 +81398,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.83, + "duration_ms": 3.93, "detail": "" }, { @@ -81335,9 +81409,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.58, + "duration_ms": 3.57, "detail": "" }, { @@ -81350,7 +81424,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.48, + "duration_ms": 3.59, "detail": "" }, { @@ -81361,9 +81435,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 7.54, + "duration_ms": 4.01, "detail": "" }, { @@ -81371,12 +81445,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v4/jobs/3f778cd0-0f97-4740-94c6-6b1905349d56/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": 6.1, + "duration_ms": 4.68, "detail": "" }, { @@ -81384,12 +81458,12 @@ "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/3f778cd0-0f97-4740-94c6-6b1905349d56/steps/39c3eae1-5f1d-43b7-a978-1c1f196a6339", + "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": 4.34, + "duration_ms": 3.57, "detail": "" }, { @@ -81402,7 +81476,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.78, + "duration_ms": 74.29, "detail": "" }, { @@ -81415,7 +81489,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.95, + "duration_ms": 22.55, "detail": "" }, { @@ -81428,7 +81502,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 4.16, + "duration_ms": 15.88, "detail": "" }, { @@ -81441,7 +81515,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 19.02, "detail": "" }, { @@ -81449,12 +81523,12 @@ "operation_id": "affinitylabels.update", "method": "PUT", "path_template": "/ovirt-engine/api/affinitylabels/{id}", - "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", + "path_resolved": "/ovirt-engine/api/affinitylabels/a7abb936-121c-4bdc-ad8d-4d28e30ac49b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.34, + "duration_ms": 35.68, "detail": "" }, { @@ -81462,12 +81536,12 @@ "operation_id": "affinitylabels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/affinitylabels/{id}", - "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", + "path_resolved": "/ovirt-engine/api/affinitylabels/0aa2503e-90ed-4bb9-8839-3f84d70f1cbb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 13.05, "detail": "" }, { @@ -81480,7 +81554,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 7.3, "detail": "" }, { @@ -81493,7 +81567,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.09, + "duration_ms": 9.03, "detail": "" }, { @@ -81506,7 +81580,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.88, + "duration_ms": 12.73, "detail": "" }, { @@ -81514,12 +81588,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/10bff41c-d21f-49bb-9517-49999e0153f6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.67, + "duration_ms": 13.11, "detail": "" }, { @@ -81527,12 +81601,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/ac8fdb8d-a1bd-4d60-833e-6d13efd584e8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 11.89, "detail": "" }, { @@ -81545,7 +81619,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 10.42, "detail": "" }, { @@ -81558,7 +81632,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.41, + "duration_ms": 13.39, "detail": "" }, { @@ -81571,7 +81645,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.7, + "duration_ms": 13.48, "detail": "" }, { @@ -81579,12 +81653,12 @@ "operation_id": "clusterlevels.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/clusterlevels/93e6905e-903f-4448-ac71-da8825d8eecd", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.03, + "duration_ms": 12.65, "detail": "" }, { @@ -81592,12 +81666,12 @@ "operation_id": "clusterlevels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/clusterlevels/6db30493-d29a-4101-9479-ddbd2d104c72", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.83, + "duration_ms": 22.04, "detail": "" }, { @@ -81610,7 +81684,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.91, + "duration_ms": 14.13, "detail": "" }, { @@ -81623,7 +81697,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.53, + "duration_ms": 13.51, "detail": "" }, { @@ -81636,7 +81710,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.91, + "duration_ms": 6.1, "detail": "" }, { @@ -81644,12 +81718,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/ad990eb2-a50b-40d2-81a5-a7833f4a0f22", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.98, + "duration_ms": 9.38, "detail": "" }, { @@ -81657,12 +81731,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/0d3f8c88-b403-4b53-9b0b-55467babe114", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.16, + "duration_ms": 5.76, "detail": "" }, { @@ -81675,7 +81749,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.82, + "duration_ms": 8.8, "detail": "" }, { @@ -81688,7 +81762,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.06, + "duration_ms": 11.7, "detail": "" }, { @@ -81701,7 +81775,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.88, + "duration_ms": 17.76, "detail": "" }, { @@ -81714,7 +81788,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.92, + "duration_ms": 13.85, "detail": "" }, { @@ -81727,7 +81801,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.38, + "duration_ms": 4.43, "detail": "" }, { @@ -81740,7 +81814,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.84, + "duration_ms": 8.49, "detail": "" }, { @@ -81753,7 +81827,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 6.88, "detail": "" }, { @@ -81761,12 +81835,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/6da0cad0-5c3e-4290-9886-f8f062270835", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 11.43, "detail": "" }, { @@ -81774,12 +81848,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/1297d401-6012-4571-a3cd-17f1fc40255f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.95, + "duration_ms": 10.34, "detail": "" }, { @@ -81792,7 +81866,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.15, + "duration_ms": 12.53, "detail": "" }, { @@ -81805,7 +81879,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 7.38, "detail": "" }, { @@ -81818,7 +81892,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.78, + "duration_ms": 13.27, "detail": "" }, { @@ -81831,7 +81905,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 7.53, "detail": "" }, { @@ -81839,12 +81913,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/9b1d91f9-978a-4a4f-9a35-653805fbb4b6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 5.04, "detail": "" }, { @@ -81852,12 +81926,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/550a5330-ec65-489f-8122-ce3c1422824e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.58, "detail": "" }, { @@ -81870,7 +81944,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.1, + "duration_ms": 5.4, "detail": "" }, { @@ -81883,7 +81957,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.09, + "duration_ms": 5.78, "detail": "" }, { @@ -81896,7 +81970,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.95, + "duration_ms": 6.89, "detail": "" }, { @@ -81909,7 +81983,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.91, + "duration_ms": 9.05, "detail": "" }, { @@ -81922,7 +81996,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.73, + "duration_ms": 8.49, "detail": "" }, { @@ -81935,7 +82009,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 5.87, "detail": "" }, { @@ -81948,7 +82022,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.08, + "duration_ms": 7.26, "detail": "" }, { @@ -81961,7 +82035,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 6.09, "detail": "" }, { @@ -81974,7 +82048,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 4.71, "detail": "" }, { @@ -81982,12 +82056,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/domains/{id}", - "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/domains/d39544d5-04b7-4215-8742-136e08557c3e", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 3.62, "detail": "" }, { @@ -82000,7 +82074,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 3.87, "detail": "" }, { @@ -82013,7 +82087,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.2, + "duration_ms": 3.79, "detail": "" }, { @@ -82021,12 +82095,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1113", + "path_resolved": "/ovirt-engine/api/events/56", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 4.75, "detail": "" }, { @@ -82034,12 +82108,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1113", + "path_resolved": "/ovirt-engine/api/events/56", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.89, + "duration_ms": 3.08, "detail": "" }, { @@ -82047,12 +82121,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1113", + "path_resolved": "/ovirt-engine/api/events/bb255e29-26ed-42b2-9f8b-98f7120ba675", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 9.94, "detail": "" }, { @@ -82065,7 +82139,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 6.98, "detail": "" }, { @@ -82078,7 +82152,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.81, + "duration_ms": 11.43, "detail": "" }, { @@ -82091,7 +82165,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 10.44, "detail": "" }, { @@ -82099,12 +82173,12 @@ "operation_id": "externalhostproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/8e79d6f1-2782-4e5d-bc36-075e35ebf437", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 11.53, "detail": "" }, { @@ -82112,12 +82186,12 @@ "operation_id": "externalhostproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/21f1558f-7c44-4b5d-ada2-3b4a20ebb9a2", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 9.59, "detail": "" }, { @@ -82130,7 +82204,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 11.42, "detail": "" }, { @@ -82143,7 +82217,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 12.28, "detail": "" }, { @@ -82156,7 +82230,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 7.5, "detail": "" }, { @@ -82164,12 +82238,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/6d73b819-d28c-4d1f-bd06-9b638d016f49", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 9.04, "detail": "" }, { @@ -82177,12 +82251,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/94db54f9-e0a6-4d3a-966f-848145fc3ebe", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 7.77, "detail": "" }, { @@ -82195,7 +82269,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 8.59, "detail": "" }, { @@ -82206,9 +82280,9 @@ "path_resolved": "/ovirt-engine/api/hosts", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.85, + "duration_ms": 10.64, "detail": "" }, { @@ -82216,12 +82290,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/8faf9242-0358-4125-9ef0-bfa7b5f11c9e", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 8.81, "detail": "" }, { @@ -82229,12 +82303,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/6623e10a-7f45-4b98-95e4-4be216b35fad", + "path_resolved": "/ovirt-engine/api/hosts/3a5e722a-6c19-468b-9df3-93e0212c77e3", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 23.7, "detail": "" }, { @@ -82242,12 +82316,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/30a8b3df-606e-4ed1-8795-6c6adb936808", + "path_resolved": "/ovirt-engine/api/hosts/84d7ce8a-8388-4b74-a964-e824db42164c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.0, + "duration_ms": 11.27, "detail": "" }, { @@ -82255,12 +82329,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/hosts/5691b51d-17e4-4343-b5ec-46f8d557f84e/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": 2.25, + "duration_ms": 27.69, "detail": "" }, { @@ -82268,12 +82342,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/hosts/455a46cf-3056-4881-9206-4231804fe9cf/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.07, + "duration_ms": 20.49, "detail": "" }, { @@ -82281,12 +82355,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/hosts/c2c15e69-7caf-4200-ba00-6c24271c8482/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.03, + "duration_ms": 14.45, "detail": "" }, { @@ -82294,12 +82368,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/hosts/20301881-878c-4880-9cda-a9d770ea8f32/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.08, + "duration_ms": 9.12, "detail": "" }, { @@ -82307,12 +82381,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/hosts/2cbec47c-c6d6-4550-b3d1-670b735dcbbc/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.1, + "duration_ms": 6.59, "detail": "" }, { @@ -82320,12 +82394,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/hosts/d4818d42-aa80-47b9-ba7b-5a8e23410be3/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": 2.02, + "duration_ms": 7.05, "detail": "" }, { @@ -82333,12 +82407,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/hosts/07a66715-121c-4285-a430-9126d09c3e65/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": 1.85, + "duration_ms": 7.91, "detail": "" }, { @@ -82346,12 +82420,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/hosts/67405538-19a4-4c91-bd90-a7357f96589c/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": 1.88, + "duration_ms": 8.37, "detail": "" }, { @@ -82359,12 +82433,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/hosts/ee5c79a2-a98a-4d03-ae94-93e80cc37be5/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": 1.9, + "duration_ms": 6.54, "detail": "" }, { @@ -82372,12 +82446,12 @@ "operation_id": "hosts.unregisteredstoragedomainsdiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/hosts/d4fd74f6-e5b9-48c6-885d-5ad8c9cf79e9/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": 1.92, + "duration_ms": 10.81, "detail": "" }, { @@ -82385,12 +82459,12 @@ "operation_id": "hosts.upgrade", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgrade", - "path_resolved": "/ovirt-engine/api/hosts/11082c0b-c30e-4670-a625-4c66e04bcdbd/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": 1.92, + "duration_ms": 8.24, "detail": "" }, { @@ -82398,12 +82472,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/hosts/1195f603-02cb-4083-93cb-54671360de83/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": 2.02, + "duration_ms": 7.99, "detail": "" }, { @@ -82411,12 +82485,12 @@ "operation_id": "hosts.enrollcertificate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/enrollcertificate", - "path_resolved": "/ovirt-engine/api/hosts/bc1e3e89-4257-4466-8b8b-c06801b8ffb7/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.05, + "duration_ms": 8.03, "detail": "" }, { @@ -82429,7 +82503,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 4.85, "detail": "" }, { @@ -82442,7 +82516,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.84, + "duration_ms": 5.24, "detail": "" }, { @@ -82455,7 +82529,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.53, + "duration_ms": 4.21, "detail": "" }, { @@ -82463,12 +82537,12 @@ "operation_id": "icons.update", "method": "PUT", "path_template": "/ovirt-engine/api/icons/{id}", - "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/icons/0e02a40d-49cf-4d1c-9665-348a74ea6d34", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.08, + "duration_ms": 8.12, "detail": "" }, { @@ -82476,12 +82550,12 @@ "operation_id": "icons.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/icons/{id}", - "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/icons/49a0ae2b-e7e9-4d66-8a7e-c6bb95ed7ba8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 7.19, "detail": "" }, { @@ -82494,7 +82568,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 6.37, "detail": "" }, { @@ -82507,7 +82581,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.92, + "duration_ms": 8.55, "detail": "" }, { @@ -82520,7 +82594,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 10.37, "detail": "" }, { @@ -82528,12 +82602,12 @@ "operation_id": "instancetypes.update", "method": "PUT", "path_template": "/ovirt-engine/api/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/instancetypes/7eb346ba-fdc1-4b16-8299-8215fe2bd9ca", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.94, + "duration_ms": 14.53, "detail": "" }, { @@ -82541,12 +82615,12 @@ "operation_id": "instancetypes.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/instancetypes/a2a5048d-6d8e-45fe-8376-236d81372780", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.93, + "duration_ms": 6.02, "detail": "" }, { @@ -82559,7 +82633,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 6.29, "detail": "" }, { @@ -82572,7 +82646,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.17, + "duration_ms": 4.73, "detail": "" }, { @@ -82580,12 +82654,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/65f2f915-162a-4036-a24c-5166342fd333", + "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 5.15, "detail": "" }, { @@ -82593,12 +82667,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/65f2f915-162a-4036-a24c-5166342fd333", + "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 7.27, "detail": "" }, { @@ -82606,12 +82680,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/65f2f915-162a-4036-a24c-5166342fd333", + "path_resolved": "/ovirt-engine/api/jobs/2f48a50f-5886-4b3e-be67-8aa5de44311a", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 4.0, "detail": "" }, { @@ -82624,7 +82698,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 6.44, "detail": "" }, { @@ -82637,7 +82711,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.62, + "duration_ms": 5.03, "detail": "" }, { @@ -82645,12 +82719,12 @@ "operation_id": "katelloerrata.get", "method": "GET", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/149f57be-46da-4909-a3c5-3d3885b81752", + "path_resolved": "/ovirt-engine/api/katelloerrata/32dc9634-6399-480b-a51a-1caf461f1012", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 4.16, "detail": "" }, { @@ -82658,5090 +82732,7 @@ "operation_id": "katelloerrata.update", "method": "PUT", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/149f57be-46da-4909-a3c5-3d3885b81752", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.64, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "katelloerrata.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/149f57be-46da-4909-a3c5-3d3885b81752", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.32, - "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": 1.27, - "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": 1.69, - "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": 1.16, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "macpools.update", - "method": "PUT", - "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.46, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "macpools.remove", - "method": "DELETE", - "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.31, - "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": 1.17, - "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": 1.52, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "networkfilters.get", - "method": "GET", - "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/b6a93c2f-008c-4031-9962-7cc63453d64c", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.24, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "networkfilters.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/b6a93c2f-008c-4031-9962-7cc63453d64c", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.53, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "networkfilters.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/b6a93c2f-008c-4031-9962-7cc63453d64c", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.15, - "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": 1.45, - "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": 1.94, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "networks.get", - "method": "GET", - "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.32, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "networks.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.55, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "networks.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.45, - "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": 1.24, - "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": 1.47, - "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": 1.82, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "openstackimageproviders.update", - "method": "PUT", - "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.17, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "openstackimageproviders.remove", - "method": "DELETE", - "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.29, - "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": 2.33, - "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": 2.0, - "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": 1.44, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "openstacknetworkproviders.update", - "method": "PUT", - "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.93, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "openstacknetworkproviders.remove", - "method": "DELETE", - "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.61, - "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": 1.51, - "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": 1.76, - "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": 1.11, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "openstackvolumeproviders.update", - "method": "PUT", - "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.49, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "openstackvolumeproviders.remove", - "method": "DELETE", - "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.32, - "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": 1.23, - "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": 1.35, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "operatingsystems.get", - "method": "GET", - "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/4b468dd4-38c9-4616-8f61-77e15313a5f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.07, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "operatingsystems.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/4b468dd4-38c9-4616-8f61-77e15313a5f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.37, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "operatingsystems.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/4b468dd4-38c9-4616-8f61-77e15313a5f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.3, - "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": 2.15, - "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": 1.26, - "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": 1.4, - "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": 1.07, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "permissions.remove", - "method": "DELETE", - "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.03, - "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": 1.16, - "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": 1.64, - "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": 1.26, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "roles.update", - "method": "PUT", - "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.63, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "roles.remove", - "method": "DELETE", - "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.44, - "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": 1.29, - "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": 1.56, - "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": 1.22, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "schedulingpolicies.update", - "method": "PUT", - "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.44, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "schedulingpolicies.remove", - "method": "DELETE", - "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.24, - "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": 1.2, - "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": 1.46, - "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": 1.27, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "schedulingpolicyunits.update", - "method": "PUT", - "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.47, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "schedulingpolicyunits.remove", - "method": "DELETE", - "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.29, - "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": 1.31, - "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": 1.66, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "storageconnections.get", - "method": "GET", - "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/da6751a1-5849-473b-834d-3383b38218ca", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.21, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "storageconnections.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/da6751a1-5849-473b-834d-3383b38218ca", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.08, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "storageconnections.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/da6751a1-5849-473b-834d-3383b38218ca", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.26, - "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": 1.21, - "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": 2.33, - "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": 1.23, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "storagedomains.update", - "method": "PUT", - "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.45, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "storagedomains.remove", - "method": "DELETE", - "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.45, - "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": 1.77, - "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": 1.76, - "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": 1.7, - "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": 1.38, - "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": 1.61, - "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": 1.22, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "tags.update", - "method": "PUT", - "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.45, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "tags.remove", - "method": "DELETE", - "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.38, - "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": 1.27, - "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": 1.8, - "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": 1.49, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "templates.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.45, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "templates.remove", - "method": "DELETE", - "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.85, - "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": 1.85, - "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": 1.46, - "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": 1.08, - "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": 1.65, - "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": 1.47, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "users.remove", - "method": "DELETE", - "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.21, - "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": 1.42, - "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": 2.62, - "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": 1.78, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vmpools.update", - "method": "PUT", - "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.5, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vmpools.remove", - "method": "DELETE", - "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.66, - "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.52, - "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": 400, - "expected_hint": 201, - "duration_ms": 4.22, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.get", - "method": "GET", - "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/f5d1010a-7759-4fca-96f3-640c6a11d91d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 4.62, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/986e33b7-7b6e-4440-a744-2f18bd5a9e4b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.5, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/a61ec515-757e-4c66-bc6d-dfbadc835c27", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.24, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.start", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/vms/a76e5c14-4d75-40ec-b232-d51b0cb72f35/start", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 3.97, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.stop", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/vms/89922617-bb0f-49e3-8a2c-62484e4d324f/stop", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 3.43, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.shutdown", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/vms/a47d8eab-29ce-4ead-b66e-c9c39b9919e5/shutdown", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 3.57, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.reboot", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/vms/45da8121-66e1-4f7f-8e0f-70644d8a1175/reboot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 3.03, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.suspend", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/vms/5db22c0e-a0fa-46bf-b54c-051b98db0cd2/suspend", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 3.14, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.migrate", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/vms/079346fd-c596-4313-b92b-bf746b513272/migrate", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 4.81, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.cancelmigration", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/vms/793c6957-97fe-42dd-924d-d0c280403bcc/cancelmigration", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 3.35, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.clone", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/vms/3a146990-ae60-49aa-8100-3a87adb801d7/clone", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 3.48, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.export", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/vms/ccb8431f-1f3e-461a-a8d2-d65363c2cec1/export", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.71, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.detach", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/vms/ee8c0504-44b7-4615-a107-4540ccbfd5be/detach", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.44, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.screenthumbnail", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/vms/456a21b5-ad15-4d7e-97e4-d1538e0930bf/screenthumbnail", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.18, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.ticket", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/vms/bafc413c-b9c2-48cd-9efe-3f7eefbe8047/ticket", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.43, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.logon", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/vms/4e97f004-45d0-4b1a-9aac-58d91f02fa26/logon", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.3, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vms.maintenance", - "method": "POST", - "path_template": "/ovirt-engine/api/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/vms/072ec96b-9d59-4c42-999a-a3157631e52e/maintenance", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.16, - "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/e5a19c05-1b2b-4f87-a3e0-d071a5d48dba/preview_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 3.02, - "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/57d7e50a-67ab-40e2-a10a-6f5c2ded1ee0/commit_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 2.77, - "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/153c7dcc-4f90-4106-b288-49e365f1eec7/undo_snapshot", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 8.37, - "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/4998b932-b15b-4859-bcef-7cc546c3ac34/freeze_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 5.84, - "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/fba39e24-8e50-4f8e-a92b-f5e67ddcfde2/thaw_filesystems", - "kind": "action", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 5.31, - "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": 5.6, - "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": 400, - "expected_hint": 201, - "duration_ms": 6.82, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vnicprofiles.get", - "method": "GET", - "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/62b7117d-7938-4d35-9447-263c3b97c633", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.75, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vnicprofiles.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/fd2e4b5d-0ab1-418a-bd80-8701ad8c5c35", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.4, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "vnicprofiles.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/219750a5-8195-45b6-9dac-51fdde1a44da", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.25, - "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.34, - "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": 4.81, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "imagetransfers.get", - "method": "GET", - "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/12b57fbd-ee0d-4180-a2e1-331cc716a327", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.24, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "imagetransfers.update", - "method": "PUT", - "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/12b57fbd-ee0d-4180-a2e1-331cc716a327", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.67, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "imagetransfers.remove", - "method": "DELETE", - "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/12b57fbd-ee0d-4180-a2e1-331cc716a327", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.91, - "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.2, - "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": 3.33, - "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": 3.41, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "options.update", - "method": "PUT", - "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.43, - "detail": "" - }, - { - "series": "4.4", - "operation_id": "options.remove", - "method": "DELETE", - "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": 3.48, - "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/b43f83e4-3c83-4119-b3ef-30025fb06f2d/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.32, - "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/b9c3a23c-d3a0-48fa-be3e-aca93d19df4b/diskattachments", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 14.46, - "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/cc8f35d2-40fc-4b6b-af9a-061e41118563/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 6.13, - "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/570ba29a-557a-40d8-8d08-9441bd503960/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 5.61, - "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/fd23f0f0-42f4-4eea-a89a-35d21cf84b49/diskattachments/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 16.22, - "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/f90649ba-44bf-49e9-86a8-2ff13bae0bbc/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 18.45, - "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/1f8957d1-01ef-4779-ac32-41a911310329/nics", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 21.59, - "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/4687b3e8-4e84-4234-99f2-fad299f38dd7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 24.0, - "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/3431b35a-b9e0-4677-bedd-a73c825b356f/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 10.28, - "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/0b07ea94-3539-4154-8871-1b905dfe5099/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 16.38, - "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/9f3d161c-1e8f-475e-8a91-5b57280814d7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 19.51, - "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/681ea948-3f5d-4a27-95d2-77eb73bf5fad/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 7.83, - "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/96983b59-8c30-4d38-8b2c-b8230b9d489c/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 7.08, - "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/e36e011f-b39b-4f86-9e1d-2329603e39da/cdroms", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 11.51, - "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/f786b77e-42a1-47db-bf72-d95f36335601/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.9, - "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/8d547853-64a0-4db6-bada-a3b1e03b91f7/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 3.15, - "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/22256045-63b6-45b6-a0fd-f721c45316d1/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.4, - "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/942a6ec5-7405-47c6-ad0d-ea9bf6f5c706/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 4.03, - "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/608df6e6-9a02-4590-ab16-906362a8a518/snapshots", - "kind": "collection", - "status": "passed", - "http_status": 400, - "expected_hint": 201, - "duration_ms": 2.47, - "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/700d2945-a078-4d0c-a1e5-0b1468bab171/snapshots/32d8ef63-853d-4107-bdc4-1dd8a46560fd", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.6, - "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/06f38742-6064-4579-bc26-94ba965691d1/snapshots/8b45ef37-a780-4b0d-ac4a-8595ab30dc22", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.78, - "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/eadbf78a-c3a9-48d1-b3a5-d6dd7c075b17/snapshots/e5c30434-3bbb-4248-bb42-f4961bf9a3dd", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.32, - "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/91fcb368-6525-4211-8e93-35430be1c70f/snapshots/f7d32d2a-244c-4b3f-80fd-ed2f059b4a91/restore", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.57, - "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/5146b4a8-1703-4722-9900-ff02c8a19650/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.04, - "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/7d1232c6-7f63-44af-a6e8-3c2010bddcaf/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.87, - "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/1b0abff6-59e6-45f1-9a64-ce048612e5ab/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.61, - "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/b7d58fd5-92c3-486a-98e6-57d6be83546d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.5, - "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/608b8426-0a40-4ca3-b9a7-e20f5b226791/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.47, - "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/bae9f9e9-d557-4279-8b8c-fae06b308a11/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.03, - "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/f8576ba2-83e4-4185-9547-818405a8125c/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.23, - "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/01713e5b-9070-4377-bba8-197a829ac5e1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.86, - "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/28946182-5763-4b01-ad2c-16c0760b703b/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.88, - "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/26a9de12-b93a-4489-be09-ab68f5d049e9/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.71, - "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/13c4902e-f98b-4dac-8ac6-0d7b05214ae1/graphicsconsoles", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.67, - "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/503b51ba-5948-4366-bb3f-a36129fca06b/graphicsconsoles", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.0, - "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/f4049e0c-794d-4eb6-be4d-51d1f6441c3a/graphicsconsoles/27364d8a-1c01-42e6-abb1-f3a16943fea1", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.78, - "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/dfc891f6-f975-4b4c-9298-1fe34ee56e4c/graphicsconsoles/27364d8a-1c01-42e6-abb1-f3a16943fea1", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.09, - "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/caee227b-5b17-4d3c-8926-03c43f9d5b3a/graphicsconsoles/27364d8a-1c01-42e6-abb1-f3a16943fea1", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.52, - "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/3f4f0095-482a-485a-8f30-5b1b4dd17aba/nics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.53, - "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/322d55c0-3996-4ea9-8dae-542ef171db76/nics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.81, - "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/e3593e74-e7d8-4fe7-9f13-f0df708b290c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.63, - "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/ccf3caf0-b6c4-45eb-8acc-2760a81acb9c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.78, - "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/9ed22215-f5e9-4121-a504-a890106fd700/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.44, - "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/ceb4eddb-f538-4d02-8c95-b27820d8667d/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/update", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.18, - "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/adfa3013-ce6d-42d0-9ced-efed5945633d/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/attach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.16, - "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/7aa3fcbf-3a47-4925-9b49-55cb91763507/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/detach", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.46, - "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/c6c0ca6e-2a71-4ca3-bb67-e478f9a882fd/tags", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.79, - "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/750e48f8-8ffa-4a98-97ef-90be2eb9f51c/tags", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.54, - "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/9714d027-e929-42e9-81f1-f1926189125d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.49, - "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/43ad2a7a-25b8-4338-85c4-7ecec2930495/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.53, - "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/091c38cc-c92e-4d94-a242-6f50d8b264b9/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.57, - "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/d4c5a1d9-ae36-493b-b96d-d3b675b39f25/permissions", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.6, - "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/67e27ac2-49ff-455f-a572-8ced7db7f956/permissions", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 2.64, - "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/cc91e3de-df75-47ab-b833-dd20167b0f94/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.85, - "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/38c683be-80e7-4e80-96ef-05a24943315f/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.75, - "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/3b21bcc3-5f0e-473a-82e8-601f6f822a45/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.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/9c864057-24dc-41e2-af28-99b972d0c377/statistics", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.6, - "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/22c08a20-653c-4980-bf3d-39a00d6b4c6e/statistics", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.97, - "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/6a659fa4-6f98-4520-8af1-7b92e3a4b56b/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.66, - "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/ecac973d-42cd-4853-afd8-534d9c37a0fe/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.03, - "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/5d39ac88-56f1-4966-97cb-798b39a427e1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.51, - "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": 1.49, - "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": 200, - "expected_hint": 201, - "duration_ms": 2.51, - "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/aba5d0ee-8192-41a7-aed6-f44cd9526601", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.69, - "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/b1f51818-0655-4321-9a4f-56072f2a68e7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.59, - "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/2625e442-c8df-42b4-a4c6-792e116dfa73", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.61, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.65, - "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": 200, - "expected_hint": 201, - "duration_ms": 2.32, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.51, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.44, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.54, - "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": 1.73, - "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": 2.49, - "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": 1.57, - "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": 1.57, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.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": 1.7, - "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": 2.19, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.72, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.44, - "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.52, - "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.03, - "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": 2.85, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.58, - "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": 404, - "expected_hint": 201, - "duration_ms": 1.48, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.4, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.6, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.47, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.59, - "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": 404, - "expected_hint": 201, - "duration_ms": 1.57, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.56, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.59, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.47, - "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": 1.82, - "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": 2.13, - "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/f506c4db-c549-4e35-9ea2-449b7743b72c", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.65, - "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/f506c4db-c549-4e35-9ea2-449b7743b72c", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.81, - "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/f506c4db-c549-4e35-9ea2-449b7743b72c", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.53, - "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": 1.63, - "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": 1.86, - "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": 1.43, - "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": 1.53, - "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/ef580a31-8945-51c7-8e15-7051f24f386e", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.31, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.52, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/vnicprofiles", - "kind": "collection", - "status": "passed", - "http_status": 201, - "expected_hint": 201, - "duration_ms": 1.71, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/vnicprofiles/2569cf3c-bc1d-4e92-9124-f6d5173063bc", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.53, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/vnicprofiles/c1bb38af-67f4-4e68-bcd7-e686e814891c", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.43, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/vnicprofiles/83412345-43da-4c47-93a0-1d53439e12b3", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.45, - "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": 2.37, - "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": 2.34, - "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": 1.49, - "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": 1.8, - "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/8224ce32-6662-5708-9980-140c3639437b", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.58, - "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": 1.46, - "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": 2.16, - "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": 2.4, - "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": 1.69, - "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.37, - "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": 1.71, - "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": 2.36, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.91, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.58, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.5, - "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": 1.57, - "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": 2.29, - "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": 1.51, - "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": 1.89, - "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/8c25e806-ce4d-573e-bc31-ed83976beb77", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.67, - "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/65f2f915-162a-4036-a24c-5166342fd333/steps", - "kind": "collection", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.73, - "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/65f2f915-162a-4036-a24c-5166342fd333/steps", - "kind": "collection", - "status": "passed", - "http_status": 404, - "expected_hint": 201, - "duration_ms": 1.6, - "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/65f2f915-162a-4036-a24c-5166342fd333/steps/b344acaf-3de1-4222-a7d3-c96db31faed9", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.24, - "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/65f2f915-162a-4036-a24c-5166342fd333/steps/b9b96cbb-630f-478c-9761-ebd88976a3f4", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.35, - "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/65f2f915-162a-4036-a24c-5166342fd333/steps/2ed9b45c-0e38-4fee-92ae-c77a6fb88ead", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.21, - "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": 3.44, - "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": 1.87, - "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.11, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.65, - "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/8d2d49df-9b9a-548a-8f29-0a14e2c91696", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.59, - "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/8d2d49df-9b9a-548a-8f29-0a14e2c91696", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 2.14, - "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": 1.59, - "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": 2.29, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.56, - "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/41bd259d-99ba-57db-b003-b8858163a652", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.79, - "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/41bd259d-99ba-57db-b003-b8858163a652", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.84, - "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": 1.65, - "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.72, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.84, - "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/be3dfc42-61b8-5249-891c-003376268fa4", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.68, - "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/be3dfc42-61b8-5249-891c-003376268fa4", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.58, - "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": 1.6, - "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.65, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.87, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.68, - "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/dae07aa2-5322-5733-9c7e-4848aec6467a", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.63, - "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": 2.43, - "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.33, - "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.47, - "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": 2.38, - "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": 1.76, - "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.47, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.73, - "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/4aec0d88-bbe3-50a9-9547-b4493406ec4d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.68, - "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/4aec0d88-bbe3-50a9-9547-b4493406ec4d", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.49, - "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": 2.23, - "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": 1.58, - "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": 2.99, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.56, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.42, - "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.49, - "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.18, - "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.69, - "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.09, - "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.07, - "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": 4.24, - "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.47, - "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.25, - "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.4, - "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.26, - "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/13902786-7690-5fe2-9030-7b09d92b411d", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.86, - "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": 1.49, - "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.22, - "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/1113", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.36, - "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/1113", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.31, - "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/1113", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.29, - "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.57, - "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": 5.55, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.43, - "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/b3313044-239a-5c84-8c75-f25bf5269a11", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.4, - "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/b3313044-239a-5c84-8c75-f25bf5269a11", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.33, - "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": 1.44, - "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.71, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.09, - "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/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.65, - "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/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.47, - "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.4, - "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": 2.37, - "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/0e58c1ea-4d05-40eb-91b0-dacd000dc684", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.46, - "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/ed6e2744-2302-4b37-a60b-0b081b2139e7", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.56, - "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/c051068e-054c-4f40-a763-0a1817e5bac3", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.44, - "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/7b35a197-0da4-41a6-bc34-a0da38ad2b06/activate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.45, - "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/54a4ed1b-94ec-4861-8068-22e1a42daeea/deactivate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.13, - "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/883692a3-5115-484a-9b91-3650ff1c5422/approve", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.04, - "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/fb250402-967d-430c-aed3-4422a1546f0c/install", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 3.14, - "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/d51428e8-9324-45a0-8d5f-9734482a0e6c/fence", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.27, - "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/417759d6-5809-4dd4-9176-e07dae5a2bf8/iscsidiscover", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.11, - "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/09a69337-4a3c-4081-a47d-8a9abc07c9ce/iscsilogin", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.49, - "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/f0e9a8ae-584d-4125-82d8-28dc6c1219df/commitnetconfig", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.48, - "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/eba06164-985a-4387-854d-2a87a58c5455/refresh", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.59, - "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/f81c4756-8cd2-4571-9dc7-e5a26276537d/unregisteredstoragedomainsdiscover", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.22, - "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/686e9ac3-6d66-4be8-97cb-df60e9500109/upgrade", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.11, - "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/bd221c40-ec78-4e54-afbd-9f8ae43d0621/upgradeCheck", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.1, - "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/10d0fefd-51ee-4f92-bd13-ac89e0a57261/enrollcertificate", - "kind": "action", - "status": "passed", - "http_status": 200, - "expected_hint": 201, - "duration_ms": 2.16, - "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": 1.42, - "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": 1.6, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.45, - "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/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.35, - "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/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.33, - "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": 1.39, - "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": 1.55, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.38, - "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/025341da-e43f-52c5-ad75-2fabc7a3fb99", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.45, - "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/025341da-e43f-52c5-ad75-2fabc7a3fb99", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.34, - "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": 2.1, - "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": 1.3, - "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/65f2f915-162a-4036-a24c-5166342fd333", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.27, - "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/65f2f915-162a-4036-a24c-5166342fd333", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.25, - "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/65f2f915-162a-4036-a24c-5166342fd333", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.2, - "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": 1.33, - "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": 1.72, - "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/149f57be-46da-4909-a3c5-3d3885b81752", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.53, - "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/149f57be-46da-4909-a3c5-3d3885b81752", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.54, - "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/149f57be-46da-4909-a3c5-3d3885b81752", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.31, - "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": 1.34, - "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": 1.59, - "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": 404, - "expected_hint": 200, - "duration_ms": 1.94, - "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/67eeb84a-19a4-57fa-88d6-e1a6e0847517", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.3, - "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/67eeb84a-19a4-57fa-88d6-e1a6e0847517", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.33, - "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.59, - "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.57, - "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/b6a93c2f-008c-4031-9962-7cc63453d64c", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.73, - "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/b6a93c2f-008c-4031-9962-7cc63453d64c", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.64, - "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/b6a93c2f-008c-4031-9962-7cc63453d64c", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.52, - "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": 1.5, - "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": 1.9, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.31, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 1.78, - "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.61, - "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.66, - "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": 5.04, - "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": 404, - "expected_hint": 200, - "duration_ms": 3.29, - "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/f4351207-3aa7-5ea6-82dc-588edfb35949", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.58, - "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/f4351207-3aa7-5ea6-82dc-588edfb35949", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.89, - "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.99, - "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.13, - "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": 404, - "expected_hint": 200, - "duration_ms": 4.2, - "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/08d01c4b-421b-56b0-9c9d-60773e301b71", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.25, - "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/08d01c4b-421b-56b0-9c9d-60773e301b71", - "kind": "item", - "status": "passed", - "http_status": 200, - "expected_hint": 200, - "duration_ms": 1.72, - "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.93, - "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.56, - "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": 404, - "expected_hint": 200, - "duration_ms": 2.42, - "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/8ac6b67d-ca9a-504e-9575-a736fd185483", - "kind": "item", - "status": "passed", - "http_status": 404, - "expected_hint": 200, - "duration_ms": 2.12, - "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/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/katelloerrata/244aa4bc-78ab-456a-a22d-8f7bd8ab4e74", "kind": "item", "status": "passed", "http_status": 200, @@ -87749,6 +82740,5089 @@ "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", @@ -87759,7 +87833,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.31, + "duration_ms": 1.74, "detail": "" }, { @@ -87772,7 +87846,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.52, + "duration_ms": 2.71, "detail": "" }, { @@ -87780,12 +87854,12 @@ "operation_id": "operatingsystems.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/4b468dd4-38c9-4616-8f61-77e15313a5f2", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/ed258b55-6e47-4d2c-bb86-5efb9c3a2160", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 1.89, "detail": "" }, { @@ -87793,12 +87867,12 @@ "operation_id": "operatingsystems.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/4b468dd4-38c9-4616-8f61-77e15313a5f2", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/26ce6f39-9c4f-4619-9924-b977ebad12a2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.15, + "duration_ms": 3.55, "detail": "" }, { @@ -87806,12 +87880,12 @@ "operation_id": "operatingsystems.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/4b468dd4-38c9-4616-8f61-77e15313a5f2", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/afdbc729-8a6e-40c6-a0d7-6414e9f76b58", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.64, + "duration_ms": 3.88, "detail": "" }, { @@ -87824,7 +87898,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.52, + "duration_ms": 5.77, "detail": "" }, { @@ -87837,7 +87911,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.84, + "duration_ms": 2.79, "detail": "" }, { @@ -87850,7 +87924,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.89, + "duration_ms": 3.43, "detail": "" }, { @@ -87863,7 +87937,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 3.22, "detail": "" }, { @@ -87871,12 +87945,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/v4/permissions/8e3260fd-6bd1-4506-803b-1a86397a2d49", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 3.17, "detail": "" }, { @@ -87889,7 +87963,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 3.92, "detail": "" }, { @@ -87902,7 +87976,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.31, + "duration_ms": 4.78, "detail": "" }, { @@ -87913,9 +87987,9 @@ "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 3.96, "detail": "" }, { @@ -87923,12 +87997,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/roles/{id}", - "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v4/roles/d8524dee-344f-4315-bad7-a808d3e8da29", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 4.75, "detail": "" }, { @@ -87936,12 +88010,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/roles/{id}", - "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v4/roles/7dd2ea52-a4e5-458f-909d-984288c490de", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 5.18, "detail": "" }, { @@ -87954,7 +88028,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 4.76, "detail": "" }, { @@ -87967,7 +88041,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.71, + "duration_ms": 2.67, "detail": "" }, { @@ -87978,9 +88052,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 2.05, "detail": "" }, { @@ -87988,12 +88062,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/157a0184-38d7-45a2-a482-ba215edca398", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 2.19, "detail": "" }, { @@ -88001,12 +88075,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/7d876267-f63f-4f28-ad80-c38ca4f1ab06", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.51, "detail": "" }, { @@ -88019,7 +88093,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 2.94, "detail": "" }, { @@ -88032,7 +88106,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 2.79, "detail": "" }, { @@ -88043,9 +88117,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.84, "detail": "" }, { @@ -88053,12 +88127,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/1c326d86-d3dc-4b6b-aa0e-65a3e4bdb948", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.48, "detail": "" }, { @@ -88066,12 +88140,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/60d1cf9f-b89c-46e5-bd53-6ccb80293812", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 3.81, "detail": "" }, { @@ -88084,7 +88158,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 5.89, "detail": "" }, { @@ -88097,7 +88171,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.18, + "duration_ms": 6.26, "detail": "" }, { @@ -88105,12 +88179,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/da6751a1-5849-473b-834d-3383b38218ca", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/a181e974-26a5-4526-9c5e-93cefa1f1906", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 5.18, "detail": "" }, { @@ -88118,12 +88192,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/da6751a1-5849-473b-834d-3383b38218ca", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/945b23a0-6a6c-4e7a-904c-05760dddd3a4", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 3.15, "detail": "" }, { @@ -88131,12 +88205,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/da6751a1-5849-473b-834d-3383b38218ca", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/c2c9dc28-eedf-4eb2-a6c7-e7b4c1619ec8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 4.17, "detail": "" }, { @@ -88149,7 +88223,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 7.34, "detail": "" }, { @@ -88162,7 +88236,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.12, + "duration_ms": 22.7, "detail": "" }, { @@ -88173,9 +88247,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 11.11, "detail": "" }, { @@ -88183,12 +88257,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v4/storagedomains/1f423cad-e48e-4131-b9c4-c96da4a9e160", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 6.97, "detail": "" }, { @@ -88196,12 +88270,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v4/storagedomains/045ed75b-5cc8-4c92-b4dd-b06065c77267", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 8.01, "detail": "" }, { @@ -88214,7 +88288,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.45, + "duration_ms": 8.33, "detail": "" }, { @@ -88227,7 +88301,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.14, + "duration_ms": 5.24, "detail": "" }, { @@ -88240,7 +88314,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.97, + "duration_ms": 5.1, "detail": "" }, { @@ -88253,7 +88327,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 3.41, "detail": "" }, { @@ -88266,7 +88340,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.82, + "duration_ms": 3.9, "detail": "" }, { @@ -88277,9 +88351,9 @@ "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 3.18, "detail": "" }, { @@ -88287,12 +88361,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v4/tags/5e658ef8-023c-47c1-bca1-581e61244d76", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 4.56, "detail": "" }, { @@ -88300,12 +88374,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v4/tags/eb27b9c4-29e8-423d-bc65-3b4b1873d2d1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 3.22, "detail": "" }, { @@ -88318,7 +88392,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 3.07, "detail": "" }, { @@ -88331,7 +88405,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 4.58, "detail": "" }, { @@ -88342,9 +88416,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.91, "detail": "" }, { @@ -88352,12 +88426,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/templates/{id}", - "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v4/templates/f0854a90-98fb-4e7f-b3d5-6dcf64fbffa2", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 2.3, "detail": "" }, { @@ -88365,12 +88439,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/templates/{id}", - "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v4/templates/f3e136d9-92ce-47e8-af1d-8c01db1b1c43", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 6.09, "detail": "" }, { @@ -88383,7 +88457,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.62, + "duration_ms": 14.2, "detail": "" }, { @@ -88396,7 +88470,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 10.65, "detail": "" }, { @@ -88409,7 +88483,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.32, + "duration_ms": 8.09, "detail": "" }, { @@ -88422,7 +88496,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 7.11, "detail": "" }, { @@ -88435,7 +88509,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 6.47, "detail": "" }, { @@ -88443,12 +88517,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/users/{id}", - "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/v4/users/22da89e7-63b4-4696-b57e-ec4192fb13ce", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 4.4, "detail": "" }, { @@ -88461,7 +88535,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 4.45, "detail": "" }, { @@ -88474,7 +88548,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.72, + "duration_ms": 5.88, "detail": "" }, { @@ -88485,9 +88559,9 @@ "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 4.42, "detail": "" }, { @@ -88495,12 +88569,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v4/vmpools/a51f71af-47fd-42fd-a0fa-5713a1a632a1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 4.29, "detail": "" }, { @@ -88508,12 +88582,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v4/vmpools/41f649ea-8035-412b-be00-bb18bbbb925a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.92, + "duration_ms": 4.03, "detail": "" }, { @@ -88526,7 +88600,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 3.66, "detail": "" }, { @@ -88539,7 +88613,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.67, + "duration_ms": 7.34, "detail": "" }, { @@ -88547,12 +88621,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/2f261a51-e6e0-49f0-8694-e33e2a4725fd", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 4.05, "detail": "" }, { @@ -88560,12 +88634,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/7b75bb2f-927f-4367-9da2-5d4258e5b9c5", + "path_resolved": "/ovirt-engine/api/v4/vms/e115237e-1104-46a1-b625-a2b0a729d070", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 4.43, "detail": "" }, { @@ -88573,12 +88647,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/79862ea7-5c58-40e2-a051-4f7361940c81", + "path_resolved": "/ovirt-engine/api/v4/vms/b28f8504-5afe-410e-925d-f260cd7e134f", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 9.16, "detail": "" }, { @@ -88586,12 +88660,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/v4/vms/6fcf8933-886f-4ef5-bc09-1ddc3f7e4f83/start", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.54, + "duration_ms": 15.89, "detail": "" }, { @@ -88599,12 +88673,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/v4/vms/d981f015-0636-413e-bb9e-3cf33efd96da/stop", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.6, + "duration_ms": 8.7, "detail": "" }, { @@ -88612,12 +88686,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/v4/vms/5f6fcf09-378c-48cb-897c-1d32eef545ea/shutdown", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 11.15, "detail": "" }, { @@ -88625,12 +88699,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/v4/vms/d9da9f4c-3328-4c9f-9b83-4aad17cd5bee/reboot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.48, + "duration_ms": 10.0, "detail": "" }, { @@ -88638,12 +88712,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/v4/vms/31203b79-ae09-434f-948f-edea1cfad34e/suspend", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.13, + "duration_ms": 11.63, "detail": "" }, { @@ -88651,12 +88725,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/v4/vms/635cc68d-34fc-41c3-9228-872a234a3506/migrate", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 10.32, "detail": "" }, { @@ -88664,12 +88738,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/v4/vms/19d9600c-3d91-4a90-8daf-932901d7226e/cancelmigration", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 12.6, "detail": "" }, { @@ -88677,12 +88751,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/v4/vms/ac21d043-9272-4479-a0fd-c028708d094e/clone", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 409, "expected_hint": 201, - "duration_ms": 1.6, + "duration_ms": 7.45, "detail": "" }, { @@ -88690,12 +88764,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/v4/vms/90b2f349-4a80-4760-be93-c1a2e5754a6f/export", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.63, + "duration_ms": 9.83, "detail": "" }, { @@ -88703,12 +88777,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/v4/vms/10602f5b-a69c-494a-b3a0-c12ea1f73a6b/detach", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.64, + "duration_ms": 11.64, "detail": "" }, { @@ -88716,12 +88790,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/v4/vms/99e81f32-a684-41a2-98ab-25b3d30c84d7/screenthumbnail", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 9.29, "detail": "" }, { @@ -88729,12 +88803,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/v4/vms/fe50e36b-4603-4948-afc2-907e9a8dbff4/ticket", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.58, + "duration_ms": 7.89, "detail": "" }, { @@ -88742,12 +88816,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/v4/vms/3deeab6c-8b1f-4a3a-b82c-707eef394a70/logon", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.47, + "duration_ms": 7.37, "detail": "" }, { @@ -88755,12 +88829,12 @@ "operation_id": "vms.maintenance", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/v4/vms/ca6fb8b5-7898-416f-a5a6-c19454b4047c/maintenance", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 6.35, "detail": "" }, { @@ -88768,12 +88842,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/10ada80a-131b-457b-b8e6-095059439cbc/preview_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.41, + "duration_ms": 8.03, "detail": "" }, { @@ -88781,12 +88855,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/424ae8ed-859f-468c-90cb-2a8bd6b63df8/commit_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.41, + "duration_ms": 14.06, "detail": "" }, { @@ -88794,12 +88868,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/9b407427-577f-4acb-8842-c6b40574b0bf/undo_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 11.2, "detail": "" }, { @@ -88807,12 +88881,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/v4/vms/c15c44ee-3c58-4700-8643-67f22e1be147/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.44, + "duration_ms": 6.5, "detail": "" }, { @@ -88820,12 +88894,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/v4/vms/ef18c5cc-a483-4bb0-b163-b38c79969acb/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 5.07, "detail": "" }, { @@ -88838,7 +88912,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 3.82, "detail": "" }, { @@ -88851,7 +88925,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.41, + "duration_ms": 6.49, "detail": "" }, { @@ -88859,12 +88933,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/5cf196ce-e26a-4b80-acce-fa66af367d6e", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 2.97, "detail": "" }, { @@ -88872,12 +88946,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/001f9b06-b81e-494f-940b-8c7482874aef", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/625fe668-6675-4aa0-b4e4-77f2f6a9c627", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 2.75, "detail": "" }, { @@ -88885,12 +88959,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/0498951e-ecbd-4fe6-b66d-691118a428bd", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/bd3cb6b8-a834-490d-924a-5c6bde1a04d3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 3.17, "detail": "" }, { @@ -88903,7 +88977,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 3.32, "detail": "" }, { @@ -88916,7 +88990,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 4.35, "detail": "" }, { @@ -88924,12 +88998,12 @@ "operation_id": "imagetransfers.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/12b57fbd-ee0d-4180-a2e1-331cc716a327", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/46752a63-201c-4b81-ade9-d04b13857897", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 2.66, "detail": "" }, { @@ -88937,12 +89011,12 @@ "operation_id": "imagetransfers.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/12b57fbd-ee0d-4180-a2e1-331cc716a327", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/2d68de3d-1a5d-475d-aa83-1fe9eba55465", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 3.93, "detail": "" }, { @@ -88950,12 +89024,12 @@ "operation_id": "imagetransfers.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/12b57fbd-ee0d-4180-a2e1-331cc716a327", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/ea2fad1c-725b-4f34-aebe-48e3d72534eb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 3.87, "detail": "" }, { @@ -88968,7 +89042,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 3.76, "detail": "" }, { @@ -88981,7 +89055,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.81, + "duration_ms": 3.1, "detail": "" }, { @@ -88992,9 +89066,9 @@ "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 4.59, "detail": "" }, { @@ -89002,12 +89076,12 @@ "operation_id": "options.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/options/{id}", - "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", + "path_resolved": "/ovirt-engine/api/v4/options/33c00aa2-107a-4644-b7b3-ecfe03e55abb", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 2.82, "detail": "" }, { @@ -89015,12 +89089,12 @@ "operation_id": "options.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/options/{id}", - "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", + "path_resolved": "/ovirt-engine/api/v4/options/8bbdbea5-8867-48f5-853c-5c5146a242d7", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 2.75, "detail": "" }, { @@ -89028,12 +89102,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v4/vms/69e18fe8-8424-4f55-a2b2-35c548ac05b3/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": 1.66, + "duration_ms": 2.46, "detail": "" }, { @@ -89041,12 +89115,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v4/vms/8ed2099d-6bbf-4641-bfc5-e8817343ce4f/diskattachments", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.92, + "duration_ms": 4.44, "detail": "" }, { @@ -89054,12 +89128,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/0a944e69-778b-44ab-9d2f-f52025c845c9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.57, + "duration_ms": 2.2, "detail": "" }, { @@ -89067,12 +89141,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/d518c3be-acac-4fe1-9be9-6bc9800f4d81/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.33, + "duration_ms": 2.12, "detail": "" }, { @@ -89080,12 +89154,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/d6164ca6-0a4a-4fcd-b692-2991f6e57ee8/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.42, + "duration_ms": 2.28, "detail": "" }, { @@ -89093,12 +89167,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/vms/b4fc2d52-1ffa-4362-9ce5-990316bbbe4b/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.43, + "duration_ms": 2.76, "detail": "" }, { @@ -89106,12 +89180,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/vms/a9a6898c-33a6-4e5b-9cae-c73fd5fd098b/nics", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.83, + "duration_ms": 3.06, "detail": "" }, { @@ -89119,12 +89193,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/5a3fe40e-2c16-48a3-87a9-35ca68715174/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.29, + "duration_ms": 2.17, "detail": "" }, { @@ -89132,12 +89206,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/bc7bfb1c-0ea2-4df0-9b1c-e0f8d1c8b127/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/fab4649a-a23a-4559-851f-7a866c5b4af8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.11, "detail": "" }, { @@ -89145,12 +89219,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/37e38787-3265-4907-91bf-50788ab06b86/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.38, + "duration_ms": 3.95, "detail": "" }, { @@ -89158,12 +89232,12 @@ "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/86f729f7-14d0-4c82-9e88-1e5ee7d10ace/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.81, + "duration_ms": 6.83, "detail": "" }, { @@ -89171,12 +89245,12 @@ "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/c42decd3-da17-4c39-b42f-4f7423ee97ed/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.36, + "duration_ms": 6.26, "detail": "" }, { @@ -89184,12 +89258,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v4/vms/68eabdec-2304-4c34-a893-248ec9418bad/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.48, + "duration_ms": 3.18, "detail": "" }, { @@ -89197,12 +89271,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v4/vms/da75fadd-50af-43ca-9b51-639ec9503a67/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.68, + "duration_ms": 2.85, "detail": "" }, { @@ -89210,12 +89284,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/7121baa8-3e77-452c-9d1d-4e6681433807/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.56, + "duration_ms": 3.62, "detail": "" }, { @@ -89223,12 +89297,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/b265d4cc-1d52-4e8b-8b88-e1a3727d0647/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 2.48, + "duration_ms": 7.96, "detail": "" }, { @@ -89236,12 +89310,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/c2c8fd63-f500-4a59-9a96-69ab2c5959b2/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.46, + "duration_ms": 3.57, "detail": "" }, { @@ -89249,12 +89323,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v4/vms/e28c6ce4-7538-4cfc-a5c0-e04991b2250e/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": 1.41, + "duration_ms": 2.76, "detail": "" }, { @@ -89262,12 +89336,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v4/vms/77e58de7-7679-4164-b9db-b513198b0462/snapshots", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.58, + "duration_ms": 9.15, "detail": "" }, { @@ -89275,12 +89349,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/38540a70-a7d4-4bd5-ad71-071e21bcf34a/snapshots/6db53a6d-d286-4d17-b770-707f92a3aecd", + "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": 1.25, + "duration_ms": 7.76, "detail": "" }, { @@ -89288,12 +89362,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/92144a2b-7965-43bf-8d5f-52913fcc7534/snapshots/c2783028-046e-48f7-9188-dbf3eb5af9f7", + "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": 1.24, + "duration_ms": 6.33, "detail": "" }, { @@ -89301,12 +89375,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/10835ea3-e663-479b-879f-e021cac33444/snapshots/01b04d94-189f-4eab-bdc7-b491029a0946", + "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": 1.43, + "duration_ms": 7.23, "detail": "" }, { @@ -89314,12 +89388,12 @@ "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/fecb4e13-bfe6-4980-92cf-16c93644b459/snapshots/49089ca8-3fb6-489f-a2ed-d842986d834f/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": 2.12, + "duration_ms": 14.28, "detail": "" }, { @@ -89327,12 +89401,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/982eb2ac-94c1-4435-afad-6925a7b041a5/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": 1.53, + "duration_ms": 9.66, "detail": "" }, { @@ -89340,12 +89414,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/0e16ea74-7e3e-4a2f-be6d-5bdfb8489434/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": 2.25, + "duration_ms": 14.88, "detail": "" }, { @@ -89353,12 +89427,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/59de7b10-8363-4369-96d1-017626a5071e/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.33, + "duration_ms": 10.15, "detail": "" }, { @@ -89366,12 +89440,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/43683ce6-52ed-4d39-9b85-ee343923e20f/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.41, + "duration_ms": 7.45, "detail": "" }, { @@ -89379,12 +89453,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/dcf490c3-3eef-43fe-b894-bcaf3ac9e2b7/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.31, + "duration_ms": 4.42, "detail": "" }, { @@ -89392,12 +89466,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/vms/66c60202-0805-4270-b690-e83ab8707928/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": 1.68, + "duration_ms": 6.04, "detail": "" }, { @@ -89405,12 +89479,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/vms/8666dbb4-bf4a-4910-9029-2768253c9744/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": 2.12, + "duration_ms": 9.22, "detail": "" }, { @@ -89418,12 +89492,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/6389bf89-2100-4254-86ed-76d78f40c940/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.49, + "duration_ms": 6.48, "detail": "" }, { @@ -89431,12 +89505,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/98055408-0116-4e83-abd2-8e68228d829f/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.59, + "duration_ms": 3.57, "detail": "" }, { @@ -89444,12 +89518,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/018f06e1-bbe5-45ae-af70-c1a675e917c7/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.79, + "duration_ms": 3.71, "detail": "" }, { @@ -89457,12 +89531,12 @@ "operation_id": "graphicsconsoles.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/3ad9a76d-ca67-4378-a6c3-0778527e3490/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": 2.35, + "duration_ms": 3.3, "detail": "" }, { @@ -89470,12 +89544,12 @@ "operation_id": "graphicsconsoles.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/d7ba0d7f-02c6-4924-bea6-2dbd082deef7/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": 1.78, + "duration_ms": 3.58, "detail": "" }, { @@ -89483,12 +89557,12 @@ "operation_id": "graphicsconsoles.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/c6a6ab86-04d5-423c-b24d-33e7c2975c89/graphicsconsoles/27364d8a-1c01-42e6-abb1-f3a16943fea1", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/f9ae85e9-58fa-4553-9f6a-8f0384aceed5", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.96, "detail": "" }, { @@ -89496,12 +89570,12 @@ "operation_id": "graphicsconsoles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/5d36542d-8a2c-4bf1-af4b-0e4f44ed9bdc/graphicsconsoles/27364d8a-1c01-42e6-abb1-f3a16943fea1", + "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": 1.72, + "duration_ms": 2.34, "detail": "" }, { @@ -89509,12 +89583,12 @@ "operation_id": "graphicsconsoles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/6f68236c-b338-423a-8fcf-a5c28ca4a650/graphicsconsoles/27364d8a-1c01-42e6-abb1-f3a16943fea1", + "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": 1.42, + "duration_ms": 2.31, "detail": "" }, { @@ -89522,12 +89596,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/8fb67aa9-2a08-4f4a-a51a-ef34ab76963a/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.41, + "duration_ms": 2.39, "detail": "" }, { @@ -89535,12 +89609,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/4f379c99-bb58-4da7-b3e5-0b7dbd9f5bc8/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.66, + "duration_ms": 2.47, "detail": "" }, { @@ -89548,12 +89622,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/90b99f58-f73f-47d1-945e-6c48fbeca542/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 2.54, "detail": "" }, { @@ -89561,12 +89635,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/8e8dbf78-b78a-4370-8cc5-cf710122d060/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.62, + "duration_ms": 2.97, "detail": "" }, { @@ -89574,12 +89648,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/1b1b479c-aa27-4cda-8623-94a1f4a5d715/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.34, + "duration_ms": 3.09, "detail": "" }, { @@ -89587,12 +89661,12 @@ "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/073b9e02-ad60-4cc6-baf1-5b624cfcd6b7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.98, + "duration_ms": 39.63, "detail": "" }, { @@ -89600,12 +89674,12 @@ "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/fbf97f17-154d-44c3-9cc5-f0d15e63a661/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.98, + "duration_ms": 4.13, "detail": "" }, { @@ -89613,12 +89687,12 @@ "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/053eaecb-ba2e-42c6-bbd6-35ebf065629f/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.06, + "duration_ms": 4.84, "detail": "" }, { @@ -89626,12 +89700,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/604bbced-bc89-4abc-ba62-67ca3453e789/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": 1.62, + "duration_ms": 4.72, "detail": "" }, { @@ -89639,12 +89713,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/5c5ddff5-5ce7-42e0-9fdf-aa0ffde09afc/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": 1.7, + "duration_ms": 3.71, "detail": "" }, { @@ -89652,12 +89726,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/167bd800-def5-4876-9199-d4ea541c4bee/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.47, + "duration_ms": 3.24, "detail": "" }, { @@ -89665,12 +89739,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/00f3f965-51d9-48c9-bae9-ebc47538b872/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.45, + "duration_ms": 3.74, "detail": "" }, { @@ -89678,12 +89752,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/2a9def16-fd34-428d-8fb7-32e6e13a249f/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.31, + "duration_ms": 2.74, "detail": "" }, { @@ -89691,12 +89765,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/fa41b936-2cf4-4386-80f0-8826a0b665ba/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.47, + "duration_ms": 4.12, "detail": "" }, { @@ -89704,12 +89778,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/319fcefb-3c91-4ad7-b34a-3eafc1b7d688/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": 1.75, + "duration_ms": 7.74, "detail": "" }, { @@ -89717,12 +89791,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/a5377cb5-00aa-440a-8538-21e4c14d9962/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.34, + "duration_ms": 3.25, "detail": "" }, { @@ -89730,12 +89804,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/73d0d9aa-e0ec-4cc5-ad1c-a52de20b9dab/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.11, + "duration_ms": 2.59, "detail": "" }, { @@ -89743,12 +89817,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/99dff929-1351-43ea-b8f5-15888ad677cf/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.68, + "duration_ms": 2.43, "detail": "" }, { @@ -89756,12 +89830,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v4/hosts/677db34d-36b8-4d56-b2f7-44198b132eae/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.06, + "duration_ms": 2.39, "detail": "" }, { @@ -89769,12 +89843,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v4/hosts/0a1763c7-1373-4526-a5ad-41b5c0b5d9ff/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": 2.05, + "duration_ms": 3.93, "detail": "" }, { @@ -89782,12 +89856,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/3df88baa-101d-405d-b597-9bf288812a93/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 2.53, "detail": "" }, { @@ -89795,12 +89869,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/ed6f44fe-919a-4777-85a2-417cd1299565/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.7, + "duration_ms": 4.54, "detail": "" }, { @@ -89808,12 +89882,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/733453f2-30f8-440b-bef2-f83594acc853/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.38, + "duration_ms": 5.18, "detail": "" }, { @@ -89826,7 +89900,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 3.01, "detail": "" }, { @@ -89837,9 +89911,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.16, + "duration_ms": 2.97, "detail": "" }, { @@ -89847,12 +89921,12 @@ "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/301ae1e0-16c4-4451-9232-e6f3f82ac76a", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/10c5e5d4-1e00-4ad3-b91c-d963b70ef0fb", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.41, "detail": "" }, { @@ -89860,12 +89934,12 @@ "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/5650aa5c-465c-4d3e-a15b-54756b545e49", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/96f7d6e0-01d2-44e0-8eba-a89275370afc", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 2.42, "detail": "" }, { @@ -89873,12 +89947,12 @@ "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/0d603fb9-8635-4b1c-b996-397ef020f4a3", + "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.38, + "duration_ms": 2.43, "detail": "" }, { @@ -89889,9 +89963,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 2.32, "detail": "" }, { @@ -89902,9 +89976,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 3.14, + "duration_ms": 1.86, "detail": "" }, { @@ -89912,12 +89986,12 @@ "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 3.15, "detail": "" }, { @@ -89925,12 +89999,12 @@ "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "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": 1.52, + "duration_ms": 2.02, "detail": "" }, { @@ -89938,12 +90012,12 @@ "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "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": 2.08, + "duration_ms": 5.29, "detail": "" }, { @@ -89956,7 +90030,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 2.72, "detail": "" }, { @@ -89969,7 +90043,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.58, + "duration_ms": 4.55, "detail": "" }, { @@ -89982,7 +90056,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.58, + "duration_ms": 2.22, "detail": "" }, { @@ -89995,7 +90069,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.2, + "duration_ms": 3.71, "detail": "" }, { @@ -90003,12 +90077,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 2.07, + "duration_ms": 3.5, "detail": "" }, { @@ -90021,7 +90095,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.28, + "duration_ms": 3.32, "detail": "" }, { @@ -90034,7 +90108,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 2.26, + "duration_ms": 2.38, "detail": "" }, { @@ -90045,9 +90119,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.94, + "duration_ms": 3.44, "detail": "" }, { @@ -90055,12 +90129,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 3.18, + "duration_ms": 2.97, "detail": "" }, { @@ -90068,12 +90142,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 2.06, + "duration_ms": 3.58, "detail": "" }, { @@ -90086,7 +90160,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 6.09, + "duration_ms": 25.21, "detail": "" }, { @@ -90099,7 +90173,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 5.83, + "duration_ms": 19.43, "detail": "" }, { @@ -90110,9 +90184,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.83, + "duration_ms": 7.43, "detail": "" }, { @@ -90123,9 +90197,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.03, + "duration_ms": 33.12, "detail": "" }, { @@ -90136,9 +90210,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 8.08, "detail": "" }, { @@ -90146,12 +90220,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 1.69, + "duration_ms": 4.22, "detail": "" }, { @@ -90159,12 +90233,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/5a2a29e6-26dc-42e7-9352-a3f6a91426b9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.12, + "duration_ms": 11.72, "detail": "" }, { @@ -90175,9 +90249,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 17.65, "detail": "" }, { @@ -90188,9 +90262,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.71, + "duration_ms": 14.71, "detail": "" }, { @@ -90198,12 +90272,12 @@ "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 6.34, "detail": "" }, { @@ -90211,12 +90285,12 @@ "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "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": 2.5, + "duration_ms": 4.69, "detail": "" }, { @@ -90224,12 +90298,12 @@ "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/a3d37cf9-9f51-482b-80b2-5d9eb2144971", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.88, + "duration_ms": 5.55, "detail": "" }, { @@ -90242,7 +90316,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.89, + "duration_ms": 3.91, "detail": "" }, { @@ -90255,7 +90329,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.11, + "duration_ms": 7.08, "detail": "" }, { @@ -90263,12 +90337,12 @@ "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/f506c4db-c549-4e35-9ea2-449b7743b72c", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.52, + "duration_ms": 6.84, "detail": "" }, { @@ -90276,12 +90350,12 @@ "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/f506c4db-c549-4e35-9ea2-449b7743b72c", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/b9fb7ed1-b698-41d2-8d5d-e1c6a14e5d37", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 5.0, "detail": "" }, { @@ -90289,12 +90363,12 @@ "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/f506c4db-c549-4e35-9ea2-449b7743b72c", + "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": 2.52, + "duration_ms": 5.1, "detail": "" }, { @@ -90307,7 +90381,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.32, + "duration_ms": 6.9, "detail": "" }, { @@ -90320,7 +90394,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.23, + "duration_ms": 10.96, "detail": "" }, { @@ -90333,7 +90407,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 8.51, "detail": "" }, { @@ -90346,7 +90420,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 6.24, "detail": "" }, { @@ -90354,12 +90428,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.47, + "duration_ms": 5.01, "detail": "" }, { @@ -90367,12 +90441,12 @@ "operation_id": "vnicprofiles.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v4/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/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": 1.59, + "duration_ms": 6.59, "detail": "" }, { @@ -90380,12 +90454,12 @@ "operation_id": "vnicprofiles.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v4/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/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": 1.81, + "duration_ms": 4.8, "detail": "" }, { @@ -90393,12 +90467,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/vnicprofiles/077a819c-16db-46a7-ac3a-ce698e894603", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.95, + "duration_ms": 3.58, "detail": "" }, { @@ -90406,12 +90480,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/vnicprofiles/bdaa66e9-c31b-4d45-a8e8-d4035bfcfc2e", + "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": 2.04, + "duration_ms": 3.19, "detail": "" }, { @@ -90419,12 +90493,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/vnicprofiles/101e81c4-b478-47da-a233-334a3571687c", + "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": 1.82, + "duration_ms": 6.68, "detail": "" }, { @@ -90437,7 +90511,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 16.17, "detail": "" }, { @@ -90450,7 +90524,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.25, + "duration_ms": 9.68, "detail": "" }, { @@ -90461,9 +90535,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 6.12, "detail": "" }, { @@ -90474,9 +90548,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 7.84, "detail": "" }, { @@ -90484,12 +90558,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.55, + "duration_ms": 5.84, "detail": "" }, { @@ -90502,7 +90576,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 9.14, "detail": "" }, { @@ -90515,7 +90589,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.39, + "duration_ms": 11.01, "detail": "" }, { @@ -90528,7 +90602,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 8.88, "detail": "" }, { @@ -90541,7 +90615,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.24, + "duration_ms": 11.47, "detail": "" }, { @@ -90549,12 +90623,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 2.54, + "duration_ms": 4.69, "detail": "" }, { @@ -90567,7 +90641,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.92, + "duration_ms": 5.75, "detail": "" }, { @@ -90580,7 +90654,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 6.13, + "duration_ms": 4.94, "detail": "" }, { @@ -90591,9 +90665,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.9, + "duration_ms": 3.6, "detail": "" }, { @@ -90601,12 +90675,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 4.05, + "duration_ms": 3.75, "detail": "" }, { @@ -90614,12 +90688,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 4.23, + "duration_ms": 3.14, "detail": "" }, { @@ -90632,7 +90706,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.98, + "duration_ms": 5.82, "detail": "" }, { @@ -90645,7 +90719,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 5.45, + "duration_ms": 7.67, "detail": "" }, { @@ -90656,9 +90730,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.49, + "duration_ms": 3.93, "detail": "" }, { @@ -90669,9 +90743,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.99, + "duration_ms": 4.2, "detail": "" }, { @@ -90679,12 +90753,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 4.97, + "duration_ms": 7.8, "detail": "" }, { @@ -90692,12 +90766,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v4/jobs/65f2f915-162a-4036-a24c-5166342fd333/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": 4.91, + "duration_ms": 9.79, "detail": "" }, { @@ -90705,12 +90779,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v4/jobs/65f2f915-162a-4036-a24c-5166342fd333/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": 3.64, + "duration_ms": 8.49, "detail": "" }, { @@ -90718,12 +90792,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/65f2f915-162a-4036-a24c-5166342fd333/steps/35988d40-1d7e-4452-ad29-18d44b714be7", + "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": 3.26, + "duration_ms": 6.03, "detail": "" }, { @@ -90731,12 +90805,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/65f2f915-162a-4036-a24c-5166342fd333/steps/baec86b5-f5dc-41da-b033-d2d43eb2c67f", + "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": 2.72, + "duration_ms": 3.03, "detail": "" }, { @@ -90744,12 +90818,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/65f2f915-162a-4036-a24c-5166342fd333/steps/90e4d4be-c864-45bd-a6bc-3a2afdb08753", + "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": 2.02, + "duration_ms": 3.15, "detail": "" }, { @@ -90762,7 +90836,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.66, + "duration_ms": 8.88, "detail": "" }, { @@ -90775,7 +90849,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.51, + "duration_ms": 4.54, "detail": "" }, { @@ -90786,9 +90860,9 @@ "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.11, + "duration_ms": 4.87, "detail": "" }, { @@ -90801,7 +90875,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.05, + "duration_ms": 4.11, "detail": "" }, { @@ -90812,9 +90886,9 @@ "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.05, + "duration_ms": 4.76, "detail": "" }, { @@ -90827,7 +90901,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 3.52, "detail": "" }, { @@ -90838,9 +90912,9 @@ "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 5.23, "detail": "" }, { @@ -90853,7 +90927,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.99, + "duration_ms": 4.22, "detail": "" }, { @@ -90864,9 +90938,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 3.41, "detail": "" }, { @@ -90879,7 +90953,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 4.38, "detail": "" }, { @@ -90890,9 +90964,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 6.14, "detail": "" }, { @@ -90905,7 +90979,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 7.8, "detail": "" }, { @@ -90916,9 +90990,9 @@ "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 11.7, "detail": "" }, { @@ -90931,7 +91005,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.9, + "duration_ms": 9.83, "detail": "" }, { @@ -90944,7 +91018,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.6, + "duration_ms": 8.38, "detail": "" }, { @@ -90957,7 +91031,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.84, + "duration_ms": 5.75, "detail": "" }, { @@ -90965,12 +91039,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1113", + "path_resolved": "/ovirt-engine/api/events/56", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 7.71, "detail": "" }, { @@ -90983,7 +91057,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 11.07, "detail": "" }, { @@ -90994,9 +91068,9 @@ "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 4.28, "detail": "" }, { @@ -91009,7 +91083,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 4.37, "detail": "" }, { @@ -91020,9 +91094,9 @@ "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 4.03, "detail": "" }, { @@ -91035,7 +91109,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 5.27, "detail": "" }, { @@ -91043,12 +91117,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/eee7b23b-fded-435f-896f-65e34430b231", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 9.57, "detail": "" }, { @@ -91061,7 +91135,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 5.05, "detail": "" }, { @@ -91072,9 +91146,9 @@ "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.16, + "duration_ms": 4.79, "detail": "" }, { @@ -91087,7 +91161,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.12, + "duration_ms": 11.05, "detail": "" }, { @@ -91098,9 +91172,9 @@ "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.57, + "duration_ms": 15.32, "detail": "" }, { @@ -91113,7 +91187,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.24, + "duration_ms": 16.0, "detail": "" }, { @@ -91121,12 +91195,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/65f2f915-162a-4036-a24c-5166342fd333", + "path_resolved": "/ovirt-engine/api/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.58, + "duration_ms": 8.38, "detail": "" }, { @@ -91139,7 +91213,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.18, + "duration_ms": 6.61, "detail": "" }, { @@ -91147,12 +91221,12 @@ "operation_id": "head.katelloerrata.get", "method": "HEAD", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/149f57be-46da-4909-a3c5-3d3885b81752", + "path_resolved": "/ovirt-engine/api/katelloerrata/32dc9634-6399-480b-a51a-1caf461f1012", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 6.78, "detail": "" }, { @@ -91165,7 +91239,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.12, + "duration_ms": 5.34, "detail": "" }, { @@ -91176,9 +91250,9 @@ "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.35, + "duration_ms": 4.88, "detail": "" }, { @@ -91191,7 +91265,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.35, + "duration_ms": 6.22, "detail": "" }, { @@ -91199,12 +91273,12 @@ "operation_id": "head.networkfilters.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/b6a93c2f-008c-4031-9962-7cc63453d64c", + "path_resolved": "/ovirt-engine/api/networkfilters/e20f9279-bf2a-41d0-a22d-8f5aba9419ba", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.14, + "duration_ms": 5.52, "detail": "" }, { @@ -91217,7 +91291,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.68, + "duration_ms": 5.44, "detail": "" }, { @@ -91225,12 +91299,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.86, + "duration_ms": 5.31, "detail": "" }, { @@ -91243,7 +91317,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.16, + "duration_ms": 5.1, "detail": "" }, { @@ -91254,9 +91328,9 @@ "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.72, + "duration_ms": 5.23, "detail": "" }, { @@ -91269,7 +91343,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.54, + "duration_ms": 5.74, "detail": "" }, { @@ -91280,9 +91354,9 @@ "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.58, + "duration_ms": 4.87, "detail": "" }, { @@ -91295,7 +91369,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.7, + "duration_ms": 9.07, "detail": "" }, { @@ -91306,9 +91380,9 @@ "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.21, + "duration_ms": 5.44, "detail": "" }, { @@ -91321,7 +91395,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.95, + "duration_ms": 12.41, "detail": "" }, { @@ -91329,12 +91403,12 @@ "operation_id": "head.operatingsystems.get", "method": "HEAD", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/4b468dd4-38c9-4616-8f61-77e15313a5f2", + "path_resolved": "/ovirt-engine/api/operatingsystems/ed258b55-6e47-4d2c-bb86-5efb9c3a2160", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.65, + "duration_ms": 12.26, "detail": "" }, { @@ -91347,7 +91421,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.48, + "duration_ms": 7.39, "detail": "" }, { @@ -91360,7 +91434,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.02, + "duration_ms": 6.35, "detail": "" }, { @@ -91373,7 +91447,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.84, + "duration_ms": 4.78, "detail": "" }, { @@ -91384,9 +91458,9 @@ "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 4.12, "detail": "" }, { @@ -91399,7 +91473,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 4.29, "detail": "" }, { @@ -91410,9 +91484,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 3.8, "detail": "" }, { @@ -91425,7 +91499,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.89, + "duration_ms": 4.83, "detail": "" }, { @@ -91436,9 +91510,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 4.51, "detail": "" }, { @@ -91451,7 +91525,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.82, + "duration_ms": 3.01, "detail": "" }, { @@ -91459,12 +91533,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/da6751a1-5849-473b-834d-3383b38218ca", + "path_resolved": "/ovirt-engine/api/storageconnections/a181e974-26a5-4526-9c5e-93cefa1f1906", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 7.1, "detail": "" }, { @@ -91477,7 +91551,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 13.62, "detail": "" }, { @@ -91488,9 +91562,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 5.58, "detail": "" }, { @@ -91503,7 +91577,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 7.2, "detail": "" }, { @@ -91514,9 +91588,9 @@ "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 7.08, "detail": "" }, { @@ -91529,7 +91603,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.26, + "duration_ms": 5.73, "detail": "" }, { @@ -91540,9 +91614,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 14.04, "detail": "" }, { @@ -91555,7 +91629,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 10.56, "detail": "" }, { @@ -91568,7 +91642,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.84, + "duration_ms": 13.25, "detail": "" }, { @@ -91581,7 +91655,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 7.59, "detail": "" }, { @@ -91592,9 +91666,9 @@ "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 7.49, "detail": "" }, { @@ -91607,7 +91681,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 9.31, "detail": "" }, { @@ -91615,12 +91689,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/c4596545-d3c9-46fb-a481-2964e74292c7", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 8.88, "detail": "" }, { @@ -91633,7 +91707,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 7.75, "detail": "" }, { @@ -91641,12 +91715,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/46cf6d7b-1daa-448f-9aaf-697135f1ef6b", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 9.23, "detail": "" }, { @@ -91659,7 +91733,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 5.55, "detail": "" }, { @@ -91667,12 +91741,12 @@ "operation_id": "head.imagetransfers.get", "method": "HEAD", "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/12b57fbd-ee0d-4180-a2e1-331cc716a327", + "path_resolved": "/ovirt-engine/api/imageTransfers/46752a63-201c-4b81-ade9-d04b13857897", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 4.33, "detail": "" }, { @@ -91685,7 +91759,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.9, + "duration_ms": 4.06, "detail": "" }, { @@ -91696,9 +91770,9 @@ "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 4.8, "detail": "" }, { @@ -91706,12 +91780,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/ce5842f4-f322-4eda-b220-dafa35b213ca/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.64, + "duration_ms": 5.96, "detail": "" }, { @@ -91719,12 +91793,12 @@ "operation_id": "head.diskattachments.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/7d14ac38-40a8-4078-83c2-ac209d5606db/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.61, + "duration_ms": 5.6, "detail": "" }, { @@ -91732,12 +91806,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/f61ef533-2a5c-436b-a73e-b5d710a6556b/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.59, + "duration_ms": 5.64, "detail": "" }, { @@ -91745,12 +91819,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/da6686bc-7ece-40f2-a6b7-d31936470c3a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.48, + "duration_ms": 5.89, "detail": "" }, { @@ -91758,12 +91832,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/9d261467-4d38-428d-9309-5e6668788751/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.66, + "duration_ms": 6.5, "detail": "" }, { @@ -91771,12 +91845,12 @@ "operation_id": "head.cdroms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/d6917900-9c8d-4020-8ca0-d1104bd63938/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.63, + "duration_ms": 5.1, "detail": "" }, { @@ -91784,12 +91858,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/8113a69f-4b82-4885-a973-f4362b2aada5/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.57, + "duration_ms": 5.74, "detail": "" }, { @@ -91797,12 +91871,12 @@ "operation_id": "head.snapshots.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/a34bc64b-76a0-419a-9501-2706f5c24427/snapshots/844c1ec4-0b6a-46e2-b55d-a6217c9fb9d1", + "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": 2.09, + "duration_ms": 5.23, "detail": "" }, { @@ -91810,12 +91884,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/c16510e5-299c-4356-b6ce-2eb211005f9f/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.62, + "duration_ms": 6.78, "detail": "" }, { @@ -91823,12 +91897,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/40e8c76e-d294-42c4-8d3d-6371e122780f/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.49, + "duration_ms": 7.89, "detail": "" }, { @@ -91836,12 +91910,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/29a0daf2-03e1-4a8d-900c-4199280e685d/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": 1.8, + "duration_ms": 8.65, "detail": "" }, { @@ -91849,12 +91923,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/3525eb87-32f1-49b1-a780-0bd660a28cc6/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.81, + "duration_ms": 6.93, "detail": "" }, { @@ -91862,12 +91936,12 @@ "operation_id": "head.graphicsconsoles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/a44b6a91-0833-4c77-9a93-52d623d07e43/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.87, + "duration_ms": 6.45, "detail": "" }, { @@ -91875,12 +91949,12 @@ "operation_id": "head.graphicsconsoles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/a94621e5-c73c-48af-84ce-53c38d9b813c/graphicsconsoles/27364d8a-1c01-42e6-abb1-f3a16943fea1", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/f9ae85e9-58fa-4553-9f6a-8f0384aceed5", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 5.9, "detail": "" }, { @@ -91888,12 +91962,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/5d56ccb5-e701-4ec9-8471-f99a833e0a71/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.84, + "duration_ms": 3.95, "detail": "" }, { @@ -91901,12 +91975,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/fb332445-3495-421f-9cc8-d9069b466cad/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 5.04, "detail": "" }, { @@ -91914,12 +91988,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/ddcd2d7a-73e0-4ff8-996b-409fb7d4af79/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.81, + "duration_ms": 5.77, "detail": "" }, { @@ -91927,12 +92001,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ad8701d1-a95e-43df-a7b0-1be1699c3cd2/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.29, + "duration_ms": 5.85, "detail": "" }, { @@ -91940,12 +92014,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/14cf5f33-bc6c-4ce1-881a-51a63e37b8a6/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.76, + "duration_ms": 5.76, "detail": "" }, { @@ -91953,12 +92027,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/e6d7005b-aad7-4e33-805e-4ce70a253f34/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.63, + "duration_ms": 5.02, "detail": "" }, { @@ -91966,12 +92040,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/94c6f0e0-40cb-46af-b7af-889ba5ac47e2/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.73, + "duration_ms": 6.51, "detail": "" }, { @@ -91979,12 +92053,12 @@ "operation_id": "head.statistics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/5b42d3c4-fcf7-4010-a2f3-0fa695f4e259/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.94, + "duration_ms": 7.47, "detail": "" }, { @@ -91997,7 +92071,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.83, + "duration_ms": 6.42, "detail": "" }, { @@ -92005,12 +92079,12 @@ "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/1ecec8e8-be53-4dab-98e0-66f3e61b3152", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/10c5e5d4-1e00-4ad3-b91c-d963b70ef0fb", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.4, + "duration_ms": 6.35, "detail": "" }, { @@ -92021,9 +92095,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.23, + "duration_ms": 10.02, "detail": "" }, { @@ -92031,12 +92105,12 @@ "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.23, + "duration_ms": 9.88, "detail": "" }, { @@ -92049,7 +92123,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.42, + "duration_ms": 6.46, "detail": "" }, { @@ -92062,7 +92136,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.92, + "duration_ms": 6.77, "detail": "" }, { @@ -92075,7 +92149,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.82, + "duration_ms": 9.58, "detail": "" }, { @@ -92086,9 +92160,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 8.03, "detail": "" }, { @@ -92099,9 +92173,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.09, + "duration_ms": 5.68, "detail": "" }, { @@ -92112,9 +92186,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 5.61, "detail": "" }, { @@ -92125,9 +92199,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 5.46, "detail": "" }, { @@ -92135,12 +92209,12 @@ "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 4.42, "detail": "" }, { @@ -92153,7 +92227,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 5.61, "detail": "" }, { @@ -92161,12 +92235,12 @@ "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/f506c4db-c549-4e35-9ea2-449b7743b72c", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 3.47, "detail": "" }, { @@ -92179,7 +92253,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.93, "detail": "" }, { @@ -92192,7 +92266,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 2.63, "detail": "" }, { @@ -92200,12 +92274,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/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.54, + "duration_ms": 2.52, "detail": "" }, { @@ -92213,12 +92287,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/vnicprofiles/b5bbb4a4-2684-487a-bf94-079850ea1e78", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.73, "detail": "" }, { @@ -92231,7 +92305,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 2.66, "detail": "" }, { @@ -92242,9 +92316,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.26, "detail": "" }, { @@ -92257,7 +92331,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 4.05, "detail": "" }, { @@ -92270,7 +92344,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 5.01, "detail": "" }, { @@ -92283,7 +92357,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 6.13, "detail": "" }, { @@ -92294,9 +92368,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 4.85, "detail": "" }, { @@ -92309,7 +92383,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 4.22, "detail": "" }, { @@ -92320,9 +92394,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 5.3, "detail": "" }, { @@ -92330,12 +92404,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/65f2f915-162a-4036-a24c-5166342fd333/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": 1.61, + "duration_ms": 4.96, "detail": "" }, { @@ -92343,12 +92417,12 @@ "operation_id": "head.steps.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/65f2f915-162a-4036-a24c-5166342fd333/steps/fed5c62b-a5d3-477e-b155-e2571f9f0b61", + "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": 2.07, + "duration_ms": 5.03, "detail": "" }, { @@ -92361,7 +92435,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.66, + "duration_ms": 8.42, "detail": "" }, { @@ -92374,7 +92448,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 5.71, "detail": "" }, { @@ -92385,9 +92459,9 @@ "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 5.61, "detail": "" }, { @@ -92400,7 +92474,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 4.23, "detail": "" }, { @@ -92411,9 +92485,9 @@ "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 5.7, "detail": "" }, { @@ -92426,7 +92500,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.44, + "duration_ms": 5.31, "detail": "" }, { @@ -92437,9 +92511,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 5.5, "detail": "" }, { @@ -92452,7 +92526,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 10.53, "detail": "" }, { @@ -92463,9 +92537,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 7.98, "detail": "" }, { @@ -92478,7 +92552,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 6.75, "detail": "" }, { @@ -92489,9 +92563,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 4.82, "detail": "" }, { @@ -92504,7 +92578,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 5.23, "detail": "" }, { @@ -92515,9 +92589,9 @@ "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 3.69, "detail": "" }, { @@ -92530,7 +92604,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 2.91, "detail": "" }, { @@ -92543,7 +92617,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 3.55, "detail": "" }, { @@ -92556,7 +92630,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 4.19, "detail": "" }, { @@ -92564,12 +92638,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/events/{id}", - "path_resolved": "/ovirt-engine/api/v4/events/1113", + "path_resolved": "/ovirt-engine/api/v4/events/56", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 5.33, "detail": "" }, { @@ -92582,7 +92656,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 6.32, "detail": "" }, { @@ -92593,9 +92667,9 @@ "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 5.05, "detail": "" }, { @@ -92608,7 +92682,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 4.2, "detail": "" }, { @@ -92619,9 +92693,9 @@ "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 3.23, "detail": "" }, { @@ -92634,7 +92708,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 3.48, "detail": "" }, { @@ -92642,12 +92716,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/a23307ed-d18a-4c5b-9a03-3d3e9ba099d7", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 6.62, "detail": "" }, { @@ -92660,7 +92734,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.22, + "duration_ms": 6.42, "detail": "" }, { @@ -92671,9 +92745,9 @@ "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 5.16, "detail": "" }, { @@ -92686,7 +92760,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 7.31, "detail": "" }, { @@ -92697,9 +92771,9 @@ "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 5.83, "detail": "" }, { @@ -92712,7 +92786,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.62, + "duration_ms": 10.83, "detail": "" }, { @@ -92720,12 +92794,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/65f2f915-162a-4036-a24c-5166342fd333", + "path_resolved": "/ovirt-engine/api/v4/jobs/5c6dfaac-5b36-479d-9cce-b446e70783f6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 4.82, "detail": "" }, { @@ -92738,7 +92812,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 6.54, "detail": "" }, { @@ -92746,12 +92820,12 @@ "operation_id": "head.katelloerrata.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v4/katelloerrata/149f57be-46da-4909-a3c5-3d3885b81752", + "path_resolved": "/ovirt-engine/api/v4/katelloerrata/32dc9634-6399-480b-a51a-1caf461f1012", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 6.03, "detail": "" }, { @@ -92764,7 +92838,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 7.89, "detail": "" }, { @@ -92775,9 +92849,9 @@ "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 3.79, "detail": "" }, { @@ -92790,7 +92864,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 3.41, "detail": "" }, { @@ -92798,12 +92872,12 @@ "operation_id": "head.networkfilters.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v4/networkfilters/b6a93c2f-008c-4031-9962-7cc63453d64c", + "path_resolved": "/ovirt-engine/api/v4/networkfilters/e20f9279-bf2a-41d0-a22d-8f5aba9419ba", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 4.73, "detail": "" }, { @@ -92816,7 +92890,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.55, "detail": "" }, { @@ -92824,12 +92898,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/networks/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 3.62, "detail": "" }, { @@ -92842,7 +92916,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 3.62, "detail": "" }, { @@ -92853,9 +92927,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 4.14, "detail": "" }, { @@ -92868,7 +92942,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 4.02, "detail": "" }, { @@ -92879,9 +92953,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 5.45, "detail": "" }, { @@ -92894,7 +92968,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 6.86, "detail": "" }, { @@ -92905,9 +92979,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 9.91, "detail": "" }, { @@ -92920,7 +92994,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 12.06, "detail": "" }, { @@ -92928,12 +93002,12 @@ "operation_id": "head.operatingsystems.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/4b468dd4-38c9-4616-8f61-77e15313a5f2", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/ed258b55-6e47-4d2c-bb86-5efb9c3a2160", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 9.12, "detail": "" }, { @@ -92946,7 +93020,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 5.79, "detail": "" }, { @@ -92959,7 +93033,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 7.59, "detail": "" }, { @@ -92972,7 +93046,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 6.12, "detail": "" }, { @@ -92983,9 +93057,9 @@ "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 8.54, "detail": "" }, { @@ -92998,7 +93072,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 9.31, "detail": "" }, { @@ -93009,9 +93083,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 12.59, "detail": "" }, { @@ -93024,7 +93098,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 9.83, "detail": "" }, { @@ -93035,9 +93109,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 10.68, "detail": "" }, { @@ -93050,7 +93124,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 11.05, "detail": "" }, { @@ -93058,12 +93132,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/da6751a1-5849-473b-834d-3383b38218ca", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/a181e974-26a5-4526-9c5e-93cefa1f1906", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 9.42, "detail": "" }, { @@ -93076,7 +93150,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 10.19, "detail": "" }, { @@ -93087,9 +93161,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 9.95, "detail": "" }, { @@ -93102,7 +93176,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 8.98, "detail": "" }, { @@ -93113,9 +93187,9 @@ "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 8.74, "detail": "" }, { @@ -93128,7 +93202,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.65, + "duration_ms": 8.6, "detail": "" }, { @@ -93139,9 +93213,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 9.02, "detail": "" }, { @@ -93154,7 +93228,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 9.96, "detail": "" }, { @@ -93167,7 +93241,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 8.83, "detail": "" }, { @@ -93180,7 +93254,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 8.36, "detail": "" }, { @@ -93191,9 +93265,9 @@ "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 8.55, "detail": "" }, { @@ -93206,7 +93280,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 6.77, "detail": "" }, { @@ -93214,12 +93288,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/d32b3521-b68d-4fb9-b1fe-2525c689ca74", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 8.24, "detail": "" }, { @@ -93232,7 +93306,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 7.36, "detail": "" }, { @@ -93240,12 +93314,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/c6f45204-7300-42cb-acc1-f2bb304f5b6f", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 9.7, "detail": "" }, { @@ -93258,7 +93332,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 6.69, "detail": "" }, { @@ -93266,12 +93340,12 @@ "operation_id": "head.imagetransfers.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/12b57fbd-ee0d-4180-a2e1-331cc716a327", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/46752a63-201c-4b81-ade9-d04b13857897", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 6.85, "detail": "" }, { @@ -93284,7 +93358,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 8.69, "detail": "" }, { @@ -93295,9 +93369,9 @@ "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 6.59, "detail": "" }, { @@ -93305,12 +93379,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v4/vms/0117a370-f98e-4614-9c14-15c198adb243/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": 1.73, + "duration_ms": 6.54, "detail": "" }, { @@ -93318,12 +93392,12 @@ "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/7c7e6efb-309c-459d-ac4b-cc248e121bd9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.61, + "duration_ms": 7.01, "detail": "" }, { @@ -93331,12 +93405,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/vms/5e4faf1e-2409-4201-820e-0d21040147c4/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.56, + "duration_ms": 6.76, "detail": "" }, { @@ -93344,12 +93418,12 @@ "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/b1ee7137-6d97-4f1e-8c46-0298460bd66c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.38, + "duration_ms": 7.2, "detail": "" }, { @@ -93357,12 +93431,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v4/vms/0c508d63-0b31-4c30-81e3-15d65122404f/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.57, + "duration_ms": 6.04, "detail": "" }, { @@ -93370,12 +93444,12 @@ "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/7ab0d26b-a29e-4695-bf48-0c26a620aec6/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.63, + "duration_ms": 6.38, "detail": "" }, { @@ -93383,12 +93457,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v4/vms/3fea7913-e7e4-4f0f-affe-5c9ab869bbe8/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": 1.57, + "duration_ms": 6.92, "detail": "" }, { @@ -93396,12 +93470,12 @@ "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/b6c779b1-0b13-43bb-946a-6e7b758fc283/snapshots/6f3ea7cd-d79f-4edd-a88f-f11c403bf881", + "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": 1.45, + "duration_ms": 7.31, "detail": "" }, { @@ -93409,12 +93483,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/215b61e6-0b27-46f3-839c-f61cf4cb66c3/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": 1.57, + "duration_ms": 10.5, "detail": "" }, { @@ -93422,12 +93496,12 @@ "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/03b6e798-5b3f-408b-aeff-0ae3251bd96f/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.48, + "duration_ms": 8.88, "detail": "" }, { @@ -93435,12 +93509,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/vms/b84ba020-c164-4238-935c-24ff1072cf0b/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": 1.62, + "duration_ms": 11.83, "detail": "" }, { @@ -93448,12 +93522,12 @@ "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/89ab3409-6cf6-4cbf-943b-33241d5a9319/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.71, + "duration_ms": 7.77, "detail": "" }, { @@ -93461,12 +93535,12 @@ "operation_id": "head.graphicsconsoles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/39b32888-3fa4-4673-919c-caeb4241e948/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.62, + "duration_ms": 10.35, "detail": "" }, { @@ -93474,12 +93548,12 @@ "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/e5c30e1f-0640-4d26-a371-516a6c35e193/graphicsconsoles/27364d8a-1c01-42e6-abb1-f3a16943fea1", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/f9ae85e9-58fa-4553-9f6a-8f0384aceed5", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 6.78, "detail": "" }, { @@ -93487,12 +93561,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/72b3432c-36c8-4e11-9829-e3a75991302f/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.6, + "duration_ms": 7.69, "detail": "" }, { @@ -93500,12 +93574,12 @@ "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/ebcd78e5-2b36-4c71-9340-df93c2019bc1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 6.31, "detail": "" }, { @@ -93513,12 +93587,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/6fd67355-9ba4-402e-aeba-0fa3859a1128/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.46, + "duration_ms": 6.27, "detail": "" }, { @@ -93526,12 +93600,12 @@ "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/31eba814-1794-4c3b-89d6-f3a1efcb63e4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.6, + "duration_ms": 5.97, "detail": "" }, { @@ -93539,12 +93613,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/9e20b558-f3e0-4e3b-b45b-8ec2ff9c019e/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.99, + "duration_ms": 6.56, "detail": "" }, { @@ -93552,12 +93626,12 @@ "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/f3611ce9-b842-49d7-bdf6-757fe8821d41/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.47, + "duration_ms": 5.74, "detail": "" }, { @@ -93565,12 +93639,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v4/hosts/d60282cf-5b8a-4a29-9d5d-1f3d62ad5785/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.51, + "duration_ms": 7.1, "detail": "" }, { @@ -93578,12 +93652,12 @@ "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/ae410baa-8bc4-47e2-8a4d-41a2b40b2051/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 6.62, "detail": "" }, { @@ -93596,7 +93670,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 6.52, "detail": "" }, { @@ -93604,12 +93678,12 @@ "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/ab4d7eeb-4509-48e9-8134-5229c6ee8427", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/10c5e5d4-1e00-4ad3-b91c-d963b70ef0fb", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 13.36, "detail": "" }, { @@ -93620,9 +93694,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 9.23, "detail": "" }, { @@ -93630,12 +93704,12 @@ "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 7.58, "detail": "" }, { @@ -93648,7 +93722,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 9.0, "detail": "" }, { @@ -93661,7 +93735,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 12.38, "detail": "" }, { @@ -93674,7 +93748,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 6.18, "detail": "" }, { @@ -93685,9 +93759,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 6.05, "detail": "" }, { @@ -93698,9 +93772,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 9.32, "detail": "" }, { @@ -93711,9 +93785,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 7.42, "detail": "" }, { @@ -93724,9 +93798,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 8.63, "detail": "" }, { @@ -93734,12 +93808,12 @@ "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 10.36, "detail": "" }, { @@ -93752,7 +93826,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 7.99, "detail": "" }, { @@ -93760,12 +93834,12 @@ "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/f506c4db-c549-4e35-9ea2-449b7743b72c", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 21.86, "detail": "" }, { @@ -93778,7 +93852,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 11.31, "detail": "" }, { @@ -93791,7 +93865,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 5.64, "detail": "" }, { @@ -93799,12 +93873,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v4/networks/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/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": 1.39, + "duration_ms": 3.28, "detail": "" }, { @@ -93812,12 +93886,12 @@ "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/a39edfe0-95f9-4f13-9385-d5fe3dc8cd8f/vnicprofiles/c5410134-149a-4741-a271-a224983d8caa", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 3.56, "detail": "" }, { @@ -93830,7 +93904,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 3.13, "detail": "" }, { @@ -93841,9 +93915,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 3.58, "detail": "" }, { @@ -93856,7 +93930,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 3.0, "detail": "" }, { @@ -93869,7 +93943,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 6.35, "detail": "" }, { @@ -93882,7 +93956,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 10.56, "detail": "" }, { @@ -93893,9 +93967,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 8.22, "detail": "" }, { @@ -93908,7 +93982,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.58, + "duration_ms": 5.45, "detail": "" }, { @@ -93919,9 +93993,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.38, + "duration_ms": 5.85, "detail": "" }, { @@ -93929,12 +94003,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v4/jobs/65f2f915-162a-4036-a24c-5166342fd333/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": 2.03, + "duration_ms": 5.79, "detail": "" }, { @@ -93942,12 +94016,12 @@ "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/65f2f915-162a-4036-a24c-5166342fd333/steps/ebc9541a-abc6-4b27-b356-845a041443ae", + "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": 2.33, + "duration_ms": 4.13, "detail": "" }, { @@ -93960,7 +94034,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.43, + "duration_ms": 17.14, "detail": "" }, { @@ -93973,7 +94047,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 7.54, "detail": "" }, { @@ -93986,7 +94060,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.77, + "duration_ms": 31.83, "detail": "" }, { @@ -93999,7 +94073,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.24, + "duration_ms": 13.44, "detail": "" }, { @@ -94007,12 +94081,12 @@ "operation_id": "affinitylabels.update", "method": "PUT", "path_template": "/ovirt-engine/api/affinitylabels/{id}", - "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", + "path_resolved": "/ovirt-engine/api/affinitylabels/38afa4b4-7c6a-4ef1-a046-74e50871a3a9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.22, + "duration_ms": 44.69, "detail": "" }, { @@ -94020,12 +94094,12 @@ "operation_id": "affinitylabels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/affinitylabels/{id}", - "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", + "path_resolved": "/ovirt-engine/api/affinitylabels/097d25de-db67-48ee-bd04-8ec00465f44c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.47, + "duration_ms": 27.66, "detail": "" }, { @@ -94038,7 +94112,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.38, + "duration_ms": 14.48, "detail": "" }, { @@ -94051,7 +94125,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.82, + "duration_ms": 12.11, "detail": "" }, { @@ -94064,7 +94138,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 24.24, "detail": "" }, { @@ -94072,12 +94146,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/ec529037-4bcf-4598-bbce-570115a1f1f3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 17.0, "detail": "" }, { @@ -94085,12 +94159,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/bcb3cf43-b2b7-4a3f-a8d6-ea60de6f41d2", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 12.54, "detail": "" }, { @@ -94103,7 +94177,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 8.51, "detail": "" }, { @@ -94116,7 +94190,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.37, + "duration_ms": 13.48, "detail": "" }, { @@ -94129,7 +94203,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 15.04, "detail": "" }, { @@ -94137,12 +94211,12 @@ "operation_id": "clusterlevels.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/clusterlevels/61c97b12-5fab-4dc5-a5b0-9d3a40922277", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 12.61, "detail": "" }, { @@ -94150,12 +94224,12 @@ "operation_id": "clusterlevels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/clusterlevels/3fba22d3-0cdb-4387-b0da-359b7aa3db60", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 5.98, "detail": "" }, { @@ -94168,7 +94242,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 4.46, "detail": "" }, { @@ -94181,7 +94255,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.99, + "duration_ms": 10.38, "detail": "" }, { @@ -94194,7 +94268,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 7.1, "detail": "" }, { @@ -94202,12 +94276,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/6159c1d8-f51d-4360-8a9b-1a4a729043c6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 10.74, "detail": "" }, { @@ -94215,12 +94289,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/27ac9352-de0d-4d0e-a2e0-02b31282e3ac", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 10.92, "detail": "" }, { @@ -94233,7 +94307,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.45, + "duration_ms": 18.83, "detail": "" }, { @@ -94246,7 +94320,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.89, + "duration_ms": 20.0, "detail": "" }, { @@ -94259,7 +94333,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.83, + "duration_ms": 30.66, "detail": "" }, { @@ -94272,7 +94346,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 21.41, "detail": "" }, { @@ -94285,7 +94359,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.84, + "duration_ms": 9.69, "detail": "" }, { @@ -94298,7 +94372,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 25.99, "detail": "" }, { @@ -94311,7 +94385,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 39.49, "detail": "" }, { @@ -94319,12 +94393,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/1205db1e-3afa-4bfa-99ce-415a4741f4f0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 13.95, "detail": "" }, { @@ -94332,12 +94406,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/a4c7b267-0275-4c54-9832-8849fa6682cd", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 15.13, "detail": "" }, { @@ -94350,7 +94424,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.19, + "duration_ms": 22.57, "detail": "" }, { @@ -94363,7 +94437,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 8.71, "detail": "" }, { @@ -94376,7 +94450,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.48, + "duration_ms": 67.51, "detail": "" }, { @@ -94389,7 +94463,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 82.88, "detail": "" }, { @@ -94397,12 +94471,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/565f38b1-ad77-4828-9d25-b0eeaaa4e01d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 17.76, "detail": "" }, { @@ -94410,12 +94484,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/1f93f982-d32c-4344-b5a5-84fe94802453", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 116.87, "detail": "" }, { @@ -94428,7 +94502,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.97, + "duration_ms": 41.52, "detail": "" }, { @@ -94441,7 +94515,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.81, + "duration_ms": 37.01, "detail": "" }, { @@ -94454,7 +94528,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 18.87, "detail": "" }, { @@ -94467,7 +94541,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 24.29, "detail": "" }, { @@ -94480,7 +94554,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.21, + "duration_ms": 14.72, "detail": "" }, { @@ -94493,7 +94567,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 6.71, "detail": "" }, { @@ -94506,7 +94580,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.19, + "duration_ms": 14.2, "detail": "" }, { @@ -94519,7 +94593,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 7.13, "detail": "" }, { @@ -94532,7 +94606,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 4.97, "detail": "" }, { @@ -94540,12 +94614,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/domains/{id}", - "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/domains/af4d5a9e-9053-48c6-9226-81938d86e0c8", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 5.67, "detail": "" }, { @@ -94558,7 +94632,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 7.18, "detail": "" }, { @@ -94571,7 +94645,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.01, + "duration_ms": 12.52, "detail": "" }, { @@ -94579,12 +94653,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1114", + "path_resolved": "/ovirt-engine/api/events/57", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 8.13, "detail": "" }, { @@ -94592,12 +94666,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1114", + "path_resolved": "/ovirt-engine/api/events/57", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 4.59, "detail": "" }, { @@ -94605,12 +94679,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1114", + "path_resolved": "/ovirt-engine/api/events/1dbb081e-6118-44da-8ba1-57dd0b7638ab", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.95, + "duration_ms": 8.08, "detail": "" }, { @@ -94623,7 +94697,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 7.1, "detail": "" }, { @@ -94636,7 +94710,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.97, + "duration_ms": 6.57, "detail": "" }, { @@ -94649,7 +94723,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 2.44, "detail": "" }, { @@ -94657,12 +94731,12 @@ "operation_id": "externalhostproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/4711a63c-0595-44ba-a09c-2c2fb4f38829", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.73, "detail": "" }, { @@ -94670,12 +94744,12 @@ "operation_id": "externalhostproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/21748c8a-9f9a-45c5-94b4-50977e369b70", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 2.14, "detail": "" }, { @@ -94688,7 +94762,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 2.36, "detail": "" }, { @@ -94701,7 +94775,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.5, + "duration_ms": 3.53, "detail": "" }, { @@ -94714,7 +94788,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 2.21, "detail": "" }, { @@ -94722,12 +94796,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/c6291420-4e71-45bf-b88d-f66338554d05", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.29, "detail": "" }, { @@ -94735,12 +94809,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/002cb44b-f779-448f-b7d0-a23a56542c1d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 3.07, "detail": "" }, { @@ -94753,7 +94827,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 3.37, "detail": "" }, { @@ -94764,9 +94838,9 @@ "path_resolved": "/ovirt-engine/api/hosts", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.6, + "duration_ms": 6.29, "detail": "" }, { @@ -94774,12 +94848,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/d514fbc7-1126-45d6-8a15-09ce130a9590", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 3.13, "detail": "" }, { @@ -94787,12 +94861,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/2d0d6882-a60f-4870-8f32-ff2a002cf11d", + "path_resolved": "/ovirt-engine/api/hosts/f48ef43e-036c-4c5c-ae19-8d38aca9e187", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 4.04, "detail": "" }, { @@ -94800,12 +94874,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/f1570c67-edb6-4460-8247-299aeb52e8a6", + "path_resolved": "/ovirt-engine/api/hosts/ab2d22a6-8a94-4289-a44f-5936eba05635", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 9.01, "detail": "" }, { @@ -94813,12 +94887,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/hosts/51439079-0826-4c38-bf0b-ca02502d0985/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": 2.03, + "duration_ms": 12.94, "detail": "" }, { @@ -94826,12 +94900,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/hosts/39fe8051-2c1a-426a-ad1e-13a683e1c552/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": 1.68, + "duration_ms": 7.84, "detail": "" }, { @@ -94839,12 +94913,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/hosts/14f7a49b-a964-4fb9-aff8-a1e58e5abf0e/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": 1.81, + "duration_ms": 4.09, "detail": "" }, { @@ -94852,12 +94926,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/hosts/a5815705-1ad3-4b1f-a048-1b10aa314659/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": 1.72, + "duration_ms": 5.28, "detail": "" }, { @@ -94865,12 +94939,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/hosts/eda78ef0-bc62-477b-a6ac-5f3c9a434e86/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": 1.77, + "duration_ms": 5.21, "detail": "" }, { @@ -94878,12 +94952,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/hosts/c7ed0376-154c-4f90-ad05-bb6f0747b8d6/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": 1.71, + "duration_ms": 6.47, "detail": "" }, { @@ -94891,12 +94965,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/hosts/e0e6d4f5-5789-40e1-8a87-cc59bdf9d4b0/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": 1.7, + "duration_ms": 4.44, "detail": "" }, { @@ -94904,12 +94978,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/hosts/9bfb10d2-f687-4d52-84e9-8f7b5eed1587/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": 1.96, + "duration_ms": 6.13, "detail": "" }, { @@ -94917,12 +94991,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/hosts/690eaa9d-84fb-45dc-bcbe-95e20f1fc4d5/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": 1.81, + "duration_ms": 6.33, "detail": "" }, { @@ -94930,12 +95004,12 @@ "operation_id": "hosts.unregisteredstoragedomainsdiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/hosts/d9ae4da3-6e8e-4535-867e-7490f4e58720/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": 1.87, + "duration_ms": 9.75, "detail": "" }, { @@ -94943,12 +95017,12 @@ "operation_id": "hosts.upgrade", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgrade", - "path_resolved": "/ovirt-engine/api/hosts/8dbd9639-bc8b-4b63-b8a3-b931d2f60989/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": 1.79, + "duration_ms": 5.14, "detail": "" }, { @@ -94956,12 +95030,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/hosts/e74498fb-0e2e-4609-a1ef-159d0817ebe1/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": 1.74, + "duration_ms": 5.58, "detail": "" }, { @@ -94969,12 +95043,12 @@ "operation_id": "hosts.enrollcertificate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/enrollcertificate", - "path_resolved": "/ovirt-engine/api/hosts/53eaad58-1335-4186-9037-6a7dfbeb69ea/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": 1.77, + "duration_ms": 4.28, "detail": "" }, { @@ -94987,7 +95061,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 2.24, "detail": "" }, { @@ -95000,7 +95074,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.31, + "duration_ms": 2.31, "detail": "" }, { @@ -95013,7 +95087,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.92, + "duration_ms": 2.06, "detail": "" }, { @@ -95021,12 +95095,12 @@ "operation_id": "icons.update", "method": "PUT", "path_template": "/ovirt-engine/api/icons/{id}", - "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/icons/ca2e17ef-2b35-4b4a-898f-1f0066f3190a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 2.38, "detail": "" }, { @@ -95034,12 +95108,12 @@ "operation_id": "icons.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/icons/{id}", - "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/icons/6060a06d-62e9-4197-ad2a-77b71ee04207", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 1.89, "detail": "" }, { @@ -95052,7 +95126,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 1.71, "detail": "" }, { @@ -95065,7 +95139,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.33, + "duration_ms": 2.03, "detail": "" }, { @@ -95078,7 +95152,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 1.89, "detail": "" }, { @@ -95086,12 +95160,12 @@ "operation_id": "instancetypes.update", "method": "PUT", "path_template": "/ovirt-engine/api/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/instancetypes/78fea4d7-b00c-41e0-b78a-1e2620cccc68", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 2.15, "detail": "" }, { @@ -95099,12 +95173,12 @@ "operation_id": "instancetypes.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/instancetypes/2c2c6383-116f-49e6-a8a6-97ff2cca9345", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 1.97, "detail": "" }, { @@ -95117,7 +95191,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.47, "detail": "" }, { @@ -95130,7 +95204,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.97, + "duration_ms": 1.63, "detail": "" }, { @@ -95138,12 +95212,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac", + "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 2.65, "detail": "" }, { @@ -95151,12 +95225,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac", + "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.93, + "duration_ms": 1.82, "detail": "" }, { @@ -95164,12 +95238,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac", + "path_resolved": "/ovirt-engine/api/jobs/bfdf0956-e19d-4902-9d57-2ac7a250e657", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.92, + "duration_ms": 2.27, "detail": "" }, { @@ -95182,7 +95256,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 3.18, "detail": "" }, { @@ -95195,7 +95269,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.33, + "duration_ms": 3.24, "detail": "" }, { @@ -95203,12 +95277,12 @@ "operation_id": "katelloerrata.get", "method": "GET", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/7f294595-e654-4b68-9569-22d8d1d58868", + "path_resolved": "/ovirt-engine/api/katelloerrata/938ec820-56e7-4d69-9fd9-f4fc0fab5022", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 2.28, "detail": "" }, { @@ -95216,12 +95290,12 @@ "operation_id": "katelloerrata.update", "method": "PUT", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/7f294595-e654-4b68-9569-22d8d1d58868", + "path_resolved": "/ovirt-engine/api/katelloerrata/68742550-2844-4909-bb23-3662b4ded02e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 3.58, "detail": "" }, { @@ -95229,12 +95303,12 @@ "operation_id": "katelloerrata.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/7f294595-e654-4b68-9569-22d8d1d58868", + "path_resolved": "/ovirt-engine/api/katelloerrata/6d6bec1c-9acc-491b-82e3-27ba45cb14b5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 2.15, "detail": "" }, { @@ -95247,7 +95321,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 1.66, "detail": "" }, { @@ -95260,7 +95334,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.29, + "duration_ms": 2.36, "detail": "" }, { @@ -95273,7 +95347,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 4.08, "detail": "" }, { @@ -95281,12 +95355,12 @@ "operation_id": "macpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/macpools/{id}", - "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/macpools/852fc378-9bb2-4789-8c46-378b38926596", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 2.19, "detail": "" }, { @@ -95294,12 +95368,12 @@ "operation_id": "macpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/macpools/{id}", - "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/macpools/e5ca38aa-167c-4eb9-ae50-afd4aac9d003", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 2.05, "detail": "" }, { @@ -95312,7 +95386,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 1.67, "detail": "" }, { @@ -95325,7 +95399,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.43, + "duration_ms": 2.31, "detail": "" }, { @@ -95333,12 +95407,12 @@ "operation_id": "networkfilters.get", "method": "GET", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/2e5bc167-9a4b-46ad-9762-ed7658069dc0", + "path_resolved": "/ovirt-engine/api/networkfilters/5034fcd4-bd5a-4056-a04c-31fcd39f0c82", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 1.76, "detail": "" }, { @@ -95346,12 +95420,12 @@ "operation_id": "networkfilters.update", "method": "PUT", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/2e5bc167-9a4b-46ad-9762-ed7658069dc0", + "path_resolved": "/ovirt-engine/api/networkfilters/f1fc0807-eb17-4f68-a531-443732f9e19c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 2.05, "detail": "" }, { @@ -95359,12 +95433,12 @@ "operation_id": "networkfilters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/2e5bc167-9a4b-46ad-9762-ed7658069dc0", + "path_resolved": "/ovirt-engine/api/networkfilters/04f0f743-9245-4b05-866f-c7e8b8c84380", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.38, + "duration_ms": 2.05, "detail": "" }, { @@ -95377,7 +95451,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 2.18, "detail": "" }, { @@ -95390,7 +95464,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 3.75, "detail": "" }, { @@ -95398,12 +95472,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 5.89, "detail": "" }, { @@ -95411,12 +95485,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/networks/992a0da6-e54c-447d-a4d8-e4ac0ae9c825", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 5.81, "detail": "" }, { @@ -95424,12 +95498,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/networks/3b41decf-2a3e-4cf7-bb8f-6e61c7d8a711", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 4.7, "detail": "" }, { @@ -95442,7 +95516,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 3.28, "detail": "" }, { @@ -95455,7 +95529,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.33, + "duration_ms": 5.4, "detail": "" }, { @@ -95468,7 +95542,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 4.67, "detail": "" }, { @@ -95476,12 +95550,12 @@ "operation_id": "openstackimageproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/6f014c18-4eb3-4e1e-a7ac-b908a0cb4e5a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 5.29, "detail": "" }, { @@ -95489,12 +95563,12 @@ "operation_id": "openstackimageproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/4eb662c6-7f00-46b4-858d-b56b146c5d89", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 5.42, "detail": "" }, { @@ -95507,7 +95581,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 5.75, "detail": "" }, { @@ -95520,7 +95594,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 7.58, "detail": "" }, { @@ -95533,7 +95607,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 2.98, "detail": "" }, { @@ -95541,12 +95615,12 @@ "operation_id": "openstacknetworkproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/a6f5705a-21c8-4a71-8ee6-d8cd80e766be", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 3.89, "detail": "" }, { @@ -95554,12 +95628,12 @@ "operation_id": "openstacknetworkproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/c194ca4a-8146-4e69-8c56-14ebefca8ee0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 3.34, "detail": "" }, { @@ -95572,7 +95646,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 2.71, "detail": "" }, { @@ -95585,7 +95659,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 4.28, "detail": "" }, { @@ -95598,7 +95672,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 1.9, "detail": "" }, { @@ -95606,12 +95680,12 @@ "operation_id": "openstackvolumeproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/77ff19fe-2e09-4318-922b-03b05899ca4c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 3.28, "detail": "" }, { @@ -95619,12 +95693,12 @@ "operation_id": "openstackvolumeproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/d37484f1-582f-499c-b569-b1c24454bed1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 2.22, "detail": "" }, { @@ -95637,7 +95711,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 1.84, "detail": "" }, { @@ -95650,7 +95724,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.23, + "duration_ms": 2.09, "detail": "" }, { @@ -95658,12 +95732,12 @@ "operation_id": "operatingsystems.get", "method": "GET", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/5058dee1-e29b-46d4-801b-4d3590ea74f6", + "path_resolved": "/ovirt-engine/api/operatingsystems/e9693c95-cba3-45a8-b6ac-0e627ff4c7c1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 1.79, "detail": "" }, { @@ -95671,12 +95745,12 @@ "operation_id": "operatingsystems.update", "method": "PUT", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/5058dee1-e29b-46d4-801b-4d3590ea74f6", + "path_resolved": "/ovirt-engine/api/operatingsystems/1462ea43-2140-4937-a771-5305735c7f16", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 2.22, "detail": "" }, { @@ -95684,12 +95758,12 @@ "operation_id": "operatingsystems.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/5058dee1-e29b-46d4-801b-4d3590ea74f6", + "path_resolved": "/ovirt-engine/api/operatingsystems/bfc690bf-e84c-4a78-bced-a3f82d4f50db", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.79, "detail": "" }, { @@ -95702,7 +95776,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.88, + "duration_ms": 2.48, "detail": "" }, { @@ -95715,7 +95789,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.97, + "duration_ms": 1.57, "detail": "" }, { @@ -95728,7 +95802,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 2.03, "detail": "" }, { @@ -95741,7 +95815,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 1.6, "detail": "" }, { @@ -95749,12 +95823,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/permissions/{id}", - "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/permissions/3bdb77e1-551f-4741-a941-675275dadbf6", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 1.6, "detail": "" }, { @@ -95767,7 +95841,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 1.97, "detail": "" }, { @@ -95780,7 +95854,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.54, + "duration_ms": 3.0, "detail": "" }, { @@ -95793,7 +95867,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 2.21, "detail": "" }, { @@ -95801,12 +95875,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/4c4eaeab-fac7-4bde-8fef-fae3c6f0e689", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 4.3, "detail": "" }, { @@ -95814,12 +95888,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/b2760e8c-d564-482a-85e9-496fd6a8a9ef", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 4.22, "detail": "" }, { @@ -95832,7 +95906,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 2.56, "detail": "" }, { @@ -95845,7 +95919,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.31, + "duration_ms": 3.78, "detail": "" }, { @@ -95858,7 +95932,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 2.33, "detail": "" }, { @@ -95866,12 +95940,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/16ce0972-66d5-4889-a998-b4552b78bff3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 1.99, "detail": "" }, { @@ -95879,12 +95953,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/ec573df6-b34e-474f-9987-4244dec71413", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 1.76, "detail": "" }, { @@ -95897,7 +95971,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 1.69, "detail": "" }, { @@ -95910,7 +95984,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.23, + "duration_ms": 2.07, "detail": "" }, { @@ -95923,7 +95997,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 2.94, "detail": "" }, { @@ -95931,12 +96005,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/9381c31b-9e23-4ac8-a5f1-f9316e194bd9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 2.87, "detail": "" }, { @@ -95944,12 +96018,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/71c5438b-855e-4b54-a703-6d5bc0c9360d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 3.45, "detail": "" }, { @@ -95962,7 +96036,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 2.6, "detail": "" }, { @@ -95975,7 +96049,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.57, + "duration_ms": 5.92, "detail": "" }, { @@ -95983,12 +96057,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/5fc43f15-7481-4e2b-9f9a-3bc5c5820091", + "path_resolved": "/ovirt-engine/api/storageconnections/b20ef56b-92f1-44d3-bf74-e1540cdd72fb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 4.16, "detail": "" }, { @@ -95996,12 +96070,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/5fc43f15-7481-4e2b-9f9a-3bc5c5820091", + "path_resolved": "/ovirt-engine/api/storageconnections/c7837f88-097d-4336-a0ad-f5a698998872", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 2.25, "detail": "" }, { @@ -96009,12 +96083,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/5fc43f15-7481-4e2b-9f9a-3bc5c5820091", + "path_resolved": "/ovirt-engine/api/storageconnections/8d572d6e-c0f6-434f-9b9a-d5fb11e135c8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.9, + "duration_ms": 2.5, "detail": "" }, { @@ -96027,7 +96101,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.22, + "duration_ms": 2.35, "detail": "" }, { @@ -96040,7 +96114,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 4.94, + "duration_ms": 6.84, "detail": "" }, { @@ -96053,7 +96127,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.79, + "duration_ms": 6.26, "detail": "" }, { @@ -96061,12 +96135,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/6a9f208e-ab8a-4a31-b347-07a133cff92a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.75, + "duration_ms": 7.26, "detail": "" }, { @@ -96074,12 +96148,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/25bf9dab-033c-4309-8916-07c33f4dc90e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 10.63, + "duration_ms": 4.66, "detail": "" }, { @@ -96092,7 +96166,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 6.43, + "duration_ms": 6.36, "detail": "" }, { @@ -96105,7 +96179,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.74, + "duration_ms": 5.51, "detail": "" }, { @@ -96118,7 +96192,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.19, + "duration_ms": 3.92, "detail": "" }, { @@ -96131,7 +96205,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.17, + "duration_ms": 2.8, "detail": "" }, { @@ -96144,7 +96218,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.97, + "duration_ms": 3.05, "detail": "" }, { @@ -96157,7 +96231,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 2.13, "detail": "" }, { @@ -96165,12 +96239,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/85005fe9-b815-4d8e-8d6a-e034ead0e70c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.89, + "duration_ms": 2.33, "detail": "" }, { @@ -96178,12 +96252,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/499fa547-ab51-4075-9b76-7e170e207f8f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.1, + "duration_ms": 2.72, "detail": "" }, { @@ -96196,7 +96270,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 2.08, "detail": "" }, { @@ -96209,7 +96283,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.14, + "duration_ms": 2.76, "detail": "" }, { @@ -96222,7 +96296,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 1.82, "detail": "" }, { @@ -96230,12 +96304,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/68a08c29-96f1-4162-be9f-2c42350d7ff5", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 1.53, "detail": "" }, { @@ -96243,12 +96317,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/9168fc19-b0d2-4a77-8da6-0d2c0d98e261", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 2.12, "detail": "" }, { @@ -96261,7 +96335,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.2, + "duration_ms": 2.53, "detail": "" }, { @@ -96274,7 +96348,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 1.77, "detail": "" }, { @@ -96287,7 +96361,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 1.48, "detail": "" }, { @@ -96300,7 +96374,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 1.85, "detail": "" }, { @@ -96313,7 +96387,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 1.48, "detail": "" }, { @@ -96321,12 +96395,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/users/{id}", - "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/users/d55bebbd-e6fa-4098-9ff8-c877b6b785fe", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 1.45, "detail": "" }, { @@ -96339,7 +96413,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 1.94, "detail": "" }, { @@ -96352,7 +96426,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.14, + "duration_ms": 2.18, "detail": "" }, { @@ -96365,7 +96439,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.88, + "duration_ms": 1.62, "detail": "" }, { @@ -96373,12 +96447,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/b0cdfac7-8b11-4551-b585-e2e40d8b5404", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.21, + "duration_ms": 1.87, "detail": "" }, { @@ -96386,12 +96460,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/48bbdf59-5d15-4e7e-b27a-076de62c4934", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.88, + "duration_ms": 1.96, "detail": "" }, { @@ -96404,7 +96478,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 1.87, "detail": "" }, { @@ -96415,9 +96489,9 @@ "path_resolved": "/ovirt-engine/api/vms", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.7, + "duration_ms": 6.46, "detail": "" }, { @@ -96425,12 +96499,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/1a3ffac5-880a-460d-b7fb-0e49a11b13ce", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 2.06, "detail": "" }, { @@ -96438,12 +96512,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/8e744e3c-8fa3-4ee2-b116-3c636b052b70", + "path_resolved": "/ovirt-engine/api/vms/2888831a-7c8a-449c-abc2-dad5f27d22ff", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.31, "detail": "" }, { @@ -96451,12 +96525,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/461e2a76-eb94-4e3a-83c0-47b8ef152075", + "path_resolved": "/ovirt-engine/api/vms/e306d94e-5dce-4191-877b-a57f00d396c1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 3.04, "detail": "" }, { @@ -96464,12 +96538,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/vms/be2ad275-2310-4b73-84c0-ce50055a0076/start", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.29, + "duration_ms": 3.21, "detail": "" }, { @@ -96477,12 +96551,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/vms/9d31fb0b-f9e7-48e2-80e3-9ec3e45c7351/stop", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.98, + "duration_ms": 2.82, "detail": "" }, { @@ -96490,12 +96564,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/vms/f6edfe46-f056-48c6-a391-6fc5868f5fe3/shutdown", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.63, + "duration_ms": 5.34, "detail": "" }, { @@ -96503,12 +96577,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/vms/eef0332a-b94a-4298-8196-326067f226a9/reboot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.47, + "duration_ms": 3.7, "detail": "" }, { @@ -96516,12 +96590,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/vms/b733f80a-ba03-40e1-b7f1-324cd4958c99/suspend", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.39, + "duration_ms": 3.53, "detail": "" }, { @@ -96529,12 +96603,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/vms/b22ee607-978d-422e-8419-6b2fa75e9537/migrate", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.36, + "duration_ms": 3.26, "detail": "" }, { @@ -96542,12 +96616,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/vms/efa7ea5a-7e04-4c2c-8245-09f9eccc1035/cancelmigration", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.31, + "duration_ms": 3.12, "detail": "" }, { @@ -96555,12 +96629,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/vms/92f90df1-d1b6-4164-88a0-05316758eedb/clone", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.3, + "duration_ms": 6.62, "detail": "" }, { @@ -96568,12 +96642,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/vms/e6306e76-0cc2-445c-83d1-5a99c13130d8/export", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 2.55, "detail": "" }, { @@ -96581,12 +96655,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/vms/0fe5a49c-62b6-483d-b5b4-1dce84b5d01d/detach", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.35, + "duration_ms": 2.71, "detail": "" }, { @@ -96594,12 +96668,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/vms/3018919e-87ea-4771-9e42-00f9ab322737/screenthumbnail", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.5, + "duration_ms": 2.59, "detail": "" }, { @@ -96607,12 +96681,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/vms/5a68e23c-c230-4407-b229-5609e00d1833/ticket", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.38, + "duration_ms": 2.35, "detail": "" }, { @@ -96620,12 +96694,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/vms/01afe497-3681-4c66-b025-b49f3baaa58b/logon", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 5.9, "detail": "" }, { @@ -96633,12 +96707,12 @@ "operation_id": "vms.maintenance", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/vms/2e3b207f-5bb8-43b2-a327-062878cfae83/maintenance", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 4.49, "detail": "" }, { @@ -96646,12 +96720,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/vms/a886ae76-1cb5-46d1-a657-e9b65eaacf7f/preview_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.48, + "duration_ms": 5.19, "detail": "" }, { @@ -96659,12 +96733,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/vms/e7b087f7-0114-40bb-9493-22f50a0d4d1e/commit_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.29, + "duration_ms": 3.37, "detail": "" }, { @@ -96672,12 +96746,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/vms/ed83dca5-14c9-4b96-a55c-5bf13ba98c85/undo_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.37, + "duration_ms": 2.86, "detail": "" }, { @@ -96685,12 +96759,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/vms/0b9ffed5-9dc7-4183-b66a-370ccf56c0a4/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 2.7, "detail": "" }, { @@ -96698,12 +96772,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/vms/3d1cb63b-38f0-4ee3-9061-acb589ec7e09/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.43, + "duration_ms": 2.88, "detail": "" }, { @@ -96716,7 +96790,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 1.84, "detail": "" }, { @@ -96727,9 +96801,9 @@ "path_resolved": "/ovirt-engine/api/vnicprofiles", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.81, + "duration_ms": 2.5, "detail": "" }, { @@ -96737,12 +96811,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/4c8e792e-5ed5-4432-b80a-0f6d086e0528", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 1.77, "detail": "" }, { @@ -96750,12 +96824,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/ab85c068-1419-412b-acc7-2755cbe65f69", + "path_resolved": "/ovirt-engine/api/vnicprofiles/7dda13b1-4071-43f1-8956-f9f2f40443c7", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 1.51, "detail": "" }, { @@ -96763,12 +96837,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/da9fe3f3-af20-4d9f-9beb-1aed2a440d38", + "path_resolved": "/ovirt-engine/api/vnicprofiles/150ea4da-6863-438a-a8d4-ab0acc5cd3f9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.1, "detail": "" }, { @@ -96781,7 +96855,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 1.68, "detail": "" }, { @@ -96802,12 +96876,12 @@ "operation_id": "imagetransfers.get", "method": "GET", "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/3302bbce-b5ec-43ab-9638-996b1f31c55b", + "path_resolved": "/ovirt-engine/api/imageTransfers/6f7adf35-0807-48f3-b118-2d5e11ed671c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 1.55, "detail": "" }, { @@ -96815,12 +96889,12 @@ "operation_id": "imagetransfers.update", "method": "PUT", "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/3302bbce-b5ec-43ab-9638-996b1f31c55b", + "path_resolved": "/ovirt-engine/api/imageTransfers/96648146-3f0b-4750-a28b-fa9cf09fa24a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 1.9, "detail": "" }, { @@ -96828,12 +96902,12 @@ "operation_id": "imagetransfers.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/3302bbce-b5ec-43ab-9638-996b1f31c55b", + "path_resolved": "/ovirt-engine/api/imageTransfers/76376952-0ee8-41d6-ad79-cd1c55455a93", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 1.74, "detail": "" }, { @@ -96846,7 +96920,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.26, "detail": "" }, { @@ -96859,7 +96933,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.37, + "duration_ms": 2.39, "detail": "" }, { @@ -96872,7 +96946,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 1.84, "detail": "" }, { @@ -96880,12 +96954,12 @@ "operation_id": "options.update", "method": "PUT", "path_template": "/ovirt-engine/api/options/{id}", - "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7", + "path_resolved": "/ovirt-engine/api/options/e80b44b1-72fc-4244-a0bc-33c9b19bc564", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.02, "detail": "" }, { @@ -96893,12 +96967,12 @@ "operation_id": "options.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/options/{id}", - "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7", + "path_resolved": "/ovirt-engine/api/options/ce4e269b-d69c-4757-8167-9b3d0543f62a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 1.86, "detail": "" }, { @@ -96906,12 +96980,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/763f37cf-0f93-4449-b3e6-3c3b6214d03f/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, + "duration_ms": 1.94, "detail": "" }, { @@ -96919,12 +96993,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/1403e17a-4fd5-4ef8-90e2-11b8a56f35e4/diskattachments", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.96, + "duration_ms": 3.03, "detail": "" }, { @@ -96932,12 +97006,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/d72a6310-c0a6-4cb8-bede-0816feeb4017/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.3, + "duration_ms": 1.81, "detail": "" }, { @@ -96945,12 +97019,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/bcb0b916-47b6-4477-a806-5c004acc9116/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.1, + "duration_ms": 1.63, "detail": "" }, { @@ -96958,12 +97032,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/c0036020-df82-43eb-b590-a5769b951511/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.17, + "duration_ms": 3.9, "detail": "" }, { @@ -96971,12 +97045,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/1dead0e8-8bc4-4eb7-b295-25a07fbbafdf/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.3, + "duration_ms": 4.05, "detail": "" }, { @@ -96984,12 +97058,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/2af24bb9-1642-444e-b101-0af5ea326f81/nics", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.64, + "duration_ms": 5.87, "detail": "" }, { @@ -96997,12 +97071,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/604da7a3-2ff6-4a3a-8783-73b464661789/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.07, + "duration_ms": 3.15, "detail": "" }, { @@ -97010,12 +97084,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/f5eeb088-bdda-41c7-9b32-eada2620c2b1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/fb5c56c7-b084-4c4e-8899-e5ec0f447ad1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 15.08, "detail": "" }, { @@ -97023,12 +97097,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/5f3206fd-e57b-437a-a0ee-a23dcaa45be7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.19, + "duration_ms": 8.25, "detail": "" }, { @@ -97036,12 +97110,12 @@ "operation_id": "nics.activate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate", - "path_resolved": "/ovirt-engine/api/vms/6a19c062-c3c2-4840-8a16-90aac2eec2dc/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.0, + "duration_ms": 11.99, "detail": "" }, { @@ -97049,12 +97123,12 @@ "operation_id": "nics.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/vms/923227ac-b9e3-4340-89c4-713f2643f984/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.76, + "duration_ms": 11.26, "detail": "" }, { @@ -97062,12 +97136,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/795012bc-d142-4571-95dc-4daecac431e8/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.29, + "duration_ms": 5.37, "detail": "" }, { @@ -97075,12 +97149,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/83c17921-7899-4d9f-840f-0d2a8d00e591/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.51, + "duration_ms": 4.28, "detail": "" }, { @@ -97088,12 +97162,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/4ec04cd2-ac5c-4ace-b198-7f68782026d7/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.32, + "duration_ms": 3.11, "detail": "" }, { @@ -97101,12 +97175,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/6b89d137-384f-4449-8346-70b5aa949c15/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.47, + "duration_ms": 6.43, "detail": "" }, { @@ -97114,12 +97188,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/648a8394-3eb0-4c00-86ee-5e26ebb10f90/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.34, + "duration_ms": 6.48, "detail": "" }, { @@ -97127,12 +97201,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/35be628e-4789-44fe-8005-31567b5ee11e/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.56, + "duration_ms": 5.29, "detail": "" }, { @@ -97140,12 +97214,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/fe98dfce-1ba2-4fb1-98f0-f267bb3c9f99/snapshots", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.58, + "duration_ms": 7.8, "detail": "" }, { @@ -97153,12 +97227,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/eb27572e-1590-4d1c-9e73-8d60062893ff/snapshots/00076dd1-5637-4908-a55b-5cabe2b6e62e", + "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": 1.19, + "duration_ms": 3.7, "detail": "" }, { @@ -97166,12 +97240,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/fad250c9-1032-4d60-beb0-f2a78e52940a/snapshots/fefe3a5a-3dbe-40b8-885a-587bc1c512c5", + "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": 1.13, + "duration_ms": 2.48, "detail": "" }, { @@ -97179,12 +97253,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/62ba37c0-2483-449e-9c8e-eabd904c0d16/snapshots/74430efa-4250-4dcd-8c5f-02310a5ce4fa", + "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": 1.21, + "duration_ms": 3.1, "detail": "" }, { @@ -97192,12 +97266,12 @@ "operation_id": "snapshots.restore", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore", - "path_resolved": "/ovirt-engine/api/vms/c2110e77-2e51-4e48-9eec-dbab23f466ac/snapshots/8b6a086d-525f-440c-8c87-1433931f89ed/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": 1.98, + "duration_ms": 4.52, "detail": "" }, { @@ -97205,12 +97279,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/1a418422-5475-43e1-a84c-a2c08c6d6085/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.38, + "duration_ms": 2.65, "detail": "" }, { @@ -97218,12 +97292,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/2c68d8d2-f6da-4108-8b64-de4976e54076/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.17, + "duration_ms": 8.05, "detail": "" }, { @@ -97231,12 +97305,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/2b8f8fa4-4114-451d-9524-8ba4930ff143/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.19, + "duration_ms": 5.0, "detail": "" }, { @@ -97244,12 +97318,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/1706d967-81b8-4070-9e84-d265b040a9a4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.78, + "duration_ms": 5.05, "detail": "" }, { @@ -97257,12 +97331,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/e9b7205b-f61c-420f-b14f-63ae3c0dcad7/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.1, + "duration_ms": 3.29, "detail": "" }, { @@ -97270,12 +97344,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/57c22c1e-b446-43b8-b831-3911b2a7f30d/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": 1.41, + "duration_ms": 3.56, "detail": "" }, { @@ -97283,12 +97357,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/d29013ea-1592-4ef7-95d0-d8c770c8340b/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": 1.56, + "duration_ms": 4.52, "detail": "" }, { @@ -97296,12 +97370,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/664025c8-aa13-48e6-8cb8-ba88656eb184/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.27, + "duration_ms": 2.67, "detail": "" }, { @@ -97309,12 +97383,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/81a13684-ad57-43f5-82f3-bbac34ba1187/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.54, + "duration_ms": 6.53, "detail": "" }, { @@ -97322,12 +97396,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/230147c0-6411-4bad-9b12-836fd33c4589/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.52, + "duration_ms": 3.95, "detail": "" }, { @@ -97335,12 +97409,12 @@ "operation_id": "graphicsconsoles.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/47c1cd30-b189-4886-877c-5c25848599e8/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.5, + "duration_ms": 4.09, "detail": "" }, { @@ -97348,12 +97422,12 @@ "operation_id": "graphicsconsoles.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/d04672b9-73b8-4cfc-9eaf-ec23bf0b80fe/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": 1.82, + "duration_ms": 2.68, "detail": "" }, { @@ -97361,12 +97435,12 @@ "operation_id": "graphicsconsoles.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/2203078c-f359-463e-a704-72c33429a025/graphicsconsoles/e437f4d0-c77a-4ba6-99ba-9f0217438e82", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c613423f-ea14-4a2e-9dd2-c067496c4820", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.45, "detail": "" }, { @@ -97374,12 +97448,12 @@ "operation_id": "graphicsconsoles.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/49bf7113-912d-46eb-8cd3-684ec2ecccab/graphicsconsoles/e437f4d0-c77a-4ba6-99ba-9f0217438e82", + "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": 1.77, + "duration_ms": 3.11, "detail": "" }, { @@ -97387,12 +97461,12 @@ "operation_id": "graphicsconsoles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/087b4bb3-84ce-413d-aaed-07ea00fecaf0/graphicsconsoles/e437f4d0-c77a-4ba6-99ba-9f0217438e82", + "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": 1.35, + "duration_ms": 2.48, "detail": "" }, { @@ -97400,12 +97474,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/bc118c42-f004-4039-8240-0073960b6f87/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.39, + "duration_ms": 2.31, "detail": "" }, { @@ -97413,12 +97487,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/5e416794-08b9-4593-8df4-9f1e73de84ac/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.75, + "duration_ms": 2.49, "detail": "" }, { @@ -97426,12 +97500,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/0584f7b4-491d-4568-9fd6-3757085426d7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.61, "detail": "" }, { @@ -97439,12 +97513,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/b8b413c2-2ece-49ff-97ee-7bec3aa00520/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.73, + "duration_ms": 2.18, "detail": "" }, { @@ -97452,12 +97526,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/41025ccf-0407-4640-ab7c-282527669752/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.4, + "duration_ms": 3.37, "detail": "" }, { @@ -97465,12 +97539,12 @@ "operation_id": "nics.update", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update", - "path_resolved": "/ovirt-engine/api/hosts/046d6b7c-29c3-47b5-9380-52e4e51ee84f/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.05, + "duration_ms": 3.24, "detail": "" }, { @@ -97478,12 +97552,12 @@ "operation_id": "nics.attach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach", - "path_resolved": "/ovirt-engine/api/hosts/b8c055e1-4540-426b-a7f3-f35740078ade/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.88, + "duration_ms": 2.81, "detail": "" }, { @@ -97491,12 +97565,12 @@ "operation_id": "nics.detach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach", - "path_resolved": "/ovirt-engine/api/hosts/a7fbd2a7-3dc9-40a1-8ea4-640eb7a240fa/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.93, + "duration_ms": 2.74, "detail": "" }, { @@ -97504,12 +97578,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/6d8dd532-3307-4b5b-9786-a3c7a646c0ef/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.49, + "duration_ms": 2.25, "detail": "" }, { @@ -97517,12 +97591,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/f05bb419-6f9e-4180-9a7e-cfb593fdb31f/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.11, + "duration_ms": 2.37, "detail": "" }, { @@ -97530,12 +97604,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/cf7437e0-4795-42c2-875d-3f1f00df5623/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.28, + "duration_ms": 2.13, "detail": "" }, { @@ -97543,12 +97617,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/d8818e82-e687-4b3e-8fcc-1241f5ea19dc/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.27, + "duration_ms": 1.93, "detail": "" }, { @@ -97556,12 +97630,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/0dcb73e5-01ef-46ef-9e88-179ed407e816/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.15, + "duration_ms": 1.79, "detail": "" }, { @@ -97569,12 +97643,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/2b0893da-8118-48ee-8332-0787e20f697b/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, + "duration_ms": 1.91, "detail": "" }, { @@ -97582,12 +97656,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/2d93db21-7041-4f9c-b3f8-354db78d590c/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.63, + "duration_ms": 2.18, "detail": "" }, { @@ -97595,12 +97669,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/b04f4471-5641-481f-a958-b0b082156ade/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.35, + "duration_ms": 2.57, "detail": "" }, { @@ -97608,12 +97682,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/c201b767-83c3-460d-8b94-7be5cce382f0/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.32, + "duration_ms": 2.82, "detail": "" }, { @@ -97621,12 +97695,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/b8e9f90f-a198-4840-99fb-6111c63da6d7/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.22, + "duration_ms": 1.75, "detail": "" }, { @@ -97634,12 +97708,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/da7f2037-f175-432e-9da4-7f5c958090a9/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.28, + "duration_ms": 2.41, "detail": "" }, { @@ -97647,12 +97721,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/44191fce-1855-4da9-ab38-2e038d7f5e30/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.52, + "duration_ms": 2.72, "detail": "" }, { @@ -97660,12 +97734,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/996e0c37-d4ad-4f84-9657-4608f0fec754/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 3.82, "detail": "" }, { @@ -97673,12 +97747,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ee173dc0-b9ad-413e-894c-b4c19a06d645/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.48, + "duration_ms": 3.21, "detail": "" }, { @@ -97686,12 +97760,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/fdf29c19-78bb-4099-84c6-021abc319b34/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.18, + "duration_ms": 2.31, "detail": "" }, { @@ -97704,7 +97778,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 3.41, "detail": "" }, { @@ -97715,9 +97789,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 3.61, "detail": "" }, { @@ -97725,12 +97799,12 @@ "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/806109b5-dbf5-4e52-a498-4c263e3cb9a4", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/e4dcfffb-0b18-476b-b039-1df9a7a1e990", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 2.43, "detail": "" }, { @@ -97738,12 +97812,12 @@ "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/9238d9b0-408b-4aff-864d-4f9cf945ac0f", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/6260cbad-5bcf-4514-b761-a44b920d5966", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 3.43, "detail": "" }, { @@ -97751,12 +97825,12 @@ "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/53b82183-1f6b-4501-add7-373df144129a", + "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": 1.18, + "duration_ms": 6.32, "detail": "" }, { @@ -97767,9 +97841,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 5.73, "detail": "" }, { @@ -97780,9 +97854,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 3.54, "detail": "" }, { @@ -97790,12 +97864,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 4.17, "detail": "" }, { @@ -97803,12 +97877,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "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": 1.14, + "duration_ms": 3.96, "detail": "" }, { @@ -97816,12 +97890,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "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": 1.12, + "duration_ms": 3.23, "detail": "" }, { @@ -97834,7 +97908,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 4.64, "detail": "" }, { @@ -97847,7 +97921,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 9.95, "detail": "" }, { @@ -97860,7 +97934,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 4.22, "detail": "" }, { @@ -97873,7 +97947,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 3.17, "detail": "" }, { @@ -97881,12 +97955,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.1, + "duration_ms": 5.35, "detail": "" }, { @@ -97899,7 +97973,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 3.78, "detail": "" }, { @@ -97912,7 +97986,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 1.64, + "duration_ms": 2.77, "detail": "" }, { @@ -97923,9 +97997,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 3.11, "detail": "" }, { @@ -97933,12 +98007,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.14, + "duration_ms": 2.33, "detail": "" }, { @@ -97946,12 +98020,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.23, + "duration_ms": 2.82, "detail": "" }, { @@ -97964,7 +98038,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.97, + "duration_ms": 4.86, "detail": "" }, { @@ -97977,7 +98051,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.86, + "duration_ms": 3.18, "detail": "" }, { @@ -97988,9 +98062,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 2.22, "detail": "" }, { @@ -98001,9 +98075,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 3.4, "detail": "" }, { @@ -98014,9 +98088,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 2.91, "detail": "" }, { @@ -98024,12 +98098,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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.22, + "duration_ms": 1.68, "detail": "" }, { @@ -98037,12 +98111,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/109fec81-cde0-4bf5-9b59-657ac9272147", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 2.34, "detail": "" }, { @@ -98053,9 +98127,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 1.95, "detail": "" }, { @@ -98066,9 +98140,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.8, + "duration_ms": 2.03, "detail": "" }, { @@ -98076,12 +98150,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 1.8, "detail": "" }, { @@ -98089,12 +98163,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "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.12, + "duration_ms": 1.72, "detail": "" }, { @@ -98102,12 +98176,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/d1c44ffe-9384-4356-9252-e09428463fd3", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 1.89, "detail": "" }, { @@ -98120,7 +98194,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 1.78, "detail": "" }, { @@ -98133,7 +98207,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 2.34, "detail": "" }, { @@ -98141,12 +98215,12 @@ "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/cda55a8f-c8e9-4b2d-b1e5-b4e4d40792b8", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 1.83, "detail": "" }, { @@ -98154,12 +98228,12 @@ "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/cda55a8f-c8e9-4b2d-b1e5-b4e4d40792b8", + "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": 1.41, + "duration_ms": 2.18, "detail": "" }, { @@ -98167,12 +98241,12 @@ "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/cda55a8f-c8e9-4b2d-b1e5-b4e4d40792b8", + "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.24, + "duration_ms": 1.89, "detail": "" }, { @@ -98185,7 +98259,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 2.56, "detail": "" }, { @@ -98198,7 +98272,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 1.91, "detail": "" }, { @@ -98211,7 +98285,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 1.65, "detail": "" }, { @@ -98224,7 +98298,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.1, + "duration_ms": 1.74, "detail": "" }, { @@ -98232,12 +98306,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.13, + "duration_ms": 1.89, "detail": "" }, { @@ -98245,12 +98319,12 @@ "operation_id": "vnicprofiles.list", "method": "GET", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/28636f17-adf6-41c8-a5d7-a71284a54698/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.24, + "duration_ms": 2.91, "detail": "" }, { @@ -98258,12 +98332,12 @@ "operation_id": "vnicprofiles.add", "method": "POST", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/28636f17-adf6-41c8-a5d7-a71284a54698/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.49, + "duration_ms": 5.52, "detail": "" }, { @@ -98271,12 +98345,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/28636f17-adf6-41c8-a5d7-a71284a54698/vnicprofiles/ede19908-c45b-43bd-a54f-54016fe087fc", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 8.56, "detail": "" }, { @@ -98284,12 +98358,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/28636f17-adf6-41c8-a5d7-a71284a54698/vnicprofiles/e224731c-b67b-458c-aad4-e89af2ae3ecf", + "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": 1.32, + "duration_ms": 3.94, "detail": "" }, { @@ -98297,12 +98371,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/28636f17-adf6-41c8-a5d7-a71284a54698/vnicprofiles/fb3add5c-4515-4297-8d69-d00eaa9e8f06", + "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": 1.28, + "duration_ms": 10.98, "detail": "" }, { @@ -98315,7 +98389,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 11.52, "detail": "" }, { @@ -98328,7 +98402,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 6.17, "detail": "" }, { @@ -98341,7 +98415,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 3.36, "detail": "" }, { @@ -98354,7 +98428,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.77, "detail": "" }, { @@ -98362,12 +98436,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.16, + "duration_ms": 2.83, "detail": "" }, { @@ -98380,7 +98454,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 2.25, "detail": "" }, { @@ -98393,7 +98467,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 2.75, "detail": "" }, { @@ -98406,7 +98480,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 1.92, "detail": "" }, { @@ -98419,7 +98493,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.13, "detail": "" }, { @@ -98427,12 +98501,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.08, + "duration_ms": 1.86, "detail": "" }, { @@ -98445,7 +98519,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 2.44, "detail": "" }, { @@ -98458,7 +98532,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.72, + "duration_ms": 2.77, "detail": "" }, { @@ -98469,9 +98543,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 2.04, "detail": "" }, { @@ -98479,12 +98553,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.23, + "duration_ms": 2.88, "detail": "" }, { @@ -98492,12 +98566,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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.12, + "duration_ms": 1.92, "detail": "" }, { @@ -98510,7 +98584,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 1.86, "detail": "" }, { @@ -98523,7 +98597,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.82, + "duration_ms": 2.57, "detail": "" }, { @@ -98536,7 +98610,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 2.15, "detail": "" }, { @@ -98549,7 +98623,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.12, "detail": "" }, { @@ -98557,12 +98631,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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.24, + "duration_ms": 1.9, "detail": "" }, { @@ -98570,12 +98644,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/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": 1.28, + "duration_ms": 2.07, "detail": "" }, { @@ -98583,12 +98657,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/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.11, + "duration_ms": 1.64, "detail": "" }, { @@ -98596,12 +98670,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/steps/73deb9f2-83c9-4a19-9901-57619622b307", + "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": 1.11, + "duration_ms": 2.36, "detail": "" }, { @@ -98609,12 +98683,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/steps/33c1674c-fcf8-42ba-8be1-0ad593c0dc76", + "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": 3.14, + "duration_ms": 1.74, "detail": "" }, { @@ -98622,12 +98696,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/steps/9bcaa22b-fd0f-4e65-b5cc-2fbf8c0248e7", + "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": 1.42, + "duration_ms": 2.18, "detail": "" }, { @@ -98640,7 +98714,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.42, + "duration_ms": 5.86, "detail": "" }, { @@ -98653,7 +98727,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 4.81, "detail": "" }, { @@ -98666,7 +98740,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 6.07, + "duration_ms": 5.0, "detail": "" }, { @@ -98677,9 +98751,9 @@ "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 3.82, "detail": "" }, { @@ -98687,12 +98761,12 @@ "operation_id": "affinitylabels.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}", - "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", + "path_resolved": "/ovirt-engine/api/v4/affinitylabels/b53a8c80-5589-4c52-af2c-5cd289cfed00", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 2.82, "detail": "" }, { @@ -98700,12 +98774,12 @@ "operation_id": "affinitylabels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}", - "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", + "path_resolved": "/ovirt-engine/api/v4/affinitylabels/b5426373-9d9c-46cd-aa45-bf34544fd6de", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 3.61, "detail": "" }, { @@ -98718,7 +98792,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 2.73, "detail": "" }, { @@ -98731,7 +98805,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 2.53, "detail": "" }, { @@ -98742,9 +98816,9 @@ "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 2.03, "detail": "" }, { @@ -98752,12 +98826,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v4/bookmarks/6ba7cf55-83c6-42b0-9e9a-8bfac72857f5", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 2.42, "detail": "" }, { @@ -98765,12 +98839,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v4/bookmarks/a7a07e11-2df3-4db0-a1c6-7c7987b9d6ed", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 2.13, "detail": "" }, { @@ -98783,7 +98857,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 1.82, "detail": "" }, { @@ -98796,7 +98870,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 2.91, "detail": "" }, { @@ -98807,9 +98881,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 2.5, "detail": "" }, { @@ -98817,12 +98891,12 @@ "operation_id": "clusterlevels.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/v4/clusterlevels/a1726f05-f02d-476d-9d68-33ecd08a38e8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 2.23, "detail": "" }, { @@ -98830,12 +98904,12 @@ "operation_id": "clusterlevels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/v4/clusterlevels/fff6d393-8a25-440d-a9fa-8daf614c448e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 2.02, "detail": "" }, { @@ -98848,7 +98922,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 2.18, "detail": "" }, { @@ -98861,7 +98935,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 2.56, "detail": "" }, { @@ -98872,9 +98946,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.03, "detail": "" }, { @@ -98882,12 +98956,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v4/clusters/01afa5cd-d087-4d5a-9839-e54e85446ef2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.94, + "duration_ms": 5.26, "detail": "" }, { @@ -98895,12 +98969,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v4/clusters/314223b7-d3c2-43c0-a4be-715d2d75d81d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 3.18, "detail": "" }, { @@ -98913,7 +98987,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.88, + "duration_ms": 5.43, "detail": "" }, { @@ -98926,7 +99000,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.27, + "duration_ms": 3.56, "detail": "" }, { @@ -98939,7 +99013,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.73, + "duration_ms": 4.88, "detail": "" }, { @@ -98952,7 +99026,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.79, + "duration_ms": 9.69, "detail": "" }, { @@ -98965,7 +99039,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.09, + "duration_ms": 7.96, "detail": "" }, { @@ -98978,7 +99052,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.69, + "duration_ms": 6.13, "detail": "" }, { @@ -98989,9 +99063,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 3.53, "detail": "" }, { @@ -98999,12 +99073,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v4/datacenters/a6772c4f-4774-4565-a8e2-664de1c97806", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 4.65, "detail": "" }, { @@ -99012,12 +99086,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v4/datacenters/e42a70fe-2094-4686-ad99-3d651bd6f0d6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.88, "detail": "" }, { @@ -99030,7 +99104,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.96, + "duration_ms": 7.61, "detail": "" }, { @@ -99043,7 +99117,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 3.87, "detail": "" }, { @@ -99056,7 +99130,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.46, + "duration_ms": 5.97, "detail": "" }, { @@ -99067,9 +99141,9 @@ "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 4.42, "detail": "" }, { @@ -99077,12 +99151,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/disks/{id}", - "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v4/disks/df585390-7022-4c69-ba08-701b24732ba5", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 4.94, "detail": "" }, { @@ -99090,12 +99164,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/disks/{id}", - "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v4/disks/4f79c054-8772-4f34-b9c9-44249afe9dae", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 2.45, "detail": "" }, { @@ -99108,7 +99182,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.88, + "duration_ms": 2.95, "detail": "" }, { @@ -99121,7 +99195,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.54, + "duration_ms": 2.79, "detail": "" }, { @@ -99134,7 +99208,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.89, + "duration_ms": 2.89, "detail": "" }, { @@ -99147,7 +99221,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.79, + "duration_ms": 3.0, "detail": "" }, { @@ -99160,7 +99234,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 2.72, "detail": "" }, { @@ -99173,7 +99247,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 2.09, "detail": "" }, { @@ -99186,7 +99260,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.13, + "duration_ms": 1.77, "detail": "" }, { @@ -99199,7 +99273,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 1.95, "detail": "" }, { @@ -99212,7 +99286,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 3.61, "detail": "" }, { @@ -99220,12 +99294,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/domains/{id}", - "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/v4/domains/961df91e-15f5-4639-867a-d165204d2ba8", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 2.12, "detail": "" }, { @@ -99238,7 +99312,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 7.72, "detail": "" }, { @@ -99251,7 +99325,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.1, + "duration_ms": 4.06, "detail": "" }, { @@ -99259,12 +99333,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/events/{id}", - "path_resolved": "/ovirt-engine/api/v4/events/1114", + "path_resolved": "/ovirt-engine/api/v4/events/57", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 3.75, "detail": "" }, { @@ -99272,12 +99346,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/events/{id}", - "path_resolved": "/ovirt-engine/api/v4/events/1114", + "path_resolved": "/ovirt-engine/api/v4/events/57", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 6.58, "detail": "" }, { @@ -99285,12 +99359,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/events/{id}", - "path_resolved": "/ovirt-engine/api/v4/events/1114", + "path_resolved": "/ovirt-engine/api/v4/events/e8b1e28e-1c47-4cce-891e-27b42a24552f", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 3.6, "detail": "" }, { @@ -99303,7 +99377,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 4.47, "detail": "" }, { @@ -99316,7 +99390,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 4.15, "detail": "" }, { @@ -99327,9 +99401,9 @@ "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 2.76, "detail": "" }, { @@ -99337,12 +99411,12 @@ "operation_id": "externalhostproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/17586866-e562-42fc-adfd-62854e3b0780", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 4.99, "detail": "" }, { @@ -99350,12 +99424,12 @@ "operation_id": "externalhostproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/271b2c1f-e343-447f-98f9-c44442ad382e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 7.16, "detail": "" }, { @@ -99368,7 +99442,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 4.38, "detail": "" }, { @@ -99381,7 +99455,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 8.03, "detail": "" }, { @@ -99392,9 +99466,9 @@ "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 6.74, "detail": "" }, { @@ -99402,12 +99476,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/groups/{id}", - "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v4/groups/94d0612f-abe3-4daf-bc82-ac3bdd16674a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 12.4, "detail": "" }, { @@ -99415,12 +99489,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/groups/{id}", - "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v4/groups/36c3a1b8-7a9f-4671-b2e3-81a268917fd8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 10.72, "detail": "" }, { @@ -99433,7 +99507,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 11.23, "detail": "" }, { @@ -99446,7 +99520,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.94, + "duration_ms": 15.13, "detail": "" }, { @@ -99454,12 +99528,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/be339226-0b2c-42bf-a960-a27f585cc42f", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 7.72, "detail": "" }, { @@ -99467,12 +99541,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/fd92779e-8630-4923-869d-600371ff5e30", + "path_resolved": "/ovirt-engine/api/v4/hosts/89c953d4-44c9-40ab-a977-f69820250d11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 11.59, "detail": "" }, { @@ -99480,12 +99554,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/6911b9fc-4b22-4ea8-861a-c6c1d158bf98", + "path_resolved": "/ovirt-engine/api/v4/hosts/6f69798b-ee32-42ba-82fd-4e23db6f1c81", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 6.24, "detail": "" }, { @@ -99493,12 +99567,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/v4/hosts/c040b4c3-f0db-439b-b0c7-a2bf6e38d54a/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.08, + "duration_ms": 12.43, "detail": "" }, { @@ -99506,12 +99580,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/v4/hosts/b65b90c4-5902-4ef1-be7f-188e66d9ca81/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": 1.89, + "duration_ms": 9.41, "detail": "" }, { @@ -99519,12 +99593,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/v4/hosts/98946bba-0ff4-467f-9a3e-dac289d6084a/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.84, + "duration_ms": 10.31, "detail": "" }, { @@ -99532,12 +99606,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/v4/hosts/aea28c7c-eabe-48ba-b8b8-a4754273824b/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.5, + "duration_ms": 14.83, "detail": "" }, { @@ -99545,12 +99619,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/v4/hosts/996e20b6-ef3e-49a6-b5e1-8f425db73561/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.94, + "duration_ms": 10.69, "detail": "" }, { @@ -99558,12 +99632,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/v4/hosts/c5214cb8-3f41-49e8-a5cd-7858424912dd/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.89, + "duration_ms": 31.46, "detail": "" }, { @@ -99571,12 +99645,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/v4/hosts/03ed0c76-0b1d-4c04-b923-ebc9a88d8a3a/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.9, + "duration_ms": 28.28, "detail": "" }, { @@ -99584,12 +99658,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/v4/hosts/3a83f51d-802d-4675-b5fb-59aa57455448/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.85, + "duration_ms": 15.2, "detail": "" }, { @@ -99597,12 +99671,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/v4/hosts/9d075517-8cae-48b4-871c-7e1efdfe56a8/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.03, + "duration_ms": 13.55, "detail": "" }, { @@ -99610,12 +99684,12 @@ "operation_id": "hosts.unregisteredstoragedomainsdiscover", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/v4/hosts/0b420fd8-b568-48e6-9ac9-cde0bf41a896/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.83, + "duration_ms": 10.93, "detail": "" }, { @@ -99623,12 +99697,12 @@ "operation_id": "hosts.upgrade", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgrade", - "path_resolved": "/ovirt-engine/api/v4/hosts/77110f2c-d793-4db7-985f-9ac2c6787d86/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.83, + "duration_ms": 10.79, "detail": "" }, { @@ -99636,12 +99710,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/v4/hosts/5af3dc43-6d94-474a-864f-cf9af0893f9b/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.9, + "duration_ms": 18.17, "detail": "" }, { @@ -99649,12 +99723,12 @@ "operation_id": "hosts.enrollcertificate", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/enrollcertificate", - "path_resolved": "/ovirt-engine/api/v4/hosts/c61357ac-a2a4-41a6-8130-29fe07d49d2f/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": 2.1, + "duration_ms": 8.32, "detail": "" }, { @@ -99667,7 +99741,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 6.15, "detail": "" }, { @@ -99680,7 +99754,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.38, + "duration_ms": 7.0, "detail": "" }, { @@ -99691,9 +99765,9 @@ "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 6.19, "detail": "" }, { @@ -99701,12 +99775,12 @@ "operation_id": "icons.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/icons/{id}", - "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/v4/icons/0352721b-ef86-473f-acd3-d1b878f7c171", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 7.62, "detail": "" }, { @@ -99714,12 +99788,12 @@ "operation_id": "icons.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/icons/{id}", - "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/v4/icons/5757a369-4956-416b-9870-b307a980d755", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 6.65, "detail": "" }, { @@ -99732,7 +99806,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.02, + "duration_ms": 6.32, "detail": "" }, { @@ -99745,7 +99819,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 16.52, "detail": "" }, { @@ -99756,9 +99830,9 @@ "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 7.93, "detail": "" }, { @@ -99766,12 +99840,12 @@ "operation_id": "instancetypes.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/v4/instancetypes/b2e5f8b1-77c0-4a86-9fde-1f97daf95be0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 8.19, "detail": "" }, { @@ -99779,12 +99853,12 @@ "operation_id": "instancetypes.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/v4/instancetypes/74d85cf8-3299-48cd-b6d3-d885c701ac82", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 14.24, "detail": "" }, { @@ -99797,7 +99871,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 9.59, "detail": "" }, { @@ -99810,7 +99884,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.09, + "duration_ms": 6.39, "detail": "" }, { @@ -99818,12 +99892,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac", + "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 8.65, "detail": "" }, { @@ -99831,12 +99905,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac", + "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 3.97, "detail": "" }, { @@ -99844,12 +99918,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac", + "path_resolved": "/ovirt-engine/api/v4/jobs/291daaf2-2ff6-423b-952f-48d542e5f767", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 5.95, "detail": "" }, { @@ -99862,7 +99936,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 9.1, "detail": "" }, { @@ -99875,7 +99949,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.54, + "duration_ms": 10.87, "detail": "" }, { @@ -99883,12 +99957,12 @@ "operation_id": "katelloerrata.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v4/katelloerrata/7f294595-e654-4b68-9569-22d8d1d58868", + "path_resolved": "/ovirt-engine/api/v4/katelloerrata/938ec820-56e7-4d69-9fd9-f4fc0fab5022", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 10.45, "detail": "" }, { @@ -99896,12 +99970,12 @@ "operation_id": "katelloerrata.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v4/katelloerrata/7f294595-e654-4b68-9569-22d8d1d58868", + "path_resolved": "/ovirt-engine/api/v4/katelloerrata/6af1e8da-20e0-46d7-b023-4b6c5584975a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 19.72, "detail": "" }, { @@ -99909,12 +99983,12 @@ "operation_id": "katelloerrata.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v4/katelloerrata/7f294595-e654-4b68-9569-22d8d1d58868", + "path_resolved": "/ovirt-engine/api/v4/katelloerrata/77a2f190-4726-4820-8f8c-9ef370f9fd81", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 17.66, "detail": "" }, { @@ -99927,7 +100001,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 8.95, "detail": "" }, { @@ -99940,7 +100014,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.45, + "duration_ms": 9.62, "detail": "" }, { @@ -99951,9 +100025,9 @@ "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 5.3, "detail": "" }, { @@ -99961,12 +100035,12 @@ "operation_id": "macpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/macpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/v4/macpools/eb8e44e6-8a82-4787-a7ad-7629afaaf7f4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 3.74, "detail": "" }, { @@ -99974,12 +100048,12 @@ "operation_id": "macpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/macpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/v4/macpools/bfec06ca-72ab-4d4b-9898-dd5f2d574f16", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 2.56, "detail": "" }, { @@ -99992,7 +100066,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 2.14, "detail": "" }, { @@ -100005,7 +100079,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.06, + "duration_ms": 2.54, "detail": "" }, { @@ -100013,12 +100087,12 @@ "operation_id": "networkfilters.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v4/networkfilters/2e5bc167-9a4b-46ad-9762-ed7658069dc0", + "path_resolved": "/ovirt-engine/api/v4/networkfilters/5034fcd4-bd5a-4056-a04c-31fcd39f0c82", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.46, "detail": "" }, { @@ -100026,12 +100100,12 @@ "operation_id": "networkfilters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v4/networkfilters/2e5bc167-9a4b-46ad-9762-ed7658069dc0", + "path_resolved": "/ovirt-engine/api/v4/networkfilters/26b3c26a-4d5e-4c9c-a71f-4007e3cedfbc", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 5.9, "detail": "" }, { @@ -100039,12 +100113,12 @@ "operation_id": "networkfilters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v4/networkfilters/2e5bc167-9a4b-46ad-9762-ed7658069dc0", + "path_resolved": "/ovirt-engine/api/v4/networkfilters/e3f73e7d-950d-4a24-bb57-9bb09ba1cdb3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 2.4, "detail": "" }, { @@ -100057,7 +100131,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 2.82, "detail": "" }, { @@ -100070,7 +100144,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.7, + "duration_ms": 3.51, "detail": "" }, { @@ -100078,12 +100152,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/networks/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 2.57, "detail": "" }, { @@ -100091,12 +100165,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/networks/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/v4/networks/1626f71e-58ab-4179-8384-7a4a3bd1aa66", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 4.53, "detail": "" }, { @@ -100104,12 +100178,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/networks/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/v4/networks/ff2e9dbe-9809-44d6-8bb5-b917afd3f1ea", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 3.65, "detail": "" }, { @@ -100122,7 +100196,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 3.23, "detail": "" }, { @@ -100135,7 +100209,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.49, + "duration_ms": 3.93, "detail": "" }, { @@ -100146,9 +100220,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 2.85, "detail": "" }, { @@ -100156,12 +100230,12 @@ "operation_id": "openstackimageproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/42b98d88-094e-456c-9c86-3023dbdcefeb", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 3.47, "detail": "" }, { @@ -100169,12 +100243,12 @@ "operation_id": "openstackimageproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/1ae813e7-d391-4e30-921c-29dbdbf6b0fa", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 3.29, "detail": "" }, { @@ -100187,7 +100261,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 3.04, "detail": "" }, { @@ -100200,7 +100274,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.46, + "duration_ms": 3.76, "detail": "" }, { @@ -100211,9 +100285,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 2.84, "detail": "" }, { @@ -100221,12 +100295,12 @@ "operation_id": "openstacknetworkproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/46cee251-a42e-4b4f-9b99-441c5919d4fd", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 3.77, "detail": "" }, { @@ -100234,12 +100308,12 @@ "operation_id": "openstacknetworkproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/85c7dd2c-4ad0-4c2f-8b75-7fdb7a4b0424", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 3.46, "detail": "" }, { @@ -100252,7 +100326,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 2.89, "detail": "" }, { @@ -100265,7 +100339,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 3.44, "detail": "" }, { @@ -100276,9 +100350,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 3.9, "detail": "" }, { @@ -100286,12 +100360,12 @@ "operation_id": "openstackvolumeproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/a807028d-2a13-4248-a102-49fb3f2be07d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 2.64, "detail": "" }, { @@ -100299,12 +100373,12 @@ "operation_id": "openstackvolumeproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8d691c3f-12f9-42e0-ab41-567e48d1eb43", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.54, "detail": "" }, { @@ -100317,7 +100391,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 5.4, "detail": "" }, { @@ -100330,7 +100404,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.71, + "duration_ms": 6.44, "detail": "" }, { @@ -100338,12 +100412,12 @@ "operation_id": "operatingsystems.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/5058dee1-e29b-46d4-801b-4d3590ea74f6", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/e9693c95-cba3-45a8-b6ac-0e627ff4c7c1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 3.32, "detail": "" }, { @@ -100351,12 +100425,12 @@ "operation_id": "operatingsystems.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/5058dee1-e29b-46d4-801b-4d3590ea74f6", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/81c7ad89-8087-41ae-8be7-2bcf6ec78aba", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 3.99, "detail": "" }, { @@ -100364,12 +100438,12 @@ "operation_id": "operatingsystems.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/5058dee1-e29b-46d4-801b-4d3590ea74f6", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/0eddb3c1-d0e1-4a46-9f3d-3e7540b21b90", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 5.24, "detail": "" }, { @@ -100382,7 +100456,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 6.74, "detail": "" }, { @@ -100395,7 +100469,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.31, + "duration_ms": 4.81, "detail": "" }, { @@ -100408,7 +100482,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 10.1, "detail": "" }, { @@ -100421,7 +100495,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 8.6, "detail": "" }, { @@ -100429,12 +100503,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/v4/permissions/a31c235e-8b3c-4053-8293-86a0dd0f7548", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 4.21, "detail": "" }, { @@ -100447,7 +100521,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 6.02, "detail": "" }, { @@ -100460,7 +100534,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.07, + "duration_ms": 7.22, "detail": "" }, { @@ -100471,9 +100545,9 @@ "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 8.19, "detail": "" }, { @@ -100481,12 +100555,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/roles/{id}", - "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v4/roles/f9281a9c-be4d-43d1-a38c-f799f96351e1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 8.61, "detail": "" }, { @@ -100494,12 +100568,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/roles/{id}", - "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v4/roles/f9268509-5284-4ac9-b11e-1565ddc875a3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.83, "detail": "" }, { @@ -100512,7 +100586,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 6.98, "detail": "" }, { @@ -100525,7 +100599,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.66, + "duration_ms": 7.03, "detail": "" }, { @@ -100536,9 +100610,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 5.8, "detail": "" }, { @@ -100546,12 +100620,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/27bf5699-4879-40b2-8f01-30c055293706", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 4.81, "detail": "" }, { @@ -100559,12 +100633,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/e2532cea-a919-4505-96ae-3352ca47eae9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 9.95, "detail": "" }, { @@ -100577,7 +100651,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 9.47, "detail": "" }, { @@ -100590,7 +100664,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.21, + "duration_ms": 8.49, "detail": "" }, { @@ -100601,9 +100675,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 4.74, "detail": "" }, { @@ -100611,12 +100685,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/a2feb160-00ad-4c12-8b9a-6e3f59997126", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 6.28, "detail": "" }, { @@ -100624,12 +100698,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/4fc24f1b-9937-494a-b626-92a9cae9bac6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 4.07, "detail": "" }, { @@ -100642,7 +100716,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 3.77, "detail": "" }, { @@ -100655,7 +100729,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.65, + "duration_ms": 3.94, "detail": "" }, { @@ -100663,12 +100737,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/5fc43f15-7481-4e2b-9f9a-3bc5c5820091", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/b20ef56b-92f1-44d3-bf74-e1540cdd72fb", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 3.15, "detail": "" }, { @@ -100676,12 +100750,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/5fc43f15-7481-4e2b-9f9a-3bc5c5820091", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/67770cc7-9e33-428d-b413-974ca30f5912", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 2.56, "detail": "" }, { @@ -100689,12 +100763,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/5fc43f15-7481-4e2b-9f9a-3bc5c5820091", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/cd464316-e3e9-4d89-a194-59c82b86b622", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 3.87, "detail": "" }, { @@ -100707,7 +100781,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 5.13, "detail": "" }, { @@ -100720,7 +100794,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 5.05, "detail": "" }, { @@ -100731,9 +100805,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 3.13, "detail": "" }, { @@ -100741,12 +100815,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v4/storagedomains/f511479d-ceb7-439d-9eff-2adc2a37e65c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 3.53, "detail": "" }, { @@ -100754,12 +100828,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v4/storagedomains/81ce223f-bf24-4e53-a5d5-57a96465bbfb", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 5.21, "detail": "" }, { @@ -100772,7 +100846,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.92, + "duration_ms": 7.96, "detail": "" }, { @@ -100785,7 +100859,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.39, + "duration_ms": 5.73, "detail": "" }, { @@ -100798,7 +100872,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.8, + "duration_ms": 4.82, "detail": "" }, { @@ -100811,7 +100885,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 4.07, "detail": "" }, { @@ -100824,7 +100898,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.68, + "duration_ms": 5.28, "detail": "" }, { @@ -100835,9 +100909,9 @@ "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 3.87, "detail": "" }, { @@ -100845,12 +100919,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v4/tags/09e4f094-5076-4ed9-b0ea-aec7e4daea84", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 5.46, "detail": "" }, { @@ -100858,12 +100932,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v4/tags/866aa010-3a59-434a-b1af-4f332f24a03c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 3.64, "detail": "" }, { @@ -100876,7 +100950,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 4.84, "detail": "" }, { @@ -100889,7 +100963,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.72, + "duration_ms": 6.24, "detail": "" }, { @@ -100900,9 +100974,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 4.61, "detail": "" }, { @@ -100910,12 +100984,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/templates/{id}", - "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v4/templates/c5e6f8f6-b92d-4f43-a074-efea3714d832", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 4.61, "detail": "" }, { @@ -100923,12 +100997,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/templates/{id}", - "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v4/templates/eb461e9f-0bc8-41c4-bfc9-d3f3e65ea74b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 10.57, "detail": "" }, { @@ -100941,7 +101015,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.8, + "duration_ms": 11.7, "detail": "" }, { @@ -100954,7 +101028,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 8.51, "detail": "" }, { @@ -100967,7 +101041,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.1, + "duration_ms": 7.88, "detail": "" }, { @@ -100980,7 +101054,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 9.48, "detail": "" }, { @@ -100993,7 +101067,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 16.27, "detail": "" }, { @@ -101001,12 +101075,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/users/{id}", - "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/v4/users/3873eee4-7b35-4f80-a328-be0c4c91b936", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 5.78, "detail": "" }, { @@ -101019,7 +101093,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 7.21, "detail": "" }, { @@ -101032,7 +101106,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.43, + "duration_ms": 11.0, "detail": "" }, { @@ -101043,9 +101117,9 @@ "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 5.78, "detail": "" }, { @@ -101053,12 +101127,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v4/vmpools/def10832-d9f4-458a-bb48-99c25cf8e38f", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 4.98, "detail": "" }, { @@ -101066,12 +101140,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v4/vmpools/c86cd938-aaaf-40a8-90e3-125f602fbe53", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 3.42, "detail": "" }, { @@ -101084,7 +101158,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 4.38, "detail": "" }, { @@ -101097,7 +101171,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.74, + "duration_ms": 6.96, "detail": "" }, { @@ -101105,12 +101179,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/de5b5ec1-2b76-410a-92a4-eb0f13f5164a", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 2.97, "detail": "" }, { @@ -101118,12 +101192,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/53200291-086b-407e-86e4-42587ee1f221", + "path_resolved": "/ovirt-engine/api/v4/vms/ac6db1f0-a905-4a3d-89f1-930b4e7e4f17", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 3.33, "detail": "" }, { @@ -101131,12 +101205,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/a3e08b3b-91aa-447b-b8e4-4642825b49ba", + "path_resolved": "/ovirt-engine/api/v4/vms/3c2e7843-b450-425e-a863-35d1801c7f3b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 6.16, "detail": "" }, { @@ -101144,12 +101218,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/v4/vms/647f0864-360c-4c38-9bf6-2825198b8a13/start", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.21, + "duration_ms": 10.48, "detail": "" }, { @@ -101157,12 +101231,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/v4/vms/5d6d1850-688f-42f2-ad25-c46dda12f3c5/stop", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.18, + "duration_ms": 14.31, "detail": "" }, { @@ -101170,12 +101244,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/v4/vms/57daaf32-a4ce-4f9c-8962-620f7e7d1c55/shutdown", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.18, + "duration_ms": 8.57, "detail": "" }, { @@ -101183,12 +101257,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/v4/vms/ff3bedd6-50da-44bd-8c42-efd568f455b4/reboot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.2, + "duration_ms": 5.39, "detail": "" }, { @@ -101196,12 +101270,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/v4/vms/56839a27-9f4c-45fd-908e-54880c73275b/suspend", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.75, + "duration_ms": 5.49, "detail": "" }, { @@ -101209,12 +101283,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/v4/vms/c9a2bb09-6a38-4f30-9246-11806e352644/migrate", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 5.93, + "duration_ms": 7.98, "detail": "" }, { @@ -101222,12 +101296,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/v4/vms/56c44c99-438a-4cae-a034-255363543354/cancelmigration", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 9.0, + "duration_ms": 6.98, "detail": "" }, { @@ -101235,12 +101309,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/v4/vms/fe9da454-82f3-4073-8be2-e4d2a6e1da5d/clone", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 409, "expected_hint": 201, - "duration_ms": 10.65, + "duration_ms": 4.08, "detail": "" }, { @@ -101248,12 +101322,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/v4/vms/336d04a0-4815-4b5b-9601-1ef4b6d9e04f/export", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 7.31, + "duration_ms": 4.68, "detail": "" }, { @@ -101261,12 +101335,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/v4/vms/abf2575f-23d2-465e-8167-de55ba6ee094/detach", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 6.59, + "duration_ms": 6.93, "detail": "" }, { @@ -101274,12 +101348,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/v4/vms/6c1e7561-22a6-4dcc-8931-d96e54da1f0c/screenthumbnail", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 6.99, + "duration_ms": 5.43, "detail": "" }, { @@ -101287,12 +101361,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/v4/vms/e584e350-1337-4675-80b2-4d140567b386/ticket", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 7.53, + "duration_ms": 10.24, "detail": "" }, { @@ -101300,12 +101374,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/v4/vms/79fa55d0-ad2b-428a-9beb-4468f2477265/logon", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 6.07, + "duration_ms": 18.81, "detail": "" }, { @@ -101313,12 +101387,12 @@ "operation_id": "vms.maintenance", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/v4/vms/bbc3945e-8d83-4e09-b061-68139c146121/maintenance", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 4.69, + "duration_ms": 9.99, "detail": "" }, { @@ -101326,12 +101400,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/689225df-a853-4a4b-810d-8e6117e5128a/preview_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 6.97, + "duration_ms": 6.39, "detail": "" }, { @@ -101339,12 +101413,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/aa2477d0-cac5-40b3-9616-ec113e961e57/commit_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 7.55, + "duration_ms": 8.83, "detail": "" }, { @@ -101352,12 +101426,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/e8d5b286-9d26-4fa6-982d-3d7942e42e67/undo_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.26, + "duration_ms": 6.88, "detail": "" }, { @@ -101365,12 +101439,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/v4/vms/61b5ef68-9900-4dd5-9a29-c252e8c452aa/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 2.92, + "duration_ms": 6.15, "detail": "" }, { @@ -101378,12 +101452,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/v4/vms/e813d5e2-cc56-4cb7-bafd-d9915af62e67/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.84, + "duration_ms": 7.0, "detail": "" }, { @@ -101396,7 +101470,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 4.14, "detail": "" }, { @@ -101409,7 +101483,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.76, + "duration_ms": 5.0, "detail": "" }, { @@ -101417,12 +101491,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/41c5b5dc-55fd-4d01-b892-3fdbc25e4347", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 3.54, "detail": "" }, { @@ -101430,12 +101504,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/e13ed30b-d84e-45e1-b371-83984993f35f", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/b64c7e5f-e17f-40ba-a911-5386b1989652", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.68, + "duration_ms": 3.32, "detail": "" }, { @@ -101443,12 +101517,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/07c19cb4-f058-4ee2-9b02-4d435c9a4293", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/b156fa9b-bcdc-49ab-abd2-56f09d9be38d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 3.51, "detail": "" }, { @@ -101461,7 +101535,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.8, + "duration_ms": 2.76, "detail": "" }, { @@ -101474,7 +101548,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.49, + "duration_ms": 3.15, "detail": "" }, { @@ -101482,12 +101556,12 @@ "operation_id": "imagetransfers.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/3302bbce-b5ec-43ab-9638-996b1f31c55b", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/6f7adf35-0807-48f3-b118-2d5e11ed671c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 3.6, "detail": "" }, { @@ -101495,12 +101569,12 @@ "operation_id": "imagetransfers.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/3302bbce-b5ec-43ab-9638-996b1f31c55b", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/ff948cc3-7dfb-4b10-bec6-e1b35ddabf78", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 3.49, "detail": "" }, { @@ -101508,12 +101582,12 @@ "operation_id": "imagetransfers.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/3302bbce-b5ec-43ab-9638-996b1f31c55b", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/bddddb80-88ec-4ed6-ab34-41407671d838", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 3.42, "detail": "" }, { @@ -101526,7 +101600,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 3.41, "detail": "" }, { @@ -101539,7 +101613,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.85, + "duration_ms": 3.1, "detail": "" }, { @@ -101550,9 +101624,9 @@ "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.75, "detail": "" }, { @@ -101560,12 +101634,12 @@ "operation_id": "options.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/options/{id}", - "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", + "path_resolved": "/ovirt-engine/api/v4/options/e5ebb84c-a218-4719-a61b-3c7ec7a281a8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 3.37, "detail": "" }, { @@ -101573,12 +101647,12 @@ "operation_id": "options.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/options/{id}", - "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", + "path_resolved": "/ovirt-engine/api/v4/options/757f7006-5867-4715-a0cd-d8c29c05bb6c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.19, + "duration_ms": 4.06, "detail": "" }, { @@ -101586,12 +101660,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v4/vms/708ad174-5080-4514-902e-c6c2b8d899c5/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.43, + "duration_ms": 6.14, "detail": "" }, { @@ -101599,12 +101673,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v4/vms/b43f8985-4dae-4f93-bc35-ef387a614558/diskattachments", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 3.35, + "duration_ms": 7.92, "detail": "" }, { @@ -101612,12 +101686,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/3c5fbeb3-fab5-4323-99a9-4c8388567db8/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.8, + "duration_ms": 9.5, "detail": "" }, { @@ -101625,12 +101699,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/8b4e19e0-2f16-40c4-9a7d-db0cb249962e/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.44, + "duration_ms": 7.49, "detail": "" }, { @@ -101638,12 +101712,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/e9f7ebf5-be11-414a-b1e0-8905b18e2379/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.44, + "duration_ms": 6.07, "detail": "" }, { @@ -101651,12 +101725,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/vms/483860a7-53d3-4557-b236-e48f7cb47df2/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.49, + "duration_ms": 7.55, "detail": "" }, { @@ -101664,12 +101738,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/vms/18579a5e-f19c-4b56-a50a-9f03b4b89deb/nics", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.01, + "duration_ms": 8.68, "detail": "" }, { @@ -101677,12 +101751,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/9b44cbb0-a2de-4180-8b10-bb7802612dd8/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 5.44, + "duration_ms": 7.55, "detail": "" }, { @@ -101690,12 +101764,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/3f3f9409-73e1-4a10-ae70-f9526c2b6ab5/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/782773a1-2d35-492e-94a6-e5bc70d561e2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.54, + "duration_ms": 10.32, "detail": "" }, { @@ -101703,12 +101777,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/820353fd-7cfb-4aa7-9a89-648fea645779/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 3.38, + "duration_ms": 30.0, "detail": "" }, { @@ -101716,12 +101790,12 @@ "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/828e61ab-1f38-4f9a-9d18-2b07afff06c8/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 7.36, + "duration_ms": 19.74, "detail": "" }, { @@ -101729,12 +101803,12 @@ "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/1caecbfc-bfb6-44a4-8e7c-cd5bd48e5dec/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 3.77, + "duration_ms": 11.3, "detail": "" }, { @@ -101742,12 +101816,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v4/vms/3c226193-1b05-4b8a-b397-424ee19e1268/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.57, + "duration_ms": 8.97, "detail": "" }, { @@ -101755,12 +101829,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v4/vms/d94ec5cd-14de-48ce-bc06-ed740d17aaf3/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.59, + "duration_ms": 11.65, "detail": "" }, { @@ -101768,12 +101842,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/8f29e694-5472-4ebd-9488-3c0cbf0ea65b/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.49, + "duration_ms": 78.15, "detail": "" }, { @@ -101781,12 +101855,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/bc27852a-70e2-4bee-8056-bb57be727b8f/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 4.97, + "duration_ms": 10.33, "detail": "" }, { @@ -101794,12 +101868,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/a107e497-a49b-4939-96bb-ef0e4c0f250e/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 3.51, + "duration_ms": 11.33, "detail": "" }, { @@ -101807,12 +101881,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v4/vms/6417fe55-19ee-48a0-b3cc-8e9a2dae08a6/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": 3.94, + "duration_ms": 14.44, "detail": "" }, { @@ -101820,12 +101894,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v4/vms/fca89a9b-acab-44af-801a-c7183768758e/snapshots", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 4.19, + "duration_ms": 35.31, "detail": "" }, { @@ -101833,12 +101907,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/8535289f-7a5f-4227-8447-2a3a093aa6c6/snapshots/822b4b39-f52e-4612-9f99-42b644cab2e8", + "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": 5.56, + "duration_ms": 17.02, "detail": "" }, { @@ -101846,12 +101920,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/44dfe76f-fb68-479b-9b0e-8a75648f427e/snapshots/133cfbb1-aaa2-4efc-923b-0d43cefe34a2", + "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": 2.45, + "duration_ms": 23.14, "detail": "" }, { @@ -101859,12 +101933,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/fe0bd18a-bba5-472c-87a2-9f4d6593a2ee/snapshots/c6baf6ab-beda-4686-ac09-069a6da5390d", + "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": 2.21, + "duration_ms": 16.49, "detail": "" }, { @@ -101872,12 +101946,12 @@ "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/b4f27b37-9b4c-4bf4-be35-490712407f96/snapshots/f7d6c404-08ae-4a2c-be9d-267b14599300/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": 3.66, + "duration_ms": 15.57, "detail": "" }, { @@ -101885,12 +101959,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/3a9d9e7a-76f7-4c2a-b4b2-38e3374a9c53/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.23, + "duration_ms": 8.31, "detail": "" }, { @@ -101898,12 +101972,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/bd04226f-be35-498c-8f49-30ae27678255/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": 3.8, + "duration_ms": 14.55, "detail": "" }, { @@ -101911,12 +101985,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/0e4e4ca7-ee04-4393-980b-495d1375f521/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.26, + "duration_ms": 11.68, "detail": "" }, { @@ -101924,12 +101998,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/d612a03f-18b5-4d74-840d-bb4de414a7e6/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.5, + "duration_ms": 3.95, "detail": "" }, { @@ -101937,12 +102011,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/015dca7e-cb60-4571-b413-f3f92595c343/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.43, + "duration_ms": 3.37, "detail": "" }, { @@ -101950,12 +102024,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/vms/6d32c1e2-e923-4ab5-bc65-dab2c2341411/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": 1.88, + "duration_ms": 4.69, "detail": "" }, { @@ -101963,12 +102037,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/vms/187c9027-dae1-479e-bd35-8969c9987b23/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.9, + "duration_ms": 4.96, "detail": "" }, { @@ -101976,12 +102050,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/43f54427-5ea4-4451-8153-5c8377d06bf8/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.63, + "duration_ms": 4.88, "detail": "" }, { @@ -101989,12 +102063,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/cb2ec95d-ad5f-405d-a6e7-a74215adadde/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.68, + "duration_ms": 11.68, "detail": "" }, { @@ -102002,12 +102076,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/0b9ab0b0-bb10-406f-a48a-aa347da283e4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.55, + "duration_ms": 7.37, "detail": "" }, { @@ -102015,12 +102089,12 @@ "operation_id": "graphicsconsoles.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/e9e3e3bd-bb82-4070-b5c5-3df6daf547bb/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.15, + "duration_ms": 7.83, "detail": "" }, { @@ -102028,12 +102102,12 @@ "operation_id": "graphicsconsoles.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/3ff74037-5d07-484d-ab87-3f927f18a049/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.21, + "duration_ms": 5.85, "detail": "" }, { @@ -102041,12 +102115,12 @@ "operation_id": "graphicsconsoles.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/447989a2-10e0-4f61-823e-f938f9e83762/graphicsconsoles/e437f4d0-c77a-4ba6-99ba-9f0217438e82", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c613423f-ea14-4a2e-9dd2-c067496c4820", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 6.45, "detail": "" }, { @@ -102054,12 +102128,12 @@ "operation_id": "graphicsconsoles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/b6d48090-7806-4dd6-a8a8-0e5079e0b823/graphicsconsoles/e437f4d0-c77a-4ba6-99ba-9f0217438e82", + "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": 1.8, + "duration_ms": 8.22, "detail": "" }, { @@ -102067,12 +102141,12 @@ "operation_id": "graphicsconsoles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/ce473f08-cae0-4a77-ba19-b1092a0c1b9a/graphicsconsoles/e437f4d0-c77a-4ba6-99ba-9f0217438e82", + "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": 1.48, + "duration_ms": 7.06, "detail": "" }, { @@ -102080,12 +102154,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/8c816467-1a8e-485d-97d6-c240d1bd2635/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.72, + "duration_ms": 6.63, "detail": "" }, { @@ -102093,12 +102167,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/a26905e2-102b-49c4-9d98-938921fa6308/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.95, + "duration_ms": 6.89, "detail": "" }, { @@ -102106,12 +102180,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/89de9371-9906-46e5-adf0-48e032001a5f/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 8.27, "detail": "" }, { @@ -102119,12 +102193,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/efa34d16-9bfc-4bdf-9d02-1ea56047a338/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 3.65, + "duration_ms": 6.65, "detail": "" }, { @@ -102132,12 +102206,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/fc237be1-9ba2-43e4-aae8-b51c54e4378e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.82, + "duration_ms": 6.73, "detail": "" }, { @@ -102145,12 +102219,12 @@ "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/719b9841-43d3-4c8d-ace6-2bf9c0437371/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.5, + "duration_ms": 11.45, "detail": "" }, { @@ -102158,12 +102232,12 @@ "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/13e56b85-e009-4f6b-985d-03c612d99df2/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.46, + "duration_ms": 11.78, "detail": "" }, { @@ -102171,12 +102245,12 @@ "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/a3141ce3-0131-45b6-baac-79a5ce5f0e10/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.14, + "duration_ms": 10.25, "detail": "" }, { @@ -102184,12 +102258,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/eb241718-a112-43a8-9f6e-3b78f7f53645/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": 1.75, + "duration_ms": 6.91, "detail": "" }, { @@ -102197,12 +102271,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/2710b8c8-7164-45f9-815a-fc7a31f7d590/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": 1.78, + "duration_ms": 8.72, "detail": "" }, { @@ -102210,12 +102284,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/bebf8059-71ca-47d6-a93d-9138d41fe42a/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.63, + "duration_ms": 7.92, "detail": "" }, { @@ -102223,12 +102297,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/1290bbd5-28bb-4a1e-a198-02e196fa9fd1/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 2.45, + "duration_ms": 9.96, "detail": "" }, { @@ -102236,12 +102310,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/c4726470-eef0-4e61-a4d3-60bfaa488980/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.59, + "duration_ms": 9.28, "detail": "" }, { @@ -102249,12 +102323,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/430c2706-0dd5-4c2b-9d72-32995888ada4/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.79, + "duration_ms": 11.95, "detail": "" }, { @@ -102262,12 +102336,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/a5d03b6c-6bb5-4914-9a3b-91838d98e647/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": 1.95, + "duration_ms": 11.68, "detail": "" }, { @@ -102275,12 +102349,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/d4c4f716-0b84-4908-837b-79bd785e555a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.67, + "duration_ms": 12.4, "detail": "" }, { @@ -102288,12 +102362,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/b341fbdf-10d2-45be-b6e5-881c3e0dd773/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.5, + "duration_ms": 9.76, "detail": "" }, { @@ -102301,12 +102375,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/bd95d4ed-57db-45d8-9959-10e5256c83b1/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.47, + "duration_ms": 6.64, "detail": "" }, { @@ -102314,12 +102388,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v4/hosts/d66190e1-0c7a-42a2-a25d-5367ce53b7b1/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.68, + "duration_ms": 8.04, "detail": "" }, { @@ -102327,12 +102401,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v4/hosts/cff3058f-d845-45e9-8b67-ef82e50caab9/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.93, + "duration_ms": 10.42, "detail": "" }, { @@ -102340,12 +102414,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/7aad66d8-73b3-4e64-9dec-d52eb77496b1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.06, + "duration_ms": 6.52, "detail": "" }, { @@ -102353,12 +102427,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/61a3d51d-9ff6-4195-ad8f-da7fc110c432/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.86, + "duration_ms": 15.16, "detail": "" }, { @@ -102366,12 +102440,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/0474e695-4a2b-4e72-b340-fa9fa524049e/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.5, + "duration_ms": 10.13, "detail": "" }, { @@ -102384,7 +102458,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 7.77, "detail": "" }, { @@ -102395,9 +102469,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.17, + "duration_ms": 6.1, "detail": "" }, { @@ -102405,12 +102479,12 @@ "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/d7203826-fae8-42d5-a94e-9bfe4c0ef002", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/e4dcfffb-0b18-476b-b039-1df9a7a1e990", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 4.31, "detail": "" }, { @@ -102418,12 +102492,12 @@ "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/a0765346-a52d-4a90-b4b2-cfb0e8035d5c", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/2f9cc34c-8d08-4174-9059-ce62c2f521a5", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 11.78, "detail": "" }, { @@ -102431,12 +102505,12 @@ "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/086714fc-f113-4031-979f-7a76a8a479af", + "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": 2.03, + "duration_ms": 7.06, "detail": "" }, { @@ -102447,9 +102521,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 7.7, "detail": "" }, { @@ -102460,9 +102534,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 2.1, + "duration_ms": 7.04, "detail": "" }, { @@ -102470,12 +102544,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 7.82, "detail": "" }, { @@ -102483,12 +102557,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "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": 1.34, + "duration_ms": 5.81, "detail": "" }, { @@ -102496,12 +102570,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "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": 1.36, + "duration_ms": 5.57, "detail": "" }, { @@ -102514,7 +102588,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 7.52, "detail": "" }, { @@ -102527,7 +102601,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.01, + "duration_ms": 10.68, "detail": "" }, { @@ -102540,7 +102614,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 7.62, "detail": "" }, { @@ -102553,7 +102627,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 6.65, "detail": "" }, { @@ -102561,12 +102635,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.28, + "duration_ms": 6.44, "detail": "" }, { @@ -102579,7 +102653,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 11.2, "detail": "" }, { @@ -102592,7 +102666,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 1.25, + "duration_ms": 11.86, "detail": "" }, { @@ -102603,9 +102677,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.33, + "duration_ms": 27.64, "detail": "" }, { @@ -102613,12 +102687,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 2.24, + "duration_ms": 10.44, "detail": "" }, { @@ -102626,12 +102700,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.88, + "duration_ms": 18.64, "detail": "" }, { @@ -102644,7 +102718,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.13, + "duration_ms": 55.06, "detail": "" }, { @@ -102657,7 +102731,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.17, + "duration_ms": 30.6, "detail": "" }, { @@ -102668,9 +102742,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 16.32, "detail": "" }, { @@ -102681,9 +102755,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.59, + "duration_ms": 17.11, "detail": "" }, { @@ -102694,9 +102768,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 19.45, "detail": "" }, { @@ -102704,12 +102778,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 1.53, + "duration_ms": 25.57, "detail": "" }, { @@ -102717,12 +102791,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/951f0bcc-e551-410f-a497-e6202ca1a409", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 22.19, "detail": "" }, { @@ -102733,9 +102807,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 27.94, "detail": "" }, { @@ -102746,9 +102820,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.39, + "duration_ms": 47.09, "detail": "" }, { @@ -102756,12 +102830,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 31.83, "detail": "" }, { @@ -102769,12 +102843,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "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": 1.67, + "duration_ms": 49.32, "detail": "" }, { @@ -102782,12 +102856,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/9457420f-57e6-40d9-971e-cdf622cb7055", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 25.13, "detail": "" }, { @@ -102800,7 +102874,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 20.77, "detail": "" }, { @@ -102813,7 +102887,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.21, + "duration_ms": 35.53, "detail": "" }, { @@ -102821,12 +102895,12 @@ "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/cda55a8f-c8e9-4b2d-b1e5-b4e4d40792b8", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.07, + "duration_ms": 14.07, "detail": "" }, { @@ -102834,12 +102908,12 @@ "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/cda55a8f-c8e9-4b2d-b1e5-b4e4d40792b8", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/209fec44-907a-4fa5-986b-0d895f055b02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 18.93, "detail": "" }, { @@ -102847,12 +102921,12 @@ "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/cda55a8f-c8e9-4b2d-b1e5-b4e4d40792b8", + "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": 2.22, + "duration_ms": 10.57, "detail": "" }, { @@ -102865,7 +102939,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 9.52, "detail": "" }, { @@ -102878,7 +102952,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.05, + "duration_ms": 10.25, "detail": "" }, { @@ -102891,7 +102965,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.1, + "duration_ms": 7.31, "detail": "" }, { @@ -102904,7 +102978,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 8.75, "detail": "" }, { @@ -102912,12 +102986,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.79, + "duration_ms": 8.84, "detail": "" }, { @@ -102925,12 +102999,12 @@ "operation_id": "vnicprofiles.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v4/networks/28636f17-adf6-41c8-a5d7-a71284a54698/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": 1.81, + "duration_ms": 8.5, "detail": "" }, { @@ -102938,12 +103012,12 @@ "operation_id": "vnicprofiles.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v4/networks/28636f17-adf6-41c8-a5d7-a71284a54698/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.29, + "duration_ms": 6.95, "detail": "" }, { @@ -102951,12 +103025,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/28636f17-adf6-41c8-a5d7-a71284a54698/vnicprofiles/d7e32e50-a81c-4c68-8015-c508908df66b", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 7.6, "detail": "" }, { @@ -102964,12 +103038,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/28636f17-adf6-41c8-a5d7-a71284a54698/vnicprofiles/3f0fd339-c343-4690-a3e6-50a3cf30ebac", + "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": 1.66, + "duration_ms": 8.16, "detail": "" }, { @@ -102977,12 +103051,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/28636f17-adf6-41c8-a5d7-a71284a54698/vnicprofiles/14de8afb-7365-44a0-a1f8-476f5cebb1f7", + "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": 1.68, + "duration_ms": 25.35, "detail": "" }, { @@ -102995,7 +103069,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 8.75, "detail": "" }, { @@ -103008,7 +103082,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.18, + "duration_ms": 9.53, "detail": "" }, { @@ -103019,9 +103093,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 5.2, "detail": "" }, { @@ -103032,9 +103106,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 5.98, "detail": "" }, { @@ -103042,12 +103116,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.36, + "duration_ms": 5.1, "detail": "" }, { @@ -103060,7 +103134,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 7.06, "detail": "" }, { @@ -103073,7 +103147,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.04, + "duration_ms": 9.73, "detail": "" }, { @@ -103086,7 +103160,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 4.79, "detail": "" }, { @@ -103099,7 +103173,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 8.36, "detail": "" }, { @@ -103107,12 +103181,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.3, + "duration_ms": 6.93, "detail": "" }, { @@ -103125,7 +103199,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 8.69, "detail": "" }, { @@ -103138,7 +103212,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.11, + "duration_ms": 13.82, "detail": "" }, { @@ -103149,9 +103223,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.35, + "duration_ms": 11.47, "detail": "" }, { @@ -103159,12 +103233,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.63, + "duration_ms": 8.43, "detail": "" }, { @@ -103172,12 +103246,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.3, + "duration_ms": 15.24, "detail": "" }, { @@ -103190,7 +103264,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 10.08, "detail": "" }, { @@ -103203,7 +103277,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 13.44, "detail": "" }, { @@ -103214,9 +103288,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 9.39, "detail": "" }, { @@ -103227,9 +103301,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 9.09, "detail": "" }, { @@ -103237,12 +103311,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 1.29, + "duration_ms": 3.78, "detail": "" }, { @@ -103250,12 +103324,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v4/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/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": 1.47, + "duration_ms": 4.99, "detail": "" }, { @@ -103263,12 +103337,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v4/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/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": 1.89, + "duration_ms": 4.45, "detail": "" }, { @@ -103276,12 +103350,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/steps/4be21772-3a14-4c5a-9c23-bee844aec29b", + "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": 1.21, + "duration_ms": 4.39, "detail": "" }, { @@ -103289,12 +103363,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/steps/59aadd9d-ca80-47e8-b9a7-b27051d6b8f6", + "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": 1.24, + "duration_ms": 6.47, "detail": "" }, { @@ -103302,12 +103376,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/steps/d5c0f066-0014-4e41-8a0e-1abf2ab17f9c", + "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": 1.31, + "duration_ms": 6.82, "detail": "" }, { @@ -103320,7 +103394,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.68, + "duration_ms": 13.57, "detail": "" }, { @@ -103333,7 +103407,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 6.58, "detail": "" }, { @@ -103344,9 +103418,9 @@ "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 6.19, "detail": "" }, { @@ -103359,7 +103433,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 6.05, "detail": "" }, { @@ -103370,9 +103444,9 @@ "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 5.53, "detail": "" }, { @@ -103385,7 +103459,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 4.96, "detail": "" }, { @@ -103396,9 +103470,9 @@ "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 6.45, "detail": "" }, { @@ -103411,7 +103485,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 10.94, "detail": "" }, { @@ -103422,9 +103496,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 7.7, "detail": "" }, { @@ -103437,7 +103511,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 11.74, "detail": "" }, { @@ -103448,9 +103522,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 7.33, "detail": "" }, { @@ -103463,7 +103537,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 8.01, "detail": "" }, { @@ -103474,9 +103548,9 @@ "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 9.45, "detail": "" }, { @@ -103489,7 +103563,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 8.1, "detail": "" }, { @@ -103502,7 +103576,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.5, + "duration_ms": 7.63, "detail": "" }, { @@ -103515,7 +103589,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.73, + "duration_ms": 6.33, "detail": "" }, { @@ -103523,12 +103597,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1114", + "path_resolved": "/ovirt-engine/api/events/57", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.83, + "duration_ms": 8.08, "detail": "" }, { @@ -103541,7 +103615,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.23, + "duration_ms": 6.33, "detail": "" }, { @@ -103552,9 +103626,9 @@ "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 6.73, "detail": "" }, { @@ -103567,7 +103641,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 9.02, "detail": "" }, { @@ -103578,9 +103652,9 @@ "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.07, + "duration_ms": 7.62, "detail": "" }, { @@ -103593,7 +103667,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.92, + "duration_ms": 7.98, "detail": "" }, { @@ -103601,12 +103675,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/72e87829-a6d6-471c-9c2a-5a0b318498f6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 7.1, "detail": "" }, { @@ -103619,7 +103693,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 6.54, "detail": "" }, { @@ -103630,9 +103704,9 @@ "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.51, + "duration_ms": 7.03, "detail": "" }, { @@ -103645,7 +103719,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.88, + "duration_ms": 6.74, "detail": "" }, { @@ -103656,9 +103730,9 @@ "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 6.85, "detail": "" }, { @@ -103671,7 +103745,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.2, + "duration_ms": 11.71, "detail": "" }, { @@ -103679,12 +103753,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac", + "path_resolved": "/ovirt-engine/api/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 9.18, "detail": "" }, { @@ -103697,7 +103771,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.32, + "duration_ms": 9.66, "detail": "" }, { @@ -103705,12 +103779,12 @@ "operation_id": "head.katelloerrata.get", "method": "HEAD", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/7f294595-e654-4b68-9569-22d8d1d58868", + "path_resolved": "/ovirt-engine/api/katelloerrata/938ec820-56e7-4d69-9fd9-f4fc0fab5022", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 10.4, + "duration_ms": 8.55, "detail": "" }, { @@ -103723,7 +103797,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 6.97, + "duration_ms": 9.67, "detail": "" }, { @@ -103734,9 +103808,9 @@ "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 5.55, + "duration_ms": 10.71, "detail": "" }, { @@ -103749,7 +103823,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.5, + "duration_ms": 6.18, "detail": "" }, { @@ -103757,12 +103831,12 @@ "operation_id": "head.networkfilters.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/2e5bc167-9a4b-46ad-9762-ed7658069dc0", + "path_resolved": "/ovirt-engine/api/networkfilters/5034fcd4-bd5a-4056-a04c-31fcd39f0c82", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.4, + "duration_ms": 6.68, "detail": "" }, { @@ -103775,7 +103849,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.08, + "duration_ms": 7.94, "detail": "" }, { @@ -103783,12 +103857,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.99, + "duration_ms": 8.6, "detail": "" }, { @@ -103801,7 +103875,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.18, + "duration_ms": 5.38, "detail": "" }, { @@ -103812,9 +103886,9 @@ "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.13, + "duration_ms": 5.6, "detail": "" }, { @@ -103827,7 +103901,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.3, + "duration_ms": 7.08, "detail": "" }, { @@ -103838,9 +103912,9 @@ "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 4.32, + "duration_ms": 8.17, "detail": "" }, { @@ -103853,7 +103927,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.97, + "duration_ms": 8.7, "detail": "" }, { @@ -103864,9 +103938,9 @@ "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.73, + "duration_ms": 9.96, "detail": "" }, { @@ -103879,7 +103953,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.44, + "duration_ms": 7.29, "detail": "" }, { @@ -103887,12 +103961,12 @@ "operation_id": "head.operatingsystems.get", "method": "HEAD", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/5058dee1-e29b-46d4-801b-4d3590ea74f6", + "path_resolved": "/ovirt-engine/api/operatingsystems/e9693c95-cba3-45a8-b6ac-0e627ff4c7c1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.74, + "duration_ms": 6.9, "detail": "" }, { @@ -103905,7 +103979,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.46, + "duration_ms": 8.1, "detail": "" }, { @@ -103918,7 +103992,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.44, + "duration_ms": 6.61, "detail": "" }, { @@ -103931,7 +104005,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.05, + "duration_ms": 7.43, "detail": "" }, { @@ -103942,9 +104016,9 @@ "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 6.14, "detail": "" }, { @@ -103957,7 +104031,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 6.28, "detail": "" }, { @@ -103968,9 +104042,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 5.76, "detail": "" }, { @@ -103983,7 +104057,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 6.72, "detail": "" }, { @@ -103994,9 +104068,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 7.12, "detail": "" }, { @@ -104009,7 +104083,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.48, + "duration_ms": 7.91, "detail": "" }, { @@ -104017,12 +104091,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/5fc43f15-7481-4e2b-9f9a-3bc5c5820091", + "path_resolved": "/ovirt-engine/api/storageconnections/b20ef56b-92f1-44d3-bf74-e1540cdd72fb", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 7.67, "detail": "" }, { @@ -104035,7 +104109,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 7.58, "detail": "" }, { @@ -104046,9 +104120,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 7.58, "detail": "" }, { @@ -104061,7 +104135,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 10.31, "detail": "" }, { @@ -104072,9 +104146,9 @@ "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 6.06, "detail": "" }, { @@ -104087,7 +104161,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.39, + "duration_ms": 6.43, "detail": "" }, { @@ -104098,9 +104172,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 5.65, "detail": "" }, { @@ -104113,7 +104187,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 5.74, "detail": "" }, { @@ -104126,7 +104200,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 8.29, "detail": "" }, { @@ -104139,7 +104213,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 6.07, "detail": "" }, { @@ -104150,9 +104224,9 @@ "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 6.58, "detail": "" }, { @@ -104165,7 +104239,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.82, + "duration_ms": 6.31, "detail": "" }, { @@ -104173,12 +104247,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/4c3d8dfc-2d45-4d76-bf97-d041ed38fd79", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 6.49, "detail": "" }, { @@ -104191,7 +104265,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 6.43, "detail": "" }, { @@ -104199,12 +104273,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/d36f9290-51b6-4e0b-899d-fe03f4b9986e", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 6.04, "detail": "" }, { @@ -104217,7 +104291,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 5.72, "detail": "" }, { @@ -104225,12 +104299,12 @@ "operation_id": "head.imagetransfers.get", "method": "HEAD", "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/3302bbce-b5ec-43ab-9638-996b1f31c55b", + "path_resolved": "/ovirt-engine/api/imageTransfers/6f7adf35-0807-48f3-b118-2d5e11ed671c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 6.0, "detail": "" }, { @@ -104243,7 +104317,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 8.72, "detail": "" }, { @@ -104254,9 +104328,9 @@ "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 5.97, "detail": "" }, { @@ -104264,12 +104338,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/cb7909f5-b1e1-4b3b-bab4-7991dc0d181a/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.64, + "duration_ms": 9.31, "detail": "" }, { @@ -104277,12 +104351,12 @@ "operation_id": "head.diskattachments.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/597c068a-1491-4507-86d2-8730c3c40656/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.61, + "duration_ms": 6.74, "detail": "" }, { @@ -104290,12 +104364,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/42ffa49f-65e9-405a-86ae-a3fdd46193c3/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.55, + "duration_ms": 6.42, "detail": "" }, { @@ -104303,12 +104377,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/a31ab5fb-2b71-42ce-b338-9561f3b23760/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.55, + "duration_ms": 8.03, "detail": "" }, { @@ -104316,12 +104390,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/85b1f466-7da9-4d52-a52e-7ad27cc46fa1/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.7, + "duration_ms": 6.36, "detail": "" }, { @@ -104329,12 +104403,12 @@ "operation_id": "head.cdroms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/94c81bbf-89c5-4985-82f8-9a166cea7415/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.49, + "duration_ms": 5.49, "detail": "" }, { @@ -104342,12 +104416,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/31c29465-8336-4f69-8912-09613169e2aa/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.38, + "duration_ms": 5.12, "detail": "" }, { @@ -104355,12 +104429,12 @@ "operation_id": "head.snapshots.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/69ad27d3-7388-4022-8c7c-33ee52a1af00/snapshots/e9419267-2025-4741-8e9d-8002aa011842", + "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": 1.33, + "duration_ms": 4.24, "detail": "" }, { @@ -104368,12 +104442,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/b53245d3-49ee-4e3e-9604-5ad2d95a5edd/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.68, + "duration_ms": 4.14, "detail": "" }, { @@ -104381,12 +104455,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/5ade6fcb-313c-4c33-b938-99e8c6a3ffee/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.56, + "duration_ms": 3.04, "detail": "" }, { @@ -104394,12 +104468,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/6dce8a1d-7db1-4cf8-bf0c-3f7a8700a10a/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": 1.69, + "duration_ms": 3.12, "detail": "" }, { @@ -104407,12 +104481,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/a29def69-04be-46a4-bc30-0eda5ee2d621/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.59, + "duration_ms": 2.92, "detail": "" }, { @@ -104420,12 +104494,12 @@ "operation_id": "head.graphicsconsoles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/2175350e-e0e8-4e04-be81-2415e7d66d67/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.67, + "duration_ms": 3.84, "detail": "" }, { @@ -104433,12 +104507,12 @@ "operation_id": "head.graphicsconsoles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/a8b3fc44-5879-49ed-9faa-0d59e997c5ea/graphicsconsoles/e437f4d0-c77a-4ba6-99ba-9f0217438e82", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c613423f-ea14-4a2e-9dd2-c067496c4820", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 4.23, "detail": "" }, { @@ -104446,12 +104520,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/82460305-c971-4f2b-a413-e8f2400192ce/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.64, + "duration_ms": 3.21, "detail": "" }, { @@ -104459,12 +104533,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ae0141e2-db47-4554-a69a-a294c758219e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 2.88, "detail": "" }, { @@ -104472,12 +104546,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/668d8612-83be-4a87-87aa-b790af9d4656/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.73, + "duration_ms": 3.12, "detail": "" }, { @@ -104485,12 +104559,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/5dc72f5b-ba46-41c7-84d3-056e98d43f1d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.23, + "duration_ms": 2.7, "detail": "" }, { @@ -104498,12 +104572,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/fe6abe43-63d8-4811-8a46-08d92536cffe/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.74, + "duration_ms": 2.83, "detail": "" }, { @@ -104511,12 +104585,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/a96b651e-707e-4d19-9f2c-91236c442386/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.64, + "duration_ms": 2.58, "detail": "" }, { @@ -104524,12 +104598,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/6de4c593-bddd-4cb5-b46a-1f88f7c7e046/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.6, + "duration_ms": 2.73, "detail": "" }, { @@ -104537,12 +104611,12 @@ "operation_id": "head.statistics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/216c2e10-ddde-4823-aeee-51eda10191d3/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.65, "detail": "" }, { @@ -104555,7 +104629,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 2.66, "detail": "" }, { @@ -104563,12 +104637,12 @@ "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/1818bbb8-7b33-4ee3-8fc0-84811fd83de0", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/e4dcfffb-0b18-476b-b039-1df9a7a1e990", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 3.27, "detail": "" }, { @@ -104579,9 +104653,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 3.76, "detail": "" }, { @@ -104589,12 +104663,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.93, "detail": "" }, { @@ -104607,7 +104681,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 2.92, "detail": "" }, { @@ -104620,7 +104694,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.81, "detail": "" }, { @@ -104633,7 +104707,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 2.86, "detail": "" }, { @@ -104644,9 +104718,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 4.0, "detail": "" }, { @@ -104657,9 +104731,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 3.29, "detail": "" }, { @@ -104670,9 +104744,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 5.87, "detail": "" }, { @@ -104683,9 +104757,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 6.28, "detail": "" }, { @@ -104693,12 +104767,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 5.53, "detail": "" }, { @@ -104711,7 +104785,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 5.63, "detail": "" }, { @@ -104719,12 +104793,12 @@ "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/cda55a8f-c8e9-4b2d-b1e5-b4e4d40792b8", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 5.16, "detail": "" }, { @@ -104737,7 +104811,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 4.81, "detail": "" }, { @@ -104750,7 +104824,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 3.64, "detail": "" }, { @@ -104758,12 +104832,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/28636f17-adf6-41c8-a5d7-a71284a54698/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.37, + "duration_ms": 3.13, "detail": "" }, { @@ -104771,12 +104845,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/28636f17-adf6-41c8-a5d7-a71284a54698/vnicprofiles/7a0ec085-a9c3-45a3-9fb7-91f99bedf075", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 2.75, "detail": "" }, { @@ -104789,7 +104863,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 5.05, "detail": "" }, { @@ -104800,9 +104874,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 4.28, "detail": "" }, { @@ -104815,7 +104889,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 6.05, "detail": "" }, { @@ -104828,7 +104902,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 5.62, "detail": "" }, { @@ -104841,7 +104915,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 4.63, "detail": "" }, { @@ -104852,9 +104926,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 4.15, "detail": "" }, { @@ -104867,7 +104941,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.15, + "duration_ms": 5.0, "detail": "" }, { @@ -104878,9 +104952,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 4.28, "detail": "" }, { @@ -104888,12 +104962,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/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": 1.43, + "duration_ms": 4.11, "detail": "" }, { @@ -104901,12 +104975,12 @@ "operation_id": "head.steps.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/steps/e9ecabdf-8488-4132-afc8-7660b5b948e3", + "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": 2.0, + "duration_ms": 4.29, "detail": "" }, { @@ -104919,7 +104993,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.45, + "duration_ms": 7.64, "detail": "" }, { @@ -104932,7 +105006,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.16, + "duration_ms": 4.84, "detail": "" }, { @@ -104943,9 +105017,9 @@ "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.29, + "duration_ms": 3.61, "detail": "" }, { @@ -104958,7 +105032,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 3.18, "detail": "" }, { @@ -104969,9 +105043,9 @@ "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 2.99, "detail": "" }, { @@ -104984,7 +105058,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 3.16, "detail": "" }, { @@ -104995,9 +105069,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 3.26, "detail": "" }, { @@ -105010,7 +105084,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 3.32, "detail": "" }, { @@ -105021,9 +105095,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 3.76, "detail": "" }, { @@ -105036,7 +105110,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 3.87, "detail": "" }, { @@ -105047,9 +105121,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 4.32, "detail": "" }, { @@ -105062,7 +105136,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 3.71, "detail": "" }, { @@ -105073,9 +105147,9 @@ "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 3.48, "detail": "" }, { @@ -105088,7 +105162,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 2.96, "detail": "" }, { @@ -105101,7 +105175,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 2.93, "detail": "" }, { @@ -105114,7 +105188,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 3.49, "detail": "" }, { @@ -105122,12 +105196,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/events/{id}", - "path_resolved": "/ovirt-engine/api/v4/events/1114", + "path_resolved": "/ovirt-engine/api/v4/events/57", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 3.11, "detail": "" }, { @@ -105140,7 +105214,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 3.47, "detail": "" }, { @@ -105151,9 +105225,9 @@ "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.65, + "duration_ms": 3.43, "detail": "" }, { @@ -105166,7 +105240,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.56, "detail": "" }, { @@ -105177,9 +105251,9 @@ "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.09, "detail": "" }, { @@ -105192,7 +105266,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 2.98, "detail": "" }, { @@ -105200,12 +105274,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/16e9dd60-9d77-4baf-bc9b-3a4744bfd78d", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.9, "detail": "" }, { @@ -105218,7 +105292,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 3.0, "detail": "" }, { @@ -105229,9 +105303,9 @@ "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 3.03, "detail": "" }, { @@ -105244,7 +105318,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.88, + "duration_ms": 3.11, "detail": "" }, { @@ -105255,9 +105329,9 @@ "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 3.2, "detail": "" }, { @@ -105270,7 +105344,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.05, + "duration_ms": 5.1, "detail": "" }, { @@ -105278,12 +105352,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac", + "path_resolved": "/ovirt-engine/api/v4/jobs/858484fa-c5ee-4066-92a9-3a69c052fb2a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.99, + "duration_ms": 3.3, "detail": "" }, { @@ -105296,7 +105370,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.77, + "duration_ms": 3.42, "detail": "" }, { @@ -105304,12 +105378,12 @@ "operation_id": "head.katelloerrata.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v4/katelloerrata/7f294595-e654-4b68-9569-22d8d1d58868", + "path_resolved": "/ovirt-engine/api/v4/katelloerrata/938ec820-56e7-4d69-9fd9-f4fc0fab5022", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 3.42, "detail": "" }, { @@ -105322,7 +105396,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.1, + "duration_ms": 4.91, "detail": "" }, { @@ -105333,9 +105407,9 @@ "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 3.97, "detail": "" }, { @@ -105348,7 +105422,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 3.18, "detail": "" }, { @@ -105356,12 +105430,12 @@ "operation_id": "head.networkfilters.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v4/networkfilters/2e5bc167-9a4b-46ad-9762-ed7658069dc0", + "path_resolved": "/ovirt-engine/api/v4/networkfilters/5034fcd4-bd5a-4056-a04c-31fcd39f0c82", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 3.26, "detail": "" }, { @@ -105374,7 +105448,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 3.56, "detail": "" }, { @@ -105382,12 +105456,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/networks/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 3.43, "detail": "" }, { @@ -105400,7 +105474,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 3.49, "detail": "" }, { @@ -105411,9 +105485,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 3.22, "detail": "" }, { @@ -105426,7 +105500,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 3.24, "detail": "" }, { @@ -105437,9 +105511,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 3.01, "detail": "" }, { @@ -105452,7 +105526,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 3.01, "detail": "" }, { @@ -105463,9 +105537,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 4.07, "detail": "" }, { @@ -105478,7 +105552,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 3.38, "detail": "" }, { @@ -105486,12 +105560,12 @@ "operation_id": "head.operatingsystems.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/5058dee1-e29b-46d4-801b-4d3590ea74f6", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/e9693c95-cba3-45a8-b6ac-0e627ff4c7c1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.79, "detail": "" }, { @@ -105504,7 +105578,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 5.75, "detail": "" }, { @@ -105517,7 +105591,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.08, "detail": "" }, { @@ -105530,7 +105604,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 4.76, "detail": "" }, { @@ -105541,9 +105615,9 @@ "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 4.92, "detail": "" }, { @@ -105556,7 +105630,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.33, "detail": "" }, { @@ -105567,9 +105641,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 4.9, "detail": "" }, { @@ -105582,7 +105656,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 5.23, "detail": "" }, { @@ -105593,9 +105667,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 4.02, "detail": "" }, { @@ -105608,7 +105682,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 4.52, "detail": "" }, { @@ -105616,12 +105690,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/5fc43f15-7481-4e2b-9f9a-3bc5c5820091", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/b20ef56b-92f1-44d3-bf74-e1540cdd72fb", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 5.01, "detail": "" }, { @@ -105634,7 +105708,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 5.39, "detail": "" }, { @@ -105645,9 +105719,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 4.27, "detail": "" }, { @@ -105660,7 +105734,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 4.39, "detail": "" }, { @@ -105671,9 +105745,9 @@ "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 4.88, "detail": "" }, { @@ -105686,7 +105760,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 4.64, "detail": "" }, { @@ -105697,9 +105771,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 3.72, "detail": "" }, { @@ -105712,7 +105786,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 3.33, "detail": "" }, { @@ -105725,7 +105799,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 4.08, "detail": "" }, { @@ -105738,7 +105812,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 3.47, "detail": "" }, { @@ -105749,9 +105823,9 @@ "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 2.72, "detail": "" }, { @@ -105764,7 +105838,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 2.78, "detail": "" }, { @@ -105772,12 +105846,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/039b71c1-e4cf-4e19-9bdf-f08a03acd5de", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.6, "detail": "" }, { @@ -105790,7 +105864,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 2.87, "detail": "" }, { @@ -105798,12 +105872,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/40a3e7c5-08a7-4f56-8fdd-9b39de7797c1", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 2.9, "detail": "" }, { @@ -105816,7 +105890,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 3.16, "detail": "" }, { @@ -105824,12 +105898,12 @@ "operation_id": "head.imagetransfers.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/3302bbce-b5ec-43ab-9638-996b1f31c55b", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/6f7adf35-0807-48f3-b118-2d5e11ed671c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 2.83, "detail": "" }, { @@ -105842,7 +105916,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 3.87, "detail": "" }, { @@ -105853,9 +105927,9 @@ "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 3.07, "detail": "" }, { @@ -105863,12 +105937,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v4/vms/34d6e255-1982-45bc-ba8d-e4efab5fdf43/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": 1.55, + "duration_ms": 3.7, "detail": "" }, { @@ -105876,12 +105950,12 @@ "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/b9c989e5-a42d-43a9-aad3-b0948c61f3fa/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.64, + "duration_ms": 2.84, "detail": "" }, { @@ -105889,12 +105963,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/vms/c1f07eb2-a9e6-45f8-aa75-aded14f8acda/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.55, + "duration_ms": 2.62, "detail": "" }, { @@ -105902,12 +105976,12 @@ "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/2dda6946-b31b-48a7-8949-def2324a54ed/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.41, + "duration_ms": 2.64, "detail": "" }, { @@ -105915,12 +105989,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v4/vms/e367cf9c-4d05-43fc-b1fe-8dd87775486f/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.49, + "duration_ms": 2.71, "detail": "" }, { @@ -105928,12 +106002,12 @@ "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/bc220db7-73b8-4e29-bc2c-3e5b3f763157/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.53, + "duration_ms": 2.55, "detail": "" }, { @@ -105941,12 +106015,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v4/vms/c606c17e-2f9a-4688-91b3-c98282fe25c2/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": 1.52, + "duration_ms": 2.73, "detail": "" }, { @@ -105954,12 +106028,12 @@ "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/80b4d573-785d-44e6-9f5e-fcade4e7d229/snapshots/9fc9e691-5f18-4d81-90c2-a1f82bcaa722", + "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": 1.56, + "duration_ms": 2.55, "detail": "" }, { @@ -105967,12 +106041,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/e020900a-28f0-4e86-ab85-db0fefa5a6fa/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": 1.48, + "duration_ms": 2.62, "detail": "" }, { @@ -105980,12 +106054,12 @@ "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/80461137-c513-4e30-a55d-886c62f67d26/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.46, + "duration_ms": 4.99, "detail": "" }, { @@ -105993,12 +106067,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/vms/7f1ebca8-9f7f-464d-b73e-9d21920c81c6/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": 1.63, + "duration_ms": 4.19, "detail": "" }, { @@ -106006,12 +106080,12 @@ "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/58e67438-a8aa-404b-9c79-73ce4faa60c3/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.49, + "duration_ms": 3.69, "detail": "" }, { @@ -106019,12 +106093,12 @@ "operation_id": "head.graphicsconsoles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/9a218194-ca80-42c9-bb14-a7ee8f83d486/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.58, + "duration_ms": 4.1, "detail": "" }, { @@ -106032,12 +106106,12 @@ "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/0c1dc1d8-5724-4009-9aed-a05978ca67ba/graphicsconsoles/e437f4d0-c77a-4ba6-99ba-9f0217438e82", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/c613423f-ea14-4a2e-9dd2-c067496c4820", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 3.44, "detail": "" }, { @@ -106045,12 +106119,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/62e218f5-854f-421f-8ab7-d9bd8ed65786/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.52, + "duration_ms": 3.72, "detail": "" }, { @@ -106058,12 +106132,12 @@ "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/821fb1f7-71fc-45e5-951f-396c6739fa8c/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 3.33, "detail": "" }, { @@ -106071,12 +106145,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/41c2b462-1fbe-4553-ad19-159a4e68fb9c/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": 1.64, + "duration_ms": 2.87, "detail": "" }, { @@ -106084,12 +106158,12 @@ "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/e207eb52-5c62-4389-b7b3-70cebaa53474/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.52, + "duration_ms": 2.68, "detail": "" }, { @@ -106097,12 +106171,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/1f21278d-ced9-474d-b7bb-72b82c7a2a2c/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.23, + "duration_ms": 2.85, "detail": "" }, { @@ -106110,12 +106184,12 @@ "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/20b1ae97-1ae4-41dc-8789-d17aab2dffcc/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.54, + "duration_ms": 2.72, "detail": "" }, { @@ -106123,12 +106197,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v4/hosts/d95f8fb1-2a4a-461d-a20c-3e45ed596cde/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.53, + "duration_ms": 2.81, "detail": "" }, { @@ -106136,12 +106210,12 @@ "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/ef000fec-516d-4fe8-a263-4f8a5bdcfe71/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 2.97, "detail": "" }, { @@ -106154,7 +106228,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 2.55, "detail": "" }, { @@ -106162,12 +106236,12 @@ "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/122ce812-1f3d-4ea5-a5b9-e9e0cb515b24", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/e4dcfffb-0b18-476b-b039-1df9a7a1e990", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 2.91, "detail": "" }, { @@ -106178,9 +106252,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 4.95, "detail": "" }, { @@ -106188,12 +106262,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 4.58, "detail": "" }, { @@ -106206,7 +106280,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 4.57, "detail": "" }, { @@ -106219,7 +106293,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 4.27, "detail": "" }, { @@ -106232,7 +106306,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 3.75, "detail": "" }, { @@ -106243,9 +106317,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 3.44, "detail": "" }, { @@ -106256,9 +106330,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 3.46, "detail": "" }, { @@ -106269,9 +106343,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 3.04, "detail": "" }, { @@ -106282,9 +106356,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 4.25, "detail": "" }, { @@ -106292,12 +106366,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.73, "detail": "" }, { @@ -106310,7 +106384,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 2.63, "detail": "" }, { @@ -106318,12 +106392,12 @@ "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/cda55a8f-c8e9-4b2d-b1e5-b4e4d40792b8", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 2.75, "detail": "" }, { @@ -106336,7 +106410,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 2.74, "detail": "" }, { @@ -106349,7 +106423,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 2.5, "detail": "" }, { @@ -106357,12 +106431,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v4/networks/28636f17-adf6-41c8-a5d7-a71284a54698/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": 1.36, + "duration_ms": 2.54, "detail": "" }, { @@ -106370,12 +106444,12 @@ "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/28636f17-adf6-41c8-a5d7-a71284a54698/vnicprofiles/d933979d-6e6c-4c41-8208-d8e2d26b8105", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 3.34, "detail": "" }, { @@ -106388,7 +106462,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 2.88, "detail": "" }, { @@ -106399,9 +106473,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 3.13, "detail": "" }, { @@ -106414,7 +106488,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 3.22, "detail": "" }, { @@ -106427,7 +106501,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 4.56, "detail": "" }, { @@ -106440,7 +106514,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 3.98, "detail": "" }, { @@ -106451,9 +106525,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 3.35, "detail": "" }, { @@ -106466,7 +106540,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 3.2, "detail": "" }, { @@ -106477,9 +106551,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 3.02, "detail": "" }, { @@ -106487,12 +106561,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v4/jobs/f1ff32ac-30b7-4662-b057-faf3127876ac/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": 1.44, + "duration_ms": 4.25, "detail": "" }, { @@ -106500,12 +106574,12 @@ "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/f1ff32ac-30b7-4662-b057-faf3127876ac/steps/7369ce89-af3a-437f-adf0-b3261d266415", + "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": 1.24, + "duration_ms": 6.71, "detail": "" }, { @@ -106518,7 +106592,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.34, + "duration_ms": 12.83, "detail": "" }, { @@ -106531,7 +106605,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 4.82, "detail": "" }, { @@ -106544,7 +106618,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.69, + "duration_ms": 6.54, "detail": "" }, { @@ -106557,7 +106631,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 6.06, "detail": "" }, { @@ -106565,12 +106639,12 @@ "operation_id": "affinitylabels.update", "method": "PUT", "path_template": "/ovirt-engine/api/affinitylabels/{id}", - "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", + "path_resolved": "/ovirt-engine/api/affinitylabels/3e7a2d6a-8f71-4cb6-9c7a-cea93c76efd8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 9.95, "detail": "" }, { @@ -106578,12 +106652,12 @@ "operation_id": "affinitylabels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/affinitylabels/{id}", - "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", + "path_resolved": "/ovirt-engine/api/affinitylabels/a1b88c77-4084-4590-9ad4-ea74f58a0a49", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 13.41, "detail": "" }, { @@ -106596,7 +106670,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 8.66, "detail": "" }, { @@ -106609,7 +106683,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 8.82, "detail": "" }, { @@ -106622,7 +106696,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 6.72, "detail": "" }, { @@ -106630,12 +106704,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/5ec85176-ead8-4ba5-a3b1-32bc2ae3caf1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 6.51, "detail": "" }, { @@ -106643,12 +106717,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/bookmarks/019f1f3b-f70e-4f03-9abf-ce4ad5dd2e1a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 8.55, "detail": "" }, { @@ -106661,7 +106735,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 13.23, "detail": "" }, { @@ -106674,7 +106748,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 10.96, "detail": "" }, { @@ -106687,7 +106761,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.97, + "duration_ms": 8.37, "detail": "" }, { @@ -106695,12 +106769,12 @@ "operation_id": "clusterlevels.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/clusterlevels/b3dd014a-9580-4031-83c2-2674f9815840", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 6.59, "detail": "" }, { @@ -106708,12 +106782,12 @@ "operation_id": "clusterlevels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/clusterlevels/4b854478-40cd-4a5b-b497-c0261767c5ec", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 7.35, "detail": "" }, { @@ -106726,7 +106800,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 5.97, "detail": "" }, { @@ -106739,7 +106813,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.58, + "duration_ms": 6.71, "detail": "" }, { @@ -106752,7 +106826,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 7.09, "detail": "" }, { @@ -106760,12 +106834,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/38cbd71f-19e9-41b1-aa46-f6f72099c64b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 13.12, "detail": "" }, { @@ -106773,12 +106847,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/clusters/{id}", - "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/clusters/8815e14e-1556-4275-b538-2b2c5a570ba3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 11.53, "detail": "" }, { @@ -106791,7 +106865,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.1, + "duration_ms": 45.09, "detail": "" }, { @@ -106804,7 +106878,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.56, + "duration_ms": 15.83, "detail": "" }, { @@ -106817,7 +106891,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.51, + "duration_ms": 18.76, "detail": "" }, { @@ -106830,7 +106904,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.55, + "duration_ms": 101.22, "detail": "" }, { @@ -106843,7 +106917,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 23.37, "detail": "" }, { @@ -106856,7 +106930,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.59, + "duration_ms": 44.93, "detail": "" }, { @@ -106869,7 +106943,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 0.99, + "duration_ms": 14.2, "detail": "" }, { @@ -106877,12 +106951,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/fb85e650-c204-4725-8163-a0cea0852da2", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 14.69, "detail": "" }, { @@ -106890,12 +106964,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/datacenters/54f06936-cc0e-4423-9d17-3bb78d6e3eca", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.64, + "duration_ms": 6.7, "detail": "" }, { @@ -106908,7 +106982,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.65, + "duration_ms": 9.13, "detail": "" }, { @@ -106921,7 +106995,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 11.86, "detail": "" }, { @@ -106934,7 +107008,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.17, + "duration_ms": 14.02, "detail": "" }, { @@ -106947,7 +107021,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 13.36, "detail": "" }, { @@ -106955,12 +107029,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/c84a7d11-6dfe-48fb-a5e6-9abd34ffd745", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 11.22, "detail": "" }, { @@ -106968,12 +107042,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/disks/{id}", - "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/disks/c430ef73-ef17-4cc3-92aa-e29174b2cd8f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 21.98, "detail": "" }, { @@ -106986,7 +107060,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.65, + "duration_ms": 15.2, "detail": "" }, { @@ -106999,7 +107073,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.65, + "duration_ms": 11.58, "detail": "" }, { @@ -107012,7 +107086,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 10.1, "detail": "" }, { @@ -107025,7 +107099,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.61, + "duration_ms": 15.01, "detail": "" }, { @@ -107038,7 +107112,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.53, + "duration_ms": 7.42, "detail": "" }, { @@ -107051,7 +107125,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 4.89, "detail": "" }, { @@ -107064,7 +107138,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 0.98, + "duration_ms": 8.62, "detail": "" }, { @@ -107077,7 +107151,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.03, + "duration_ms": 6.17, "detail": "" }, { @@ -107090,7 +107164,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.94, + "duration_ms": 4.37, "detail": "" }, { @@ -107098,12 +107172,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/domains/{id}", - "path_resolved": "/ovirt-engine/api/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/domains/5d0a55ed-d71b-40cc-9960-93ac6cc2d659", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.89, + "duration_ms": 4.56, "detail": "" }, { @@ -107116,7 +107190,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 4.68, "detail": "" }, { @@ -107129,7 +107203,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.02, + "duration_ms": 4.39, "detail": "" }, { @@ -107137,12 +107211,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1115", + "path_resolved": "/ovirt-engine/api/events/58", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 8.95, "detail": "" }, { @@ -107150,12 +107224,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1115", + "path_resolved": "/ovirt-engine/api/events/58", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 5.11, "detail": "" }, { @@ -107163,12 +107237,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1115", + "path_resolved": "/ovirt-engine/api/events/686ab0a8-76ab-4fdb-ae64-6fcfa26602c6", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 0.95, + "duration_ms": 13.07, "detail": "" }, { @@ -107181,7 +107255,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 12.06, "detail": "" }, { @@ -107194,7 +107268,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.26, + "duration_ms": 10.9, "detail": "" }, { @@ -107207,7 +107281,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.92, + "duration_ms": 10.3, "detail": "" }, { @@ -107215,12 +107289,12 @@ "operation_id": "externalhostproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/824e4a06-3fc9-4190-a9f8-40a6fb8b9ead", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.09, + "duration_ms": 25.96, "detail": "" }, { @@ -107228,12 +107302,12 @@ "operation_id": "externalhostproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/externalhostproviders/18ef9d52-1c58-4cab-bb48-564547582ba2", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 6.34, "detail": "" }, { @@ -107246,7 +107320,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 6.24, "detail": "" }, { @@ -107259,7 +107333,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.63, + "duration_ms": 10.27, "detail": "" }, { @@ -107272,7 +107346,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.04, + "duration_ms": 6.85, "detail": "" }, { @@ -107280,12 +107354,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/32216942-5b93-4ccf-9173-f4542deaa8d3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 8.2, "detail": "" }, { @@ -107293,12 +107367,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/groups/{id}", - "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/groups/8ea71d8f-c540-4f81-934c-592cfdf2db9f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 3.4, "detail": "" }, { @@ -107311,7 +107385,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 6.18, "detail": "" }, { @@ -107322,9 +107396,9 @@ "path_resolved": "/ovirt-engine/api/hosts", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.87, + "duration_ms": 5.74, "detail": "" }, { @@ -107332,12 +107406,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/d04746e9-0558-4a00-933f-db10bc312dad", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 2.84, "detail": "" }, { @@ -107345,12 +107419,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/7253b489-1e87-4260-88ec-aaa1844bc61e", + "path_resolved": "/ovirt-engine/api/hosts/b6596e4e-0f05-406f-bca8-f9bca88f022b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 3.08, "detail": "" }, { @@ -107358,12 +107432,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/0db65f8a-431c-4678-ad37-7f1ce74403c8", + "path_resolved": "/ovirt-engine/api/hosts/05ac53d6-9969-4b05-9786-a3acea3bd9fe", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 6.62, "detail": "" }, { @@ -107371,12 +107445,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/hosts/856f28e8-0c37-4e4b-819c-3a147199c582/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": 2.94, + "duration_ms": 6.78, "detail": "" }, { @@ -107384,12 +107458,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/hosts/d4ae8107-b78f-4705-a4ea-ca784b614316/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.93, + "duration_ms": 8.28, "detail": "" }, { @@ -107397,12 +107471,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/hosts/0bf2f8b4-9372-49da-8167-2f2664f30053/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.58, + "duration_ms": 10.36, "detail": "" }, { @@ -107410,12 +107484,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/hosts/5f14dbc1-44fe-42ae-aa11-bd6b5cf7949a/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.45, + "duration_ms": 9.62, "detail": "" }, { @@ -107423,12 +107497,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/hosts/22d2e0dc-5a49-4fa3-8a2f-ad0016843d62/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": 8.18, + "duration_ms": 6.61, "detail": "" }, { @@ -107436,12 +107510,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/hosts/c2d151be-51e5-4a1f-98c3-ee6234f51abd/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.6, + "duration_ms": 6.75, "detail": "" }, { @@ -107449,12 +107523,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/hosts/1b3386c5-60c3-4e56-b3c3-87bb11daac56/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.72, + "duration_ms": 6.3, "detail": "" }, { @@ -107462,12 +107536,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/hosts/9e593475-9c05-47c2-8ef6-472684479a21/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.68, + "duration_ms": 5.57, "detail": "" }, { @@ -107475,12 +107549,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/hosts/0cb29714-99db-475b-8f7d-95e9a4cdd5b7/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": 5.32, + "duration_ms": 6.96, "detail": "" }, { @@ -107488,12 +107562,12 @@ "operation_id": "hosts.unregisteredstoragedomainsdiscover", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/hosts/3a906982-81a3-4f42-8677-af1cfc56cc13/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.77, + "duration_ms": 6.87, "detail": "" }, { @@ -107501,12 +107575,12 @@ "operation_id": "hosts.upgrade", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgrade", - "path_resolved": "/ovirt-engine/api/hosts/342fc9bb-91df-4595-9cdf-d42cc9e223b4/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": 4.95, + "duration_ms": 7.31, "detail": "" }, { @@ -107514,12 +107588,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/hosts/4c8e364c-a7ed-4f9a-8e1c-6ed35e877e6b/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": 2.19, + "duration_ms": 10.0, "detail": "" }, { @@ -107527,12 +107601,12 @@ "operation_id": "hosts.enrollcertificate", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{id}/enrollcertificate", - "path_resolved": "/ovirt-engine/api/hosts/0d7e5c28-53fb-4316-928d-14bc2e3a182a/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.05, + "duration_ms": 7.1, "detail": "" }, { @@ -107545,7 +107619,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 4.32, "detail": "" }, { @@ -107558,7 +107632,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.36, + "duration_ms": 3.9, "detail": "" }, { @@ -107571,7 +107645,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 3.06, "detail": "" }, { @@ -107579,12 +107653,12 @@ "operation_id": "icons.update", "method": "PUT", "path_template": "/ovirt-engine/api/icons/{id}", - "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/icons/95e9d5ed-42f3-4351-90a0-7f4482698f98", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.26, + "duration_ms": 5.29, "detail": "" }, { @@ -107592,12 +107666,12 @@ "operation_id": "icons.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/icons/{id}", - "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/icons/b8738bb9-553d-43f6-b626-63aeee35a7f4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 5.08, "detail": "" }, { @@ -107610,7 +107684,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.06, + "duration_ms": 4.94, "detail": "" }, { @@ -107623,7 +107697,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.23, + "duration_ms": 3.39, "detail": "" }, { @@ -107636,7 +107710,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 4.33, "detail": "" }, { @@ -107644,12 +107718,12 @@ "operation_id": "instancetypes.update", "method": "PUT", "path_template": "/ovirt-engine/api/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/instancetypes/5236b5b3-fe2b-45f7-9463-d9e19ef90c02", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 4.5, "detail": "" }, { @@ -107657,12 +107731,12 @@ "operation_id": "instancetypes.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/instancetypes/f276977f-f64e-4333-b1d9-339487848aae", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 4.2, "detail": "" }, { @@ -107675,7 +107749,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 4.42, "detail": "" }, { @@ -107688,7 +107762,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.13, + "duration_ms": 3.36, "detail": "" }, { @@ -107696,12 +107770,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0", + "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 6.34, "detail": "" }, { @@ -107709,12 +107783,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0", + "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.0, + "duration_ms": 4.63, "detail": "" }, { @@ -107722,12 +107796,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0", + "path_resolved": "/ovirt-engine/api/jobs/5f2e66b8-f0b3-4ce4-a450-1bc464e2c2db", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 2.76, "detail": "" }, { @@ -107740,7 +107814,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 3.27, "detail": "" }, { @@ -107753,7 +107827,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.33, + "duration_ms": 3.78, "detail": "" }, { @@ -107761,12 +107835,12 @@ "operation_id": "katelloerrata.get", "method": "GET", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/70b47d8a-0c3d-45b6-82de-2677c18532ec", + "path_resolved": "/ovirt-engine/api/katelloerrata/fb7c9646-efeb-485e-a955-c32837663bf7", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 3.43, "detail": "" }, { @@ -107774,12 +107848,12 @@ "operation_id": "katelloerrata.update", "method": "PUT", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/70b47d8a-0c3d-45b6-82de-2677c18532ec", + "path_resolved": "/ovirt-engine/api/katelloerrata/c7a64992-e67c-4a83-87ca-2c77da08424f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 5.76, "detail": "" }, { @@ -107787,12 +107861,12 @@ "operation_id": "katelloerrata.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/70b47d8a-0c3d-45b6-82de-2677c18532ec", + "path_resolved": "/ovirt-engine/api/katelloerrata/48af795c-f797-48c9-ab74-87bd009f1b83", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 4.09, "detail": "" }, { @@ -107805,7 +107879,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 4.83, "detail": "" }, { @@ -107818,7 +107892,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.38, + "duration_ms": 4.83, "detail": "" }, { @@ -107831,7 +107905,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 4.05, "detail": "" }, { @@ -107839,12 +107913,12 @@ "operation_id": "macpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/macpools/{id}", - "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/macpools/eb8f5ece-abe7-49c0-a95e-ac8924bd212a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 5.02, "detail": "" }, { @@ -107852,12 +107926,12 @@ "operation_id": "macpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/macpools/{id}", - "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/macpools/b03f458e-b921-45a9-b5de-de0b149dfa20", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.18, + "duration_ms": 3.12, "detail": "" }, { @@ -107870,7 +107944,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 2.79, "detail": "" }, { @@ -107883,7 +107957,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.41, + "duration_ms": 6.16, "detail": "" }, { @@ -107891,12 +107965,12 @@ "operation_id": "networkfilters.get", "method": "GET", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/35e0477e-56f1-42c6-bf7a-dc303e43664f", + "path_resolved": "/ovirt-engine/api/networkfilters/d1f6a031-77b9-4097-a9d0-574bbdb29d4a", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 3.03, "detail": "" }, { @@ -107904,12 +107978,12 @@ "operation_id": "networkfilters.update", "method": "PUT", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/35e0477e-56f1-42c6-bf7a-dc303e43664f", + "path_resolved": "/ovirt-engine/api/networkfilters/5d291c23-84f6-4ff7-8ead-07cc15a0c96b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 3.65, "detail": "" }, { @@ -107917,12 +107991,12 @@ "operation_id": "networkfilters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/35e0477e-56f1-42c6-bf7a-dc303e43664f", + "path_resolved": "/ovirt-engine/api/networkfilters/37f26c67-1aa2-4046-9041-9c2847fa5d21", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.82, "detail": "" }, { @@ -107935,7 +108009,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 4.17, "detail": "" }, { @@ -107948,7 +108022,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.98, + "duration_ms": 4.73, "detail": "" }, { @@ -107956,12 +108030,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 6.54, "detail": "" }, { @@ -107969,12 +108043,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/networks/b4dbeb52-782d-4d97-9f0f-623a2b265326", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.62, + "duration_ms": 5.8, "detail": "" }, { @@ -107982,12 +108056,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/networks/d5a11363-1466-4bdb-8705-c102e34424c9", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.44, + "duration_ms": 6.96, "detail": "" }, { @@ -108000,7 +108074,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.93, + "duration_ms": 3.4, "detail": "" }, { @@ -108013,7 +108087,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.68, + "duration_ms": 3.8, "detail": "" }, { @@ -108026,7 +108100,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 3.13, "detail": "" }, { @@ -108034,12 +108108,12 @@ "operation_id": "openstackimageproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/8151afdd-1c8b-4c9d-9c09-65a2a3fdd7c4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 4.21, "detail": "" }, { @@ -108047,12 +108121,12 @@ "operation_id": "openstackimageproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/openstackimageproviders/40f902ad-f5cf-4a53-9ba7-6b2715919ad7", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 4.0, "detail": "" }, { @@ -108065,7 +108139,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.09, + "duration_ms": 3.13, "detail": "" }, { @@ -108078,7 +108152,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.39, + "duration_ms": 6.22, "detail": "" }, { @@ -108091,7 +108165,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 4.81, "detail": "" }, { @@ -108099,12 +108173,12 @@ "operation_id": "openstacknetworkproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/108f9765-6f70-4a02-b39e-44266877b897", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 7.45, "detail": "" }, { @@ -108112,12 +108186,12 @@ "operation_id": "openstacknetworkproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/ce8501dc-dfee-490a-a4f9-d90588fd2452", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.65, + "duration_ms": 3.62, "detail": "" }, { @@ -108130,7 +108204,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 3.38, "detail": "" }, { @@ -108143,7 +108217,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.31, + "duration_ms": 3.36, "detail": "" }, { @@ -108156,7 +108230,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.19, + "duration_ms": 4.01, "detail": "" }, { @@ -108164,12 +108238,12 @@ "operation_id": "openstackvolumeproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/edecd1ce-13de-46b4-9e3f-f27d83a9ea97", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.71, + "duration_ms": 4.37, "detail": "" }, { @@ -108177,12 +108251,12 @@ "operation_id": "openstackvolumeproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/aa76cd49-e0a6-4506-a2e2-3ac92c1cf0d4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.01, + "duration_ms": 3.8, "detail": "" }, { @@ -108195,7 +108269,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.96, + "duration_ms": 3.16, "detail": "" }, { @@ -108208,7 +108282,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.67, + "duration_ms": 3.75, "detail": "" }, { @@ -108216,12 +108290,12 @@ "operation_id": "operatingsystems.get", "method": "GET", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/d0f69725-a1cc-4164-9a97-d52faf6e6060", + "path_resolved": "/ovirt-engine/api/operatingsystems/82dcfded-1f35-43d6-804f-2120b481d1b8", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 3.44, "detail": "" }, { @@ -108229,12 +108303,12 @@ "operation_id": "operatingsystems.update", "method": "PUT", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/d0f69725-a1cc-4164-9a97-d52faf6e6060", + "path_resolved": "/ovirt-engine/api/operatingsystems/14697bc7-4c29-4035-985b-00b630d52d86", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.95, + "duration_ms": 4.98, "detail": "" }, { @@ -108242,12 +108316,12 @@ "operation_id": "operatingsystems.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/d0f69725-a1cc-4164-9a97-d52faf6e6060", + "path_resolved": "/ovirt-engine/api/operatingsystems/9bafa2da-d4a5-4536-9b90-55754a7b83b1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 4.17, "detail": "" }, { @@ -108260,7 +108334,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 4.21, "detail": "" }, { @@ -108273,7 +108347,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.27, + "duration_ms": 3.73, "detail": "" }, { @@ -108286,7 +108360,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 4.1, "detail": "" }, { @@ -108299,7 +108373,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 3.07, "detail": "" }, { @@ -108307,12 +108381,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/permissions/{id}", - "path_resolved": "/ovirt-engine/api/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/permissions/44090a41-323c-472e-b74f-9b46c77f82a4", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.02, + "duration_ms": 3.73, "detail": "" }, { @@ -108325,7 +108399,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 7.99, "detail": "" }, { @@ -108338,7 +108412,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.62, + "duration_ms": 18.64, "detail": "" }, { @@ -108351,7 +108425,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 8.58, "detail": "" }, { @@ -108359,12 +108433,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/f57c3357-a382-424a-a573-003ba0a1227c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 32.07, "detail": "" }, { @@ -108372,12 +108446,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/roles/{id}", - "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/roles/a1cfc90b-642a-4693-a8e5-5a9bf653442b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 4.55, "detail": "" }, { @@ -108390,7 +108464,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 3.35, "detail": "" }, { @@ -108403,7 +108477,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.42, + "duration_ms": 6.78, "detail": "" }, { @@ -108416,7 +108490,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 5.56, "detail": "" }, { @@ -108424,12 +108498,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/ca8fe370-31d7-40eb-b8f6-c17dba4f6a09", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 8.24, "detail": "" }, { @@ -108437,12 +108511,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/schedulingpolicies/ac2bf0d6-4e80-44ce-9643-25fcbb920672", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 10.48, "detail": "" }, { @@ -108455,7 +108529,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 5.87, "detail": "" }, { @@ -108468,7 +108542,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.38, + "duration_ms": 7.23, "detail": "" }, { @@ -108481,7 +108555,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.07, + "duration_ms": 5.17, "detail": "" }, { @@ -108489,12 +108563,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/fc4d4ff2-5ca7-41d9-90f6-9456a9b9d4c4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 6.39, "detail": "" }, { @@ -108502,12 +108576,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/b361ecdb-3ee3-4072-a65c-7a588d496533", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 7.02, "detail": "" }, { @@ -108520,7 +108594,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 9.55, "detail": "" }, { @@ -108533,7 +108607,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.68, + "duration_ms": 9.68, "detail": "" }, { @@ -108541,12 +108615,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/1b3da01d-0fc6-442a-a298-50fdfec15b23", + "path_resolved": "/ovirt-engine/api/storageconnections/c2ef941a-101f-4d94-aafd-e5a8b50c3b07", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 5.97, "detail": "" }, { @@ -108554,12 +108628,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/1b3da01d-0fc6-442a-a298-50fdfec15b23", + "path_resolved": "/ovirt-engine/api/storageconnections/7a6c292b-a4c9-4221-b53d-b1c2e65ffbb0", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.96, "detail": "" }, { @@ -108567,12 +108641,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/1b3da01d-0fc6-442a-a298-50fdfec15b23", + "path_resolved": "/ovirt-engine/api/storageconnections/761610f5-b609-490d-8145-c6f14533d690", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.71, + "duration_ms": 8.56, "detail": "" }, { @@ -108585,7 +108659,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 6.25, "detail": "" }, { @@ -108598,7 +108672,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.87, + "duration_ms": 7.79, "detail": "" }, { @@ -108611,7 +108685,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.21, + "duration_ms": 5.65, "detail": "" }, { @@ -108619,12 +108693,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/448fed80-9df8-42b7-92eb-9cb5491e6d13", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.27, + "duration_ms": 8.58, "detail": "" }, { @@ -108632,12 +108706,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/storagedomains/ebc2ca56-754f-4825-b219-10ff9461f9c3", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 8.34, "detail": "" }, { @@ -108650,7 +108724,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.92, + "duration_ms": 9.88, "detail": "" }, { @@ -108663,7 +108737,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.79, + "duration_ms": 9.53, "detail": "" }, { @@ -108676,7 +108750,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.95, + "duration_ms": 8.7, "detail": "" }, { @@ -108689,7 +108763,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 5.88, "detail": "" }, { @@ -108702,7 +108776,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.68, + "duration_ms": 5.16, "detail": "" }, { @@ -108715,7 +108789,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.51, "detail": "" }, { @@ -108723,12 +108797,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/703c3eb1-dbe2-476e-9603-5a3227cf3b1f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.94, + "duration_ms": 6.78, "detail": "" }, { @@ -108736,12 +108810,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/tags/{id}", - "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/tags/4318fd00-5d6c-48c6-b980-4456e8754609", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 6.55, "detail": "" }, { @@ -108754,7 +108828,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 6.96, "detail": "" }, { @@ -108767,7 +108841,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 5.14, "detail": "" }, { @@ -108780,7 +108854,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 6.7, "detail": "" }, { @@ -108788,12 +108862,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/ca7e7cac-1f14-46f9-99e9-d781e5a2da79", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 5.27, "detail": "" }, { @@ -108801,12 +108875,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/templates/{id}", - "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/templates/3f2ef320-079b-4a8d-be7e-694964dad7f0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 6.85, "detail": "" }, { @@ -108819,7 +108893,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.9, + "duration_ms": 8.11, "detail": "" }, { @@ -108832,7 +108906,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 5.64, "detail": "" }, { @@ -108845,7 +108919,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.09, + "duration_ms": 4.0, "detail": "" }, { @@ -108858,7 +108932,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 4.41, "detail": "" }, { @@ -108871,7 +108945,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 3.6, "detail": "" }, { @@ -108879,12 +108953,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/users/{id}", - "path_resolved": "/ovirt-engine/api/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/users/186d4224-0ef5-43c8-92f8-ffd6060600b1", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 3.6, "detail": "" }, { @@ -108897,7 +108971,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 4.32, "detail": "" }, { @@ -108910,7 +108984,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 4.72, "detail": "" }, { @@ -108923,7 +108997,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 4.01, "detail": "" }, { @@ -108931,12 +109005,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/47e01f90-a672-400e-942a-ffd31eba31ec", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 3.93, "detail": "" }, { @@ -108944,12 +109018,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/vmpools/b58664bd-fba3-43b6-bbd9-f3c3cf9fc0fc", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 3.87, "detail": "" }, { @@ -108962,7 +109036,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 3.76, "detail": "" }, { @@ -108973,9 +109047,9 @@ "path_resolved": "/ovirt-engine/api/vms", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 10.27, "detail": "" }, { @@ -108983,12 +109057,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/602c59b5-7ced-4d91-abee-dba571b8a224", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 3.62, "detail": "" }, { @@ -108996,12 +109070,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/afbe2cdf-f63e-45dc-b51e-22d44def3f64", + "path_resolved": "/ovirt-engine/api/vms/7e723772-ee06-4e19-9381-041ba72abe5e", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 5.13, "detail": "" }, { @@ -109009,12 +109083,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/e5ef7648-1500-40fa-a0f5-d9b065d7f406", + "path_resolved": "/ovirt-engine/api/vms/ccc4d06b-0002-410d-adab-b546ed3b4c01", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 6.07, "detail": "" }, { @@ -109022,12 +109096,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/vms/7c1fc85d-e82e-448a-a5e3-8f6a6cb9c2af/start", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.18, + "duration_ms": 6.24, "detail": "" }, { @@ -109035,12 +109109,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/vms/13753901-7cec-48c2-a352-4db3e0cede65/stop", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.13, + "duration_ms": 6.25, "detail": "" }, { @@ -109048,12 +109122,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/vms/d697cd0b-86fc-4983-a5f6-dd8f04f39698/shutdown", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.1, + "duration_ms": 7.73, "detail": "" }, { @@ -109061,12 +109135,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/vms/5816eb8e-f57f-4f93-8d8a-520fdde9fa18/reboot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.33, + "duration_ms": 6.31, "detail": "" }, { @@ -109074,12 +109148,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/vms/54b9b73f-491b-4db1-a29f-165421a870e8/suspend", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.3, + "duration_ms": 5.48, "detail": "" }, { @@ -109087,12 +109161,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/vms/579b579a-bd99-48c1-9b3f-5e33d1f89bcd/migrate", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.26, + "duration_ms": 5.24, "detail": "" }, { @@ -109100,12 +109174,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/vms/68654423-20e1-424f-9627-9a7955667912/cancelmigration", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.23, + "duration_ms": 5.48, "detail": "" }, { @@ -109113,12 +109187,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/vms/3c39691e-5206-4fae-b3e5-81095e600e6c/clone", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.27, + "duration_ms": 9.99, "detail": "" }, { @@ -109126,12 +109200,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/vms/8914d633-5eb0-458d-a1d5-dc4a3499caa8/export", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.27, + "duration_ms": 4.82, "detail": "" }, { @@ -109139,12 +109213,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/vms/5e6eccf2-720d-4b75-be4c-bc364b384c05/detach", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.33, + "duration_ms": 4.72, "detail": "" }, { @@ -109152,12 +109226,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/vms/674ec0a6-17a0-43ba-9ba4-c1beb86e0197/screenthumbnail", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.29, + "duration_ms": 4.6, "detail": "" }, { @@ -109165,12 +109239,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/vms/19e92a0a-1f24-4ac8-9e4a-f336d1a737d8/ticket", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.26, + "duration_ms": 6.7, "detail": "" }, { @@ -109178,12 +109252,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/vms/06b9927a-5efb-47ca-8ce0-e9f706b9d263/logon", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.28, + "duration_ms": 6.16, "detail": "" }, { @@ -109191,12 +109265,12 @@ "operation_id": "vms.maintenance", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/vms/2abe6180-5c33-4e1e-8624-9164c392962a/maintenance", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.28, + "duration_ms": 5.23, "detail": "" }, { @@ -109204,12 +109278,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/vms/7f8500bf-ec57-4e16-83e4-53aad557fa3d/preview_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.43, + "duration_ms": 7.68, "detail": "" }, { @@ -109217,12 +109291,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/vms/2e589024-fb9c-42e2-bdb4-6744da9716e8/commit_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.26, + "duration_ms": 8.49, "detail": "" }, { @@ -109230,12 +109304,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/vms/414642ea-c619-464b-a1fd-9550973caf1f/undo_snapshot", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.63, + "duration_ms": 10.29, "detail": "" }, { @@ -109243,12 +109317,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/vms/de5b9dee-f96e-4887-a9ad-c30cc8c16852/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.37, + "duration_ms": 9.97, "detail": "" }, { @@ -109256,12 +109330,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/vms/2df9cd1d-4d45-4513-a7e5-1e0297a20f74/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.25, + "duration_ms": 11.24, "detail": "" }, { @@ -109274,7 +109348,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 31.46, "detail": "" }, { @@ -109285,9 +109359,9 @@ "path_resolved": "/ovirt-engine/api/vnicprofiles", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.85, + "duration_ms": 64.9, "detail": "" }, { @@ -109295,12 +109369,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/2cbb8134-3689-49da-865c-6389c7133c0c", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.74, + "duration_ms": 13.02, "detail": "" }, { @@ -109308,12 +109382,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/6b1d9fa7-d8d8-4ade-9822-ae4682d88c96", + "path_resolved": "/ovirt-engine/api/vnicprofiles/b617b5e1-1ee2-4a0e-8525-c5a3317bf19b", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 9.98, "detail": "" }, { @@ -109321,12 +109395,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/3cd96980-ec23-4b51-93ec-1f76e3b809a8", + "path_resolved": "/ovirt-engine/api/vnicprofiles/8b014539-0755-4190-8c3b-a9eb0bef1a33", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 14.4, "detail": "" }, { @@ -109339,7 +109413,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 8.03, "detail": "" }, { @@ -109352,7 +109426,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 15.57, "detail": "" }, { @@ -109360,12 +109434,12 @@ "operation_id": "imagetransfers.get", "method": "GET", "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/7be3e701-024b-4acd-95f6-9d441fb56ff1", + "path_resolved": "/ovirt-engine/api/imageTransfers/2464359a-780c-45f8-b548-bd1c8a5ea664", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 4.58, "detail": "" }, { @@ -109373,12 +109447,12 @@ "operation_id": "imagetransfers.update", "method": "PUT", "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/7be3e701-024b-4acd-95f6-9d441fb56ff1", + "path_resolved": "/ovirt-engine/api/imageTransfers/cf3cf7f8-c304-4c9a-a156-dda644942d98", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.13, + "duration_ms": 12.0, "detail": "" }, { @@ -109386,12 +109460,12 @@ "operation_id": "imagetransfers.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/7be3e701-024b-4acd-95f6-9d441fb56ff1", + "path_resolved": "/ovirt-engine/api/imageTransfers/d9fe3d08-3506-4e56-9bbb-de21e1a553fe", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 8.33, "detail": "" }, { @@ -109404,7 +109478,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 7.86, "detail": "" }, { @@ -109417,7 +109491,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.36, + "duration_ms": 6.28, "detail": "" }, { @@ -109430,7 +109504,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 9.84, "detail": "" }, { @@ -109438,12 +109512,12 @@ "operation_id": "options.update", "method": "PUT", "path_template": "/ovirt-engine/api/options/{id}", - "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7", + "path_resolved": "/ovirt-engine/api/options/40c7fc49-d10c-4183-9dbf-4ed6d4493241", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 6.18, "detail": "" }, { @@ -109451,12 +109525,12 @@ "operation_id": "options.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/options/{id}", - "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7", + "path_resolved": "/ovirt-engine/api/options/de7af5f6-219c-4407-bfd6-403feefcd7ab", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 4.65, "detail": "" }, { @@ -109464,12 +109538,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/c7f6bfc1-2b85-44a0-a397-6cc9a4996b47/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.41, + "duration_ms": 6.0, "detail": "" }, { @@ -109477,12 +109551,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/007e6c8e-c62e-4624-accb-88c3e1414fed/diskattachments", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.06, + "duration_ms": 8.29, "detail": "" }, { @@ -109490,12 +109564,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/e7f396e4-3c67-4cfe-8ab1-f40daa903242/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.38, + "duration_ms": 4.53, "detail": "" }, { @@ -109503,12 +109577,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/ad22f4a0-620d-442a-b690-fb94ac65c86a/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.15, + "duration_ms": 6.17, "detail": "" }, { @@ -109516,12 +109590,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/1a708c3d-d04d-4f03-90b9-d163979fdd7b/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.25, + "duration_ms": 8.62, "detail": "" }, { @@ -109529,12 +109603,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/be7eba6b-a1f8-4e9c-a4ef-51fa29089134/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.22, + "duration_ms": 4.12, "detail": "" }, { @@ -109542,12 +109616,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/898b5118-1054-45ec-b6ee-1caa35db8089/nics", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.65, + "duration_ms": 7.08, "detail": "" }, { @@ -109555,12 +109629,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/fdf45b45-eb0d-477b-ae6c-e25bc11ed984/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.07, + "duration_ms": 7.55, "detail": "" }, { @@ -109568,12 +109642,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/2bddd10c-2ceb-4030-a343-26417642ec5e/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/130d5d36-af29-45a1-ab06-c686315c18a3", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 6.86, "detail": "" }, { @@ -109581,12 +109655,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/82930f8c-14fd-48d6-ba52-b75e2226a94b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.24, + "duration_ms": 10.88, "detail": "" }, { @@ -109594,12 +109668,12 @@ "operation_id": "nics.activate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/activate", - "path_resolved": "/ovirt-engine/api/vms/16f418cb-70c0-405c-83d0-9a56bff864e2/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.78, + "duration_ms": 9.56, "detail": "" }, { @@ -109607,12 +109681,12 @@ "operation_id": "nics.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/vms/0d184b3c-7e9a-43ac-9753-cdd28884e81f/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.67, + "duration_ms": 11.82, "detail": "" }, { @@ -109620,12 +109694,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/dacb12a4-8750-462a-87b0-9272c08120e0/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.57, + "duration_ms": 11.81, "detail": "" }, { @@ -109633,12 +109707,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/e57343fb-1c02-4f71-bedb-5eda4c8bc6de/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.68, + "duration_ms": 6.86, "detail": "" }, { @@ -109646,12 +109720,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/7fd78ebf-112a-460c-ba24-06d95f106be2/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.41, + "duration_ms": 5.55, "detail": "" }, { @@ -109659,12 +109733,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/e25ed901-780a-4abb-8f0e-406633bbd633/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.69, + "duration_ms": 5.62, "detail": "" }, { @@ -109672,12 +109746,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/10da6a75-7144-4cbc-a67a-3b21ba25940c/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.47, + "duration_ms": 15.51, "detail": "" }, { @@ -109685,12 +109759,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/e18401f0-cbdd-437f-9753-028cf497ab14/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.43, + "duration_ms": 15.74, "detail": "" }, { @@ -109698,12 +109772,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/1fc2faf4-857c-4c80-ad38-b099d1a7cc7e/snapshots", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.53, + "duration_ms": 25.89, "detail": "" }, { @@ -109711,12 +109785,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/ff632b49-57d3-44a0-be6d-f14166c36a35/snapshots/1735d9ea-c35e-404c-a6c9-57640d5e7f48", + "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": 2.56, + "duration_ms": 6.7, "detail": "" }, { @@ -109724,12 +109798,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/4c0db940-b16a-46cf-867b-cbff48041680/snapshots/68dcf624-f5cb-42a2-a9d8-5ea3b849800d", + "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": 1.23, + "duration_ms": 6.16, "detail": "" }, { @@ -109737,12 +109811,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/04f6d46c-e5cc-403d-b134-dd7e1e0eea44/snapshots/3d135f43-c134-4d21-adb0-46f907b5aa9a", + "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": 1.29, + "duration_ms": 46.58, "detail": "" }, { @@ -109750,12 +109824,12 @@ "operation_id": "snapshots.restore", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}/restore", - "path_resolved": "/ovirt-engine/api/vms/9d4a3b13-f662-4b12-8666-333ad57c0e18/snapshots/3876d326-cddc-4fb0-8a2f-afec4bb0c384/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": 1.84, + "duration_ms": 7.45, "detail": "" }, { @@ -109763,12 +109837,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/90411053-23de-4106-85cd-19e77a47a53a/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.38, + "duration_ms": 5.26, "detail": "" }, { @@ -109776,12 +109850,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/6e5e44ca-ec16-497c-87c6-d425f423caae/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": 1.93, + "duration_ms": 7.44, "detail": "" }, { @@ -109789,12 +109863,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/03bae18f-48fa-4ae1-b92c-667100b9ce7d/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.04, + "duration_ms": 6.96, "detail": "" }, { @@ -109802,12 +109876,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/25523535-8159-4857-83a6-5daae8aab370/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.12, + "duration_ms": 8.1, "detail": "" }, { @@ -109815,12 +109889,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/3a544d3f-1513-4d3c-9f7b-3f58cff0275e/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.04, + "duration_ms": 4.96, "detail": "" }, { @@ -109828,12 +109902,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/0de008e8-5991-4527-80a1-c7eca2eeb4da/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": 1.46, + "duration_ms": 6.78, "detail": "" }, { @@ -109841,12 +109915,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/bb36265c-1e76-413d-a4fb-4b33b2c2b425/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": 1.47, + "duration_ms": 8.04, "detail": "" }, { @@ -109854,12 +109928,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/576c9449-2fea-41dc-9a31-0b2744bcff4c/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.17, + "duration_ms": 6.15, "detail": "" }, { @@ -109867,12 +109941,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/8bf578d5-45af-4a72-afe0-1b06fdbb6493/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.29, + "duration_ms": 6.92, "detail": "" }, { @@ -109880,12 +109954,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/6f67ca4e-5e3b-4c61-82a3-eae67afae02b/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.11, + "duration_ms": 5.47, "detail": "" }, { @@ -109893,12 +109967,12 @@ "operation_id": "graphicsconsoles.list", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/21a3f433-c2b5-4dc6-abcf-f0a242bded14/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.2, + "duration_ms": 5.14, "detail": "" }, { @@ -109906,12 +109980,12 @@ "operation_id": "graphicsconsoles.add", "method": "POST", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/f2928853-359e-4cb4-aefa-03420c30be06/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": 1.43, + "duration_ms": 5.8, "detail": "" }, { @@ -109919,12 +109993,12 @@ "operation_id": "graphicsconsoles.get", "method": "GET", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/2f4027fe-529d-469e-96e1-97bfedd8ce6b/graphicsconsoles/e16a66e6-2331-40cf-831c-edb8b31cc04b", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/bf500a40-5322-44fb-a545-0c70ac089bb3", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 6.3, "detail": "" }, { @@ -109932,12 +110006,12 @@ "operation_id": "graphicsconsoles.update", "method": "PUT", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/a297c5bc-cfef-4466-ae7b-193b324c2e44/graphicsconsoles/e16a66e6-2331-40cf-831c-edb8b31cc04b", + "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": 1.53, + "duration_ms": 4.03, "detail": "" }, { @@ -109945,12 +110019,12 @@ "operation_id": "graphicsconsoles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/202bd676-28d1-4ed8-9fad-6f79139318e0/graphicsconsoles/e16a66e6-2331-40cf-831c-edb8b31cc04b", + "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": 1.14, + "duration_ms": 3.85, "detail": "" }, { @@ -109958,12 +110032,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/6df71776-87fb-4620-b1a5-70d4c76b5dd5/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.41, + "duration_ms": 3.42, "detail": "" }, { @@ -109971,12 +110045,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/0fe40490-4375-47f4-a61a-0567457baeda/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.55, + "duration_ms": 3.52, "detail": "" }, { @@ -109984,12 +110058,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/4fcc2a23-19c6-4b12-a9a5-3476e537b651/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.16, + "duration_ms": 4.96, "detail": "" }, { @@ -109997,12 +110071,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/43e871e5-c020-49d3-953c-e374dd4cf16a/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.32, + "duration_ms": 8.19, "detail": "" }, { @@ -110010,12 +110084,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/e86de030-ec9b-471e-b248-f5350b173d98/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.1, + "duration_ms": 5.72, "detail": "" }, { @@ -110023,12 +110097,12 @@ "operation_id": "nics.update", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/update", - "path_resolved": "/ovirt-engine/api/hosts/128273bd-a75d-4951-bd11-9fd893ae8ab8/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.7, + "duration_ms": 5.49, "detail": "" }, { @@ -110036,12 +110110,12 @@ "operation_id": "nics.attach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/attach", - "path_resolved": "/ovirt-engine/api/hosts/0a1448c0-4411-4595-8b04-2f97741286b9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 1.73, + "duration_ms": 4.27, "detail": "" }, { @@ -110049,12 +110123,12 @@ "operation_id": "nics.detach", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}/detach", - "path_resolved": "/ovirt-engine/api/hosts/522058c7-055f-4d69-81f5-b4761f4896f8/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.78, + "duration_ms": 5.43, "detail": "" }, { @@ -110062,12 +110136,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/dfc3b6db-b221-44af-84ec-3524236ba795/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.37, + "duration_ms": 4.98, "detail": "" }, { @@ -110075,12 +110149,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/ae26512d-4e8d-492d-8f8d-41892d3bf75d/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.39, + "duration_ms": 6.86, "detail": "" }, { @@ -110088,12 +110162,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ec9e83b9-3312-468f-bcbb-0fab0dd9148f/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.12, + "duration_ms": 7.24, "detail": "" }, { @@ -110101,12 +110175,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/7de1cad6-92f0-4f69-86cc-8c00c9edc6b0/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.22, + "duration_ms": 6.18, "detail": "" }, { @@ -110114,12 +110188,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/87a65ce5-3531-48da-9ca5-211b8a8a367f/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.61, + "duration_ms": 5.97, "detail": "" }, { @@ -110127,12 +110201,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/967d620e-d709-4df7-8c18-ffe8cc45e5d6/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.18, + "duration_ms": 6.32, "detail": "" }, { @@ -110140,12 +110214,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/3440b55f-6d0f-439b-9faa-cec4d5f4be4f/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.35, + "duration_ms": 8.85, "detail": "" }, { @@ -110153,12 +110227,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/fe024631-f221-45f5-82a1-8b863868d528/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.87, + "duration_ms": 5.62, "detail": "" }, { @@ -110166,12 +110240,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/264b87a2-7539-4560-85e7-2f39f67f1141/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.25, + "duration_ms": 5.42, "detail": "" }, { @@ -110179,12 +110253,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ef0a2628-1449-4cd4-ba8b-acacefe053b2/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.11, + "duration_ms": 3.79, "detail": "" }, { @@ -110192,12 +110266,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/eddb34c1-097a-4d55-9b66-9d580a6fda36/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.18, + "duration_ms": 3.74, "detail": "" }, { @@ -110205,12 +110279,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/1ae8ebb2-dc88-44b0-9edb-6d61cf79d3da/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.42, + "duration_ms": 6.25, "detail": "" }, { @@ -110218,12 +110292,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/8414e7ee-9179-487d-96de-fbdbd1df6ba1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 4.79, "detail": "" }, { @@ -110231,12 +110305,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/054d62ad-4e72-462a-8589-afe68227af82/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.61, + "duration_ms": 9.0, "detail": "" }, { @@ -110244,12 +110318,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/c0886fc9-d807-41cb-aba5-34ca0dd29870/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.09, + "duration_ms": 9.74, "detail": "" }, { @@ -110262,7 +110336,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 13.14, "detail": "" }, { @@ -110273,9 +110347,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.73, + "duration_ms": 15.19, "detail": "" }, { @@ -110283,12 +110357,12 @@ "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/bafb95b7-587c-42e0-bfac-bc462646bd68", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a091b768-2a69-4ac2-9cfb-d7931810e6f0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 13.44, "detail": "" }, { @@ -110296,12 +110370,12 @@ "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/0613284c-309b-4cbe-a7d0-23afc59141a1", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/115162c4-f5d5-4729-8ba1-dcc66eafa224", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 8.36, "detail": "" }, { @@ -110309,12 +110383,12 @@ "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/c5133371-ab6c-4b44-a7b5-6c124dd8cd07", + "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": 1.1, + "duration_ms": 13.98, "detail": "" }, { @@ -110325,9 +110399,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.1, + "duration_ms": 21.35, "detail": "" }, { @@ -110338,9 +110412,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 1.7, + "duration_ms": 17.78, "detail": "" }, { @@ -110348,12 +110422,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.08, + "duration_ms": 18.96, "detail": "" }, { @@ -110361,12 +110435,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "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": 1.07, + "duration_ms": 25.57, "detail": "" }, { @@ -110374,12 +110448,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "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": 1.02, + "duration_ms": 8.82, "detail": "" }, { @@ -110392,7 +110466,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 13.75, "detail": "" }, { @@ -110405,7 +110479,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.66, + "duration_ms": 13.77, "detail": "" }, { @@ -110418,7 +110492,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 8.62, "detail": "" }, { @@ -110431,7 +110505,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.11, + "duration_ms": 9.28, "detail": "" }, { @@ -110439,12 +110513,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.08, + "duration_ms": 11.05, "detail": "" }, { @@ -110457,7 +110531,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 13.3, "detail": "" }, { @@ -110470,7 +110544,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 1.73, + "duration_ms": 8.9, "detail": "" }, { @@ -110481,9 +110555,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 6.06, "detail": "" }, { @@ -110491,12 +110565,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.17, + "duration_ms": 6.94, "detail": "" }, { @@ -110504,12 +110578,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 2.24, + "duration_ms": 4.76, "detail": "" }, { @@ -110522,7 +110596,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.75, + "duration_ms": 9.62, "detail": "" }, { @@ -110535,7 +110609,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.84, + "duration_ms": 9.54, "detail": "" }, { @@ -110546,9 +110620,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 5.41, "detail": "" }, { @@ -110559,9 +110633,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.08, + "duration_ms": 7.65, "detail": "" }, { @@ -110572,9 +110646,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 6.16, "detail": "" }, { @@ -110582,12 +110656,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 1.54, + "duration_ms": 4.58, "detail": "" }, { @@ -110595,12 +110669,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/10ae932a-dbd7-4163-92a6-b6fd15b573b3", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 15.55, "detail": "" }, { @@ -110611,9 +110685,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.17, + "duration_ms": 13.59, "detail": "" }, { @@ -110624,9 +110698,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.19, + "duration_ms": 6.11, "detail": "" }, { @@ -110634,12 +110708,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.12, + "duration_ms": 4.97, "detail": "" }, { @@ -110647,12 +110721,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "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": 1.06, + "duration_ms": 5.92, "detail": "" }, { @@ -110660,12 +110734,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/6e4d0497-5aae-4e1b-9fda-205474045125", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.05, + "duration_ms": 7.85, "detail": "" }, { @@ -110678,7 +110752,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 7.06, "detail": "" }, { @@ -110691,7 +110765,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.41, + "duration_ms": 16.66, "detail": "" }, { @@ -110699,12 +110773,12 @@ "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/2a736278-65ae-498d-863e-3f4d0ec44fbc", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.96, + "duration_ms": 7.35, "detail": "" }, { @@ -110712,12 +110786,12 @@ "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/2a736278-65ae-498d-863e-3f4d0ec44fbc", + "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": 2.11, + "duration_ms": 17.62, "detail": "" }, { @@ -110725,12 +110799,12 @@ "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/2a736278-65ae-498d-863e-3f4d0ec44fbc", + "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": 1.6, + "duration_ms": 6.39, "detail": "" }, { @@ -110743,7 +110817,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 6.16, "detail": "" }, { @@ -110756,7 +110830,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 6.91, "detail": "" }, { @@ -110769,7 +110843,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 6.56, "detail": "" }, { @@ -110782,7 +110856,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 10.23, "detail": "" }, { @@ -110790,12 +110864,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.21, + "duration_ms": 5.99, "detail": "" }, { @@ -110803,12 +110877,12 @@ "operation_id": "vnicprofiles.list", "method": "GET", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/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.4, + "duration_ms": 5.71, "detail": "" }, { @@ -110816,12 +110890,12 @@ "operation_id": "vnicprofiles.add", "method": "POST", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/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.54, + "duration_ms": 7.61, "detail": "" }, { @@ -110829,12 +110903,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/vnicprofiles/ae7373a5-29f2-4c3c-9a14-e28ff0a129d2", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 6.33, "detail": "" }, { @@ -110842,12 +110916,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/vnicprofiles/b8d7552c-d417-443e-bbe7-6824765b3304", + "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": 1.5, + "duration_ms": 5.17, "detail": "" }, { @@ -110855,12 +110929,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/vnicprofiles/751f40f1-2e0e-41ba-a8d5-27f59457cea3", + "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": 1.28, + "duration_ms": 5.43, "detail": "" }, { @@ -110873,7 +110947,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 5.01, "detail": "" }, { @@ -110886,7 +110960,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.96, + "duration_ms": 8.37, "detail": "" }, { @@ -110899,7 +110973,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 4.86, "detail": "" }, { @@ -110912,7 +110986,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 3.54, "detail": "" }, { @@ -110920,12 +110994,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.31, + "duration_ms": 2.62, "detail": "" }, { @@ -110938,7 +111012,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 2.71, "detail": "" }, { @@ -110951,7 +111025,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.85, + "duration_ms": 4.2, "detail": "" }, { @@ -110964,7 +111038,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 2.83, "detail": "" }, { @@ -110977,7 +111051,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.23, + "duration_ms": 3.09, "detail": "" }, { @@ -110985,12 +111059,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.32, + "duration_ms": 2.72, "detail": "" }, { @@ -111003,7 +111077,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 3.5, "detail": "" }, { @@ -111016,7 +111090,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.79, + "duration_ms": 4.07, "detail": "" }, { @@ -111027,9 +111101,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 2.7, "detail": "" }, { @@ -111037,12 +111111,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.27, + "duration_ms": 6.39, "detail": "" }, { @@ -111050,12 +111124,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.17, + "duration_ms": 4.21, "detail": "" }, { @@ -111068,7 +111142,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 4.67, "detail": "" }, { @@ -111081,7 +111155,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 1.82, + "duration_ms": 6.92, "detail": "" }, { @@ -111094,7 +111168,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 3.37, "detail": "" }, { @@ -111107,7 +111181,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 3.37, "detail": "" }, { @@ -111115,12 +111189,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 1.35, + "duration_ms": 3.14, "detail": "" }, { @@ -111128,12 +111202,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/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": 1.33, + "duration_ms": 2.99, "detail": "" }, { @@ -111141,12 +111215,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/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": 1.1, + "duration_ms": 3.83, "detail": "" }, { @@ -111154,12 +111228,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/steps/225a5d1f-2469-4372-8710-59b987b45e14", + "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": 1.16, + "duration_ms": 2.46, "detail": "" }, { @@ -111167,12 +111241,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/steps/25dd8c36-4541-4bb5-ba83-2a01b69a1353", + "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": 1.23, + "duration_ms": 2.71, "detail": "" }, { @@ -111180,12 +111254,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/steps/755ee513-5c00-469a-8149-fb4af08ae178", + "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": 1.38, + "duration_ms": 4.07, "detail": "" }, { @@ -111198,7 +111272,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.08, + "duration_ms": 10.65, "detail": "" }, { @@ -111211,7 +111285,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 3.71, "detail": "" }, { @@ -111224,7 +111298,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.73, + "duration_ms": 3.47, "detail": "" }, { @@ -111235,9 +111309,9 @@ "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 3.2, "detail": "" }, { @@ -111245,12 +111319,12 @@ "operation_id": "affinitylabels.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}", - "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", + "path_resolved": "/ovirt-engine/api/v4/affinitylabels/cd28e6a6-32fd-4566-b18e-7dca553d353f", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 5.84, "detail": "" }, { @@ -111258,12 +111332,12 @@ "operation_id": "affinitylabels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/affinitylabels/{id}", - "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", + "path_resolved": "/ovirt-engine/api/v4/affinitylabels/98dd035b-29a1-4d42-9000-aed79fbcced0", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 7.32, "detail": "" }, { @@ -111276,7 +111350,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 5.69, "detail": "" }, { @@ -111289,7 +111363,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 7.07, "detail": "" }, { @@ -111300,9 +111374,9 @@ "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 4.44, "detail": "" }, { @@ -111310,12 +111384,12 @@ "operation_id": "bookmarks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v4/bookmarks/06f507da-bcc9-49bf-9210-afad283c483e", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 5.69, "detail": "" }, { @@ -111323,12 +111397,12 @@ "operation_id": "bookmarks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/bookmarks/{id}", - "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", + "path_resolved": "/ovirt-engine/api/v4/bookmarks/f3956416-bb9f-4b05-95f4-83442cefdcf1", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.4, + "duration_ms": 4.58, "detail": "" }, { @@ -111341,7 +111415,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 4.0, "detail": "" }, { @@ -111354,7 +111428,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.64, + "duration_ms": 4.85, "detail": "" }, { @@ -111365,9 +111439,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 6.26, "detail": "" }, { @@ -111375,12 +111449,12 @@ "operation_id": "clusterlevels.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/v4/clusterlevels/1f6319fd-44b7-4dfa-919f-1ef25eb3fb64", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 5.9, "detail": "" }, { @@ -111388,12 +111462,12 @@ "operation_id": "clusterlevels.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/clusterlevels/{id}", - "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", + "path_resolved": "/ovirt-engine/api/v4/clusterlevels/03f0907c-2437-4837-8601-b23c2e3213a5", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 4.47, "detail": "" }, { @@ -111406,7 +111480,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 4.2, "detail": "" }, { @@ -111419,7 +111493,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.56, + "duration_ms": 6.71, "detail": "" }, { @@ -111430,9 +111504,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 4.2, "detail": "" }, { @@ -111440,12 +111514,12 @@ "operation_id": "clusters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v4/clusters/ef4ada51-439f-4d8c-949b-cbcf28163653", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 5.7, "detail": "" }, { @@ -111453,12 +111527,12 @@ "operation_id": "clusters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/clusters/{id}", - "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v4/clusters/955fb6c6-dec7-480f-b54a-6b364ad12f37", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 3.49, "detail": "" }, { @@ -111471,7 +111545,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.38, + "duration_ms": 4.77, "detail": "" }, { @@ -111484,7 +111558,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.67, + "duration_ms": 5.95, "detail": "" }, { @@ -111497,7 +111571,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.46, + "duration_ms": 5.57, "detail": "" }, { @@ -111510,7 +111584,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.25, + "duration_ms": 7.16, "detail": "" }, { @@ -111523,7 +111597,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 4.92, "detail": "" }, { @@ -111536,7 +111610,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.96, + "duration_ms": 6.42, "detail": "" }, { @@ -111547,9 +111621,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 4.57, "detail": "" }, { @@ -111557,12 +111631,12 @@ "operation_id": "datacenters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v4/datacenters/e4bf3a1f-62b2-4779-8303-3583057d4042", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.1, + "duration_ms": 4.72, "detail": "" }, { @@ -111570,12 +111644,12 @@ "operation_id": "datacenters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/datacenters/{id}", - "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", + "path_resolved": "/ovirt-engine/api/v4/datacenters/18cfc2ba-6f20-414b-b0fb-b8c7b96e006b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 4.79, "detail": "" }, { @@ -111588,7 +111662,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.4, + "duration_ms": 5.46, "detail": "" }, { @@ -111601,7 +111675,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 4.2, "detail": "" }, { @@ -111614,7 +111688,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.97, + "duration_ms": 7.5, "detail": "" }, { @@ -111625,9 +111699,9 @@ "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 4.11, "detail": "" }, { @@ -111635,12 +111709,12 @@ "operation_id": "disks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/disks/{id}", - "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v4/disks/137d39f9-c70c-4186-afcd-b01ef992cf19", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 11.98, "detail": "" }, { @@ -111648,12 +111722,12 @@ "operation_id": "disks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/disks/{id}", - "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "path_resolved": "/ovirt-engine/api/v4/disks/8aafaa9d-f075-42d4-8b1a-b56ceb9ff75b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 6.09, "detail": "" }, { @@ -111666,7 +111740,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.21, + "duration_ms": 8.11, "detail": "" }, { @@ -111679,7 +111753,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.22, + "duration_ms": 7.83, "detail": "" }, { @@ -111692,7 +111766,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.57, + "duration_ms": 8.55, "detail": "" }, { @@ -111705,7 +111779,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.13, + "duration_ms": 6.53, "detail": "" }, { @@ -111718,7 +111792,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.98, + "duration_ms": 7.7, "detail": "" }, { @@ -111731,7 +111805,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 4.95, "detail": "" }, { @@ -111744,7 +111818,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.22, + "duration_ms": 4.25, "detail": "" }, { @@ -111757,7 +111831,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 4.57, "detail": "" }, { @@ -111770,7 +111844,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 3.82, "detail": "" }, { @@ -111778,12 +111852,12 @@ "operation_id": "domains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/domains/{id}", - "path_resolved": "/ovirt-engine/api/v4/domains/13902786-7690-5fe2-9030-7b09d92b411d", + "path_resolved": "/ovirt-engine/api/v4/domains/f7e1b2ee-e74d-425a-8ab4-14c2547f647c", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 5.0, "detail": "" }, { @@ -111796,7 +111870,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.68, + "duration_ms": 4.42, "detail": "" }, { @@ -111809,7 +111883,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 2.04, + "duration_ms": 2.86, "detail": "" }, { @@ -111817,12 +111891,12 @@ "operation_id": "events.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/events/{id}", - "path_resolved": "/ovirt-engine/api/v4/events/1115", + "path_resolved": "/ovirt-engine/api/v4/events/58", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 3.93, "detail": "" }, { @@ -111830,12 +111904,12 @@ "operation_id": "events.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/events/{id}", - "path_resolved": "/ovirt-engine/api/v4/events/1115", + "path_resolved": "/ovirt-engine/api/v4/events/58", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 3.82, "detail": "" }, { @@ -111843,12 +111917,12 @@ "operation_id": "events.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/events/{id}", - "path_resolved": "/ovirt-engine/api/v4/events/1115", + "path_resolved": "/ovirt-engine/api/v4/events/5a9f12cf-332e-4ce1-81a0-eaf99b544e7b", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 4.23, "detail": "" }, { @@ -111861,7 +111935,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 5.41, "detail": "" }, { @@ -111874,7 +111948,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.6, + "duration_ms": 5.05, "detail": "" }, { @@ -111885,9 +111959,9 @@ "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 5.7, "detail": "" }, { @@ -111895,12 +111969,12 @@ "operation_id": "externalhostproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/f774ceca-e0d4-47e4-bbe5-b894db12b603", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.97, "detail": "" }, { @@ -111908,12 +111982,12 @@ "operation_id": "externalhostproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/externalhostproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", + "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/de7a10f0-0b0f-4eaf-b33a-d0198ca4aaec", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 6.62, "detail": "" }, { @@ -111926,7 +112000,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 8.33, "detail": "" }, { @@ -111939,7 +112013,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.85, + "duration_ms": 10.43, "detail": "" }, { @@ -111950,9 +112024,9 @@ "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 5.96, "detail": "" }, { @@ -111960,12 +112034,12 @@ "operation_id": "groups.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/groups/{id}", - "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v4/groups/11c28957-f4c0-4c1d-9648-0e72f9e77b0d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 6.42, "detail": "" }, { @@ -111973,12 +112047,12 @@ "operation_id": "groups.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/groups/{id}", - "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", + "path_resolved": "/ovirt-engine/api/v4/groups/f93f1013-e439-4d65-a58b-b72c10549a53", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 8.16, "detail": "" }, { @@ -111991,7 +112065,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 6.49, "detail": "" }, { @@ -112004,7 +112078,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.12, + "duration_ms": 10.18, "detail": "" }, { @@ -112012,12 +112086,12 @@ "operation_id": "hosts.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/3d0123dd-0153-44f3-8985-98454c6251ef", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.92, "detail": "" }, { @@ -112025,12 +112099,12 @@ "operation_id": "hosts.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/596b6e3d-ebd3-4107-8d62-450bca4ba32f", + "path_resolved": "/ovirt-engine/api/v4/hosts/ac290111-0085-4c9f-8e1b-34525d9ff689", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 8.72, "detail": "" }, { @@ -112038,12 +112112,12 @@ "operation_id": "hosts.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/7be61ebd-50d2-4141-8b23-4a52e272aaeb", + "path_resolved": "/ovirt-engine/api/v4/hosts/7a414401-f803-4818-9c0b-473161145e32", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 13.04, "detail": "" }, { @@ -112051,12 +112125,12 @@ "operation_id": "hosts.activate", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/activate", - "path_resolved": "/ovirt-engine/api/v4/hosts/443a9010-effe-4c6f-8499-48e8d28ad10b/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.09, + "duration_ms": 27.55, "detail": "" }, { @@ -112064,12 +112138,12 @@ "operation_id": "hosts.deactivate", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/deactivate", - "path_resolved": "/ovirt-engine/api/v4/hosts/953495b6-cc3d-4518-b3f8-267a536ce195/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.04, + "duration_ms": 28.21, "detail": "" }, { @@ -112077,12 +112151,12 @@ "operation_id": "hosts.approve", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/approve", - "path_resolved": "/ovirt-engine/api/v4/hosts/5ca38e69-c5a4-4d28-aa19-3cf0278051d1/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.0, + "duration_ms": 11.07, "detail": "" }, { @@ -112090,12 +112164,12 @@ "operation_id": "hosts.install", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/install", - "path_resolved": "/ovirt-engine/api/v4/hosts/eef4d594-6a3e-4b43-aa85-88f36f603223/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.32, + "duration_ms": 8.1, "detail": "" }, { @@ -112103,12 +112177,12 @@ "operation_id": "hosts.fence", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/fence", - "path_resolved": "/ovirt-engine/api/v4/hosts/211ce42b-a96b-4866-b0a8-7895da5c3336/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.08, + "duration_ms": 7.79, "detail": "" }, { @@ -112116,12 +112190,12 @@ "operation_id": "hosts.iscsidiscover", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsidiscover", - "path_resolved": "/ovirt-engine/api/v4/hosts/a44bd77b-24d6-4c88-b36f-ec078099e363/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.07, + "duration_ms": 6.27, "detail": "" }, { @@ -112129,12 +112203,12 @@ "operation_id": "hosts.iscsilogin", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/iscsilogin", - "path_resolved": "/ovirt-engine/api/v4/hosts/7eae4484-f2d0-45b7-b153-55d8375a5749/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.62, + "duration_ms": 6.62, "detail": "" }, { @@ -112142,12 +112216,12 @@ "operation_id": "hosts.commitnetconfig", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/commitnetconfig", - "path_resolved": "/ovirt-engine/api/v4/hosts/96401372-877f-4ee5-b29e-1a6151db972d/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.94, + "duration_ms": 7.32, "detail": "" }, { @@ -112155,12 +112229,12 @@ "operation_id": "hosts.refresh", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/refresh", - "path_resolved": "/ovirt-engine/api/v4/hosts/05fd056d-2eaf-464d-a110-cc7a5dbc0a8b/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.04, + "duration_ms": 7.23, "detail": "" }, { @@ -112168,12 +112242,12 @@ "operation_id": "hosts.unregisteredstoragedomainsdiscover", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/unregisteredstoragedomainsdiscover", - "path_resolved": "/ovirt-engine/api/v4/hosts/e71f7ced-2a5a-4ef6-a1ee-4bc28579d061/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.98, + "duration_ms": 6.71, "detail": "" }, { @@ -112181,12 +112255,12 @@ "operation_id": "hosts.upgrade", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgrade", - "path_resolved": "/ovirt-engine/api/v4/hosts/1bf45642-3fa3-4845-a4be-e4f243f73180/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, + "duration_ms": 6.53, "detail": "" }, { @@ -112194,12 +112268,12 @@ "operation_id": "hosts.upgradeCheck", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/upgradeCheck", - "path_resolved": "/ovirt-engine/api/v4/hosts/0f36410b-96b7-4718-8720-7378e02ee9d2/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": 2.02, + "duration_ms": 9.65, "detail": "" }, { @@ -112207,12 +112281,12 @@ "operation_id": "hosts.enrollcertificate", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{id}/enrollcertificate", - "path_resolved": "/ovirt-engine/api/v4/hosts/019e2db6-4d36-4118-896d-88ce776eae75/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": 2.03, + "duration_ms": 13.5, "detail": "" }, { @@ -112225,7 +112299,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.3, + "duration_ms": 5.82, "detail": "" }, { @@ -112238,7 +112312,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.58, + "duration_ms": 5.35, "detail": "" }, { @@ -112249,9 +112323,9 @@ "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 3.84, "detail": "" }, { @@ -112259,12 +112333,12 @@ "operation_id": "icons.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/icons/{id}", - "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/v4/icons/2363353e-8443-4454-94bc-66f9f94b0de9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 4.06, "detail": "" }, { @@ -112272,12 +112346,12 @@ "operation_id": "icons.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/icons/{id}", - "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", + "path_resolved": "/ovirt-engine/api/v4/icons/f4706eb2-d186-46dc-8d94-232d15f4f0d6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 3.84, "detail": "" }, { @@ -112290,7 +112364,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.03, + "duration_ms": 4.77, "detail": "" }, { @@ -112303,7 +112377,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.89, + "duration_ms": 6.27, "detail": "" }, { @@ -112314,9 +112388,9 @@ "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 3.73, "detail": "" }, { @@ -112324,12 +112398,12 @@ "operation_id": "instancetypes.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/v4/instancetypes/9325afb3-8abe-4fb0-8d78-9f226c422dac", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 4.55, "detail": "" }, { @@ -112337,12 +112411,12 @@ "operation_id": "instancetypes.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/instancetypes/{id}", - "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", + "path_resolved": "/ovirt-engine/api/v4/instancetypes/2abee7ce-dfad-42bb-820b-0c6c88db25da", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.13, + "duration_ms": 3.65, "detail": "" }, { @@ -112355,7 +112429,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.44, + "duration_ms": 5.37, "detail": "" }, { @@ -112368,7 +112442,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.97, + "duration_ms": 2.68, "detail": "" }, { @@ -112376,12 +112450,12 @@ "operation_id": "jobs.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0", + "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 2.82, "detail": "" }, { @@ -112389,12 +112463,12 @@ "operation_id": "jobs.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0", + "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 4.09, "detail": "" }, { @@ -112402,12 +112476,12 @@ "operation_id": "jobs.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0", + "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.06, + "duration_ms": 2.62, "detail": "" }, { @@ -112420,7 +112494,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 3.1, "detail": "" }, { @@ -112433,7 +112507,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.05, + "duration_ms": 3.59, "detail": "" }, { @@ -112441,12 +112515,12 @@ "operation_id": "katelloerrata.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v4/katelloerrata/70b47d8a-0c3d-45b6-82de-2677c18532ec", + "path_resolved": "/ovirt-engine/api/v4/katelloerrata/fb7c9646-efeb-485e-a955-c32837663bf7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.96, "detail": "" }, { @@ -112454,12 +112528,12 @@ "operation_id": "katelloerrata.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v4/katelloerrata/70b47d8a-0c3d-45b6-82de-2677c18532ec", + "path_resolved": "/ovirt-engine/api/v4/katelloerrata/4bd09b3b-00f7-434c-9aa6-ccf0168e3d31", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 3.75, "detail": "" }, { @@ -112467,12 +112541,12 @@ "operation_id": "katelloerrata.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v4/katelloerrata/70b47d8a-0c3d-45b6-82de-2677c18532ec", + "path_resolved": "/ovirt-engine/api/v4/katelloerrata/ec1841c6-3c36-4e03-b1c6-31b222a5510b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 3.43, "detail": "" }, { @@ -112485,7 +112559,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.96, "detail": "" }, { @@ -112498,7 +112572,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.74, + "duration_ms": 5.24, "detail": "" }, { @@ -112509,9 +112583,9 @@ "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 3.91, "detail": "" }, { @@ -112519,12 +112593,12 @@ "operation_id": "macpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/macpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/v4/macpools/576374c9-5f28-47ef-a849-9c70acae8b3d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 5.41, "detail": "" }, { @@ -112532,12 +112606,12 @@ "operation_id": "macpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/macpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", + "path_resolved": "/ovirt-engine/api/v4/macpools/ac2a8d53-54dd-468d-a7e6-aa406a77ea70", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 4.05, "detail": "" }, { @@ -112550,7 +112624,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.08, + "duration_ms": 3.76, "detail": "" }, { @@ -112563,7 +112637,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.15, + "duration_ms": 5.03, "detail": "" }, { @@ -112571,12 +112645,12 @@ "operation_id": "networkfilters.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v4/networkfilters/35e0477e-56f1-42c6-bf7a-dc303e43664f", + "path_resolved": "/ovirt-engine/api/v4/networkfilters/d1f6a031-77b9-4097-a9d0-574bbdb29d4a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.82, + "duration_ms": 3.88, "detail": "" }, { @@ -112584,12 +112658,12 @@ "operation_id": "networkfilters.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v4/networkfilters/35e0477e-56f1-42c6-bf7a-dc303e43664f", + "path_resolved": "/ovirt-engine/api/v4/networkfilters/5b34d621-ac6a-4707-a476-066fe93e04cd", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.48, "detail": "" }, { @@ -112597,12 +112671,12 @@ "operation_id": "networkfilters.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v4/networkfilters/35e0477e-56f1-42c6-bf7a-dc303e43664f", + "path_resolved": "/ovirt-engine/api/v4/networkfilters/da4cebdc-9224-4f55-a37a-6e883938a23d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 3.62, "detail": "" }, { @@ -112615,7 +112689,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 3.03, "detail": "" }, { @@ -112628,7 +112702,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.09, + "duration_ms": 5.22, "detail": "" }, { @@ -112636,12 +112710,12 @@ "operation_id": "networks.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/networks/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 3.8, "detail": "" }, { @@ -112649,12 +112723,12 @@ "operation_id": "networks.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/networks/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/v4/networks/36870231-918d-4c4d-aa54-e81eb8284335", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.76, + "duration_ms": 3.9, "detail": "" }, { @@ -112662,12 +112736,12 @@ "operation_id": "networks.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/networks/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/v4/networks/32259854-8f1a-403a-98e7-fd8bcaa6f915", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.27, + "duration_ms": 3.68, "detail": "" }, { @@ -112680,7 +112754,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.92, "detail": "" }, { @@ -112693,7 +112767,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.57, + "duration_ms": 3.25, "detail": "" }, { @@ -112704,9 +112778,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 3.03, "detail": "" }, { @@ -112714,12 +112788,12 @@ "operation_id": "openstackimageproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/542c198b-db8f-40c6-af27-91630a7c1c4a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 6.91, "detail": "" }, { @@ -112727,12 +112801,12 @@ "operation_id": "openstackimageproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/openstackimageproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", + "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/7cb70042-f3cd-4b41-90a9-8ab2477b8a7e", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 3.7, "detail": "" }, { @@ -112745,7 +112819,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 3.0, "detail": "" }, { @@ -112758,7 +112832,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.87, + "duration_ms": 3.3, "detail": "" }, { @@ -112769,9 +112843,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 2.76, "detail": "" }, { @@ -112779,12 +112853,12 @@ "operation_id": "openstacknetworkproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/bb9ff234-4d86-4fb0-b068-ef2248f6f90d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 4.52, "detail": "" }, { @@ -112792,12 +112866,12 @@ "operation_id": "openstacknetworkproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/openstacknetworkproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", + "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/33fda5dd-2b44-4fef-a88b-891c780d233f", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.21, + "duration_ms": 5.08, "detail": "" }, { @@ -112810,7 +112884,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 4.01, "detail": "" }, { @@ -112823,7 +112897,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.6, + "duration_ms": 4.78, "detail": "" }, { @@ -112834,9 +112908,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 3.62, "detail": "" }, { @@ -112844,12 +112918,12 @@ "operation_id": "openstackvolumeproviders.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/d81cc062-e5d3-41b7-8210-c02395551d21", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.28, + "duration_ms": 8.47, "detail": "" }, { @@ -112857,12 +112931,12 @@ "operation_id": "openstackvolumeproviders.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/openstackvolumeproviders/{id}", - "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", + "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/ff71d0f7-5833-4d5f-8832-1128f6fd61ac", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.25, + "duration_ms": 10.81, "detail": "" }, { @@ -112875,7 +112949,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 7.13, "detail": "" }, { @@ -112888,7 +112962,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.48, + "duration_ms": 6.92, "detail": "" }, { @@ -112896,12 +112970,12 @@ "operation_id": "operatingsystems.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/d0f69725-a1cc-4164-9a97-d52faf6e6060", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/82dcfded-1f35-43d6-804f-2120b481d1b8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 6.21, "detail": "" }, { @@ -112909,12 +112983,12 @@ "operation_id": "operatingsystems.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/d0f69725-a1cc-4164-9a97-d52faf6e6060", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/7c070a5b-94c3-4eea-9dac-5c0f9973ac3a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 6.02, "detail": "" }, { @@ -112922,12 +112996,12 @@ "operation_id": "operatingsystems.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/d0f69725-a1cc-4164-9a97-d52faf6e6060", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/cad7b8fb-f63a-49d1-9eca-132762580a8d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 5.76, "detail": "" }, { @@ -112940,7 +113014,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 6.25, "detail": "" }, { @@ -112953,7 +113027,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.15, + "duration_ms": 5.61, "detail": "" }, { @@ -112966,7 +113040,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.94, + "duration_ms": 5.76, "detail": "" }, { @@ -112979,7 +113053,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.19, + "duration_ms": 4.7, "detail": "" }, { @@ -112987,12 +113061,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "path_resolved": "/ovirt-engine/api/v4/permissions/29fe8982-84e1-4f9e-8131-cbcc9acd37d4", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.13, + "duration_ms": 4.43, "detail": "" }, { @@ -113005,7 +113079,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 6.11, "detail": "" }, { @@ -113018,7 +113092,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.78, + "duration_ms": 22.35, "detail": "" }, { @@ -113029,9 +113103,9 @@ "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 8.15, "detail": "" }, { @@ -113039,12 +113113,12 @@ "operation_id": "roles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/roles/{id}", - "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v4/roles/ed3a7ba4-238f-44b1-93d2-bd71a877c184", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 5.96, "detail": "" }, { @@ -113052,12 +113126,12 @@ "operation_id": "roles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/roles/{id}", - "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", + "path_resolved": "/ovirt-engine/api/v4/roles/85750385-87df-47b0-a8c6-6e29c90216d6", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 6.34, "detail": "" }, { @@ -113070,7 +113144,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 7.78, "detail": "" }, { @@ -113083,7 +113157,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.9, + "duration_ms": 6.96, "detail": "" }, { @@ -113094,9 +113168,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 6.03, "detail": "" }, { @@ -113104,12 +113178,12 @@ "operation_id": "schedulingpolicies.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/105430b8-f938-4463-bf25-d1aac09a77d6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 9.76, "detail": "" }, { @@ -113117,12 +113191,12 @@ "operation_id": "schedulingpolicies.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/schedulingpolicies/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/3ec7b81d-42eb-467b-8f68-7ff8e21dfe72", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 24.54, "detail": "" }, { @@ -113135,7 +113209,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.85, + "duration_ms": 7.44, "detail": "" }, { @@ -113148,7 +113222,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.87, + "duration_ms": 9.86, "detail": "" }, { @@ -113159,9 +113233,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.47, + "duration_ms": 8.12, "detail": "" }, { @@ -113169,12 +113243,12 @@ "operation_id": "schedulingpolicyunits.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/5c9bf290-ebe5-4542-8e7a-ba2a87ea36b3", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 9.76, "detail": "" }, { @@ -113182,12 +113256,12 @@ "operation_id": "schedulingpolicyunits.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/schedulingpolicyunits/{id}", - "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", + "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/401c7d1a-25e8-4c51-8534-9e855bc63bb4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 9.71, "detail": "" }, { @@ -113200,7 +113274,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 15.38, "detail": "" }, { @@ -113213,7 +113287,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.18, + "duration_ms": 9.82, "detail": "" }, { @@ -113221,12 +113295,12 @@ "operation_id": "storageconnections.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/1b3da01d-0fc6-442a-a298-50fdfec15b23", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/c2ef941a-101f-4d94-aafd-e5a8b50c3b07", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 8.06, "detail": "" }, { @@ -113234,12 +113308,12 @@ "operation_id": "storageconnections.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/1b3da01d-0fc6-442a-a298-50fdfec15b23", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/5ff674c7-c02b-43d9-bd30-6d887f5e1e28", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.56, + "duration_ms": 7.82, "detail": "" }, { @@ -113247,12 +113321,12 @@ "operation_id": "storageconnections.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/1b3da01d-0fc6-442a-a298-50fdfec15b23", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/eeb4a09c-d86d-4a61-86eb-fa53c959f496", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 7.59, "detail": "" }, { @@ -113265,7 +113339,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 7.11, "detail": "" }, { @@ -113278,7 +113352,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.18, + "duration_ms": 18.57, "detail": "" }, { @@ -113289,9 +113363,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 14.8, "detail": "" }, { @@ -113299,12 +113373,12 @@ "operation_id": "storagedomains.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v4/storagedomains/f23b8f45-d37b-4b4e-a3e8-4eeace173067", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 8.15, "detail": "" }, { @@ -113312,12 +113386,12 @@ "operation_id": "storagedomains.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/storagedomains/{id}", - "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "path_resolved": "/ovirt-engine/api/v4/storagedomains/26a376c5-ca4f-41fe-8109-c3f80b777a35", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 12.8, "detail": "" }, { @@ -113330,7 +113404,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.02, + "duration_ms": 18.37, "detail": "" }, { @@ -113343,7 +113417,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.07, + "duration_ms": 11.42, "detail": "" }, { @@ -113356,7 +113430,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 9.1, "detail": "" }, { @@ -113369,7 +113443,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 5.91, "detail": "" }, { @@ -113382,7 +113456,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.32, + "duration_ms": 7.0, "detail": "" }, { @@ -113393,9 +113467,9 @@ "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 5.54, "detail": "" }, { @@ -113403,12 +113477,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v4/tags/93173bfa-a325-43f4-9c0d-10b82006e940", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 7.73, "detail": "" }, { @@ -113416,12 +113490,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "path_resolved": "/ovirt-engine/api/v4/tags/854b11f0-b82b-4e10-b221-4874eb8ec04b", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 6.96, "detail": "" }, { @@ -113434,7 +113508,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 5.47, "detail": "" }, { @@ -113447,7 +113521,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.92, + "duration_ms": 8.96, "detail": "" }, { @@ -113458,9 +113532,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 5.43, "detail": "" }, { @@ -113468,12 +113542,12 @@ "operation_id": "templates.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/templates/{id}", - "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v4/templates/7b60299f-7d2a-4855-be43-407d3ef6d92e", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 7.15, "detail": "" }, { @@ -113481,12 +113555,12 @@ "operation_id": "templates.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/templates/{id}", - "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", + "path_resolved": "/ovirt-engine/api/v4/templates/6e8373d5-ff7f-4596-8ffd-3f12f0238c1c", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.35, + "duration_ms": 9.6, "detail": "" }, { @@ -113499,7 +113573,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.09, + "duration_ms": 9.5, "detail": "" }, { @@ -113512,7 +113586,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.22, + "duration_ms": 8.25, "detail": "" }, { @@ -113525,7 +113599,7 @@ "status": "passed", "http_status": 404, "expected_hint": 201, - "duration_ms": 1.19, + "duration_ms": 5.24, "detail": "" }, { @@ -113538,7 +113612,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 6.42, "detail": "" }, { @@ -113551,7 +113625,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 6.45, "detail": "" }, { @@ -113559,12 +113633,12 @@ "operation_id": "users.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/users/{id}", - "path_resolved": "/ovirt-engine/api/v4/users/28c4549a-7a6a-5559-ac6b-fe0a94aeb866", + "path_resolved": "/ovirt-engine/api/v4/users/3b19e3b4-d925-4387-84d6-880cc9335b30", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 5.89, "detail": "" }, { @@ -113577,7 +113651,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 7.69, "detail": "" }, { @@ -113590,7 +113664,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.66, + "duration_ms": 7.84, "detail": "" }, { @@ -113601,9 +113675,9 @@ "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 6.6, "detail": "" }, { @@ -113611,12 +113685,12 @@ "operation_id": "vmpools.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v4/vmpools/90df10fe-2be7-428f-83b9-86467c632328", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 7.02, "detail": "" }, { @@ -113624,12 +113698,12 @@ "operation_id": "vmpools.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vmpools/{id}", - "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", + "path_resolved": "/ovirt-engine/api/v4/vmpools/06c6b28b-b6c1-4b19-bc01-db21cadb2a13", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.22, + "duration_ms": 10.56, "detail": "" }, { @@ -113642,7 +113716,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 7.05, "detail": "" }, { @@ -113655,7 +113729,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.86, + "duration_ms": 22.52, "detail": "" }, { @@ -113663,12 +113737,12 @@ "operation_id": "vms.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/3a5b1b48-fc5a-42fc-a5d7-27380cb01c6d", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 11.14, "detail": "" }, { @@ -113676,12 +113750,12 @@ "operation_id": "vms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/d658679f-a981-4bc9-af48-b8c9c1aee471", + "path_resolved": "/ovirt-engine/api/v4/vms/cf951395-4d01-44b9-acbf-28b92ce223de", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 12.76, "detail": "" }, { @@ -113689,12 +113763,12 @@ "operation_id": "vms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/cdfde31e-f4fb-47c6-a524-becb581dd8d3", + "path_resolved": "/ovirt-engine/api/v4/vms/5d7c9d26-a199-4316-823b-4331dbd4b39c", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.14, + "duration_ms": 20.05, "detail": "" }, { @@ -113702,12 +113776,12 @@ "operation_id": "vms.start", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/start", - "path_resolved": "/ovirt-engine/api/v4/vms/e3d16866-5e6c-4900-8957-7d9d9b007943/start", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/start", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.17, + "duration_ms": 63.58, "detail": "" }, { @@ -113715,12 +113789,12 @@ "operation_id": "vms.stop", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/stop", - "path_resolved": "/ovirt-engine/api/v4/vms/e5c22a90-e775-497a-a141-5e6c18925eb6/stop", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/stop", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.26, + "duration_ms": 32.88, "detail": "" }, { @@ -113728,12 +113802,12 @@ "operation_id": "vms.shutdown", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/shutdown", - "path_resolved": "/ovirt-engine/api/v4/vms/ef6c7463-b2fa-4b7f-b18e-c75678d76136/shutdown", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/shutdown", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.23, + "duration_ms": 41.7, "detail": "" }, { @@ -113741,12 +113815,12 @@ "operation_id": "vms.reboot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/reboot", - "path_resolved": "/ovirt-engine/api/v4/vms/00f311c2-f15a-4203-9f57-4ee99c02ee4e/reboot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/reboot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.24, + "duration_ms": 22.53, "detail": "" }, { @@ -113754,12 +113828,12 @@ "operation_id": "vms.suspend", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/suspend", - "path_resolved": "/ovirt-engine/api/v4/vms/2199f3e1-60c6-40b0-b3cd-695bd10af90b/suspend", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/suspend", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.19, + "duration_ms": 14.01, "detail": "" }, { @@ -113767,12 +113841,12 @@ "operation_id": "vms.migrate", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/migrate", - "path_resolved": "/ovirt-engine/api/v4/vms/87f78e31-eb03-41f0-b218-dea8097b928c/migrate", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/migrate", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.16, + "duration_ms": 12.58, "detail": "" }, { @@ -113780,12 +113854,12 @@ "operation_id": "vms.cancelmigration", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/cancelmigration", - "path_resolved": "/ovirt-engine/api/v4/vms/87c58f88-b8f9-49a0-b53b-ce3e320b118d/cancelmigration", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/cancelmigration", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.19, + "duration_ms": 12.7, "detail": "" }, { @@ -113793,12 +113867,12 @@ "operation_id": "vms.clone", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/clone", - "path_resolved": "/ovirt-engine/api/v4/vms/2c45cb4d-d0eb-458a-b2c2-70aa21579df2/clone", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/clone", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 409, "expected_hint": 201, - "duration_ms": 1.95, + "duration_ms": 8.13, "detail": "" }, { @@ -113806,12 +113880,12 @@ "operation_id": "vms.export", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/export", - "path_resolved": "/ovirt-engine/api/v4/vms/93f13518-9820-4850-8610-66e0e26b9dd7/export", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/export", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 13.55, "detail": "" }, { @@ -113819,12 +113893,12 @@ "operation_id": "vms.detach", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/detach", - "path_resolved": "/ovirt-engine/api/v4/vms/174ab86d-2d73-496d-8b66-06a45b03c85b/detach", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/detach", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.29, + "duration_ms": 15.16, "detail": "" }, { @@ -113832,12 +113906,12 @@ "operation_id": "vms.screenthumbnail", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/screenthumbnail", - "path_resolved": "/ovirt-engine/api/v4/vms/a3a3e8d7-0cf1-462e-8459-eb5fb3e0dd95/screenthumbnail", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/screenthumbnail", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.33, + "duration_ms": 10.1, "detail": "" }, { @@ -113845,12 +113919,12 @@ "operation_id": "vms.ticket", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/ticket", - "path_resolved": "/ovirt-engine/api/v4/vms/60c812f0-7371-4e7c-8e89-0a3a416ba82e/ticket", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/ticket", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.3, + "duration_ms": 7.93, "detail": "" }, { @@ -113858,12 +113932,12 @@ "operation_id": "vms.logon", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/logon", - "path_resolved": "/ovirt-engine/api/v4/vms/7d36100e-28a9-49ab-bc6a-e9b4a81e5629/logon", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/logon", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.36, + "duration_ms": 10.5, "detail": "" }, { @@ -113871,12 +113945,12 @@ "operation_id": "vms.maintenance", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/maintenance", - "path_resolved": "/ovirt-engine/api/v4/vms/b19a59f7-05f3-40a8-a36d-619b65502904/maintenance", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/maintenance", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.36, + "duration_ms": 10.07, "detail": "" }, { @@ -113884,12 +113958,12 @@ "operation_id": "vms.preview_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/preview_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/3b14699f-196a-4d9c-801b-746f5d9e23dc/preview_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/preview_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 9.66, "detail": "" }, { @@ -113897,12 +113971,12 @@ "operation_id": "vms.commit_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/commit_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/298e52b3-15c0-412e-8378-fcc30641c097/commit_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/commit_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.4, + "duration_ms": 9.1, "detail": "" }, { @@ -113910,12 +113984,12 @@ "operation_id": "vms.undo_snapshot", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/undo_snapshot", - "path_resolved": "/ovirt-engine/api/v4/vms/4867e386-07ee-4ee9-918f-0c0c9a7a769c/undo_snapshot", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/undo_snapshot", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 11.06, "detail": "" }, { @@ -113923,12 +113997,12 @@ "operation_id": "vms.freeze_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/freeze_filesystems", - "path_resolved": "/ovirt-engine/api/v4/vms/3e706070-9ca3-4a4e-8c46-5d1849de0ff9/freeze_filesystems", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/freeze_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.34, + "duration_ms": 20.55, "detail": "" }, { @@ -113936,12 +114010,12 @@ "operation_id": "vms.thaw_filesystems", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{id}/thaw_filesystems", - "path_resolved": "/ovirt-engine/api/v4/vms/c7e3d1c8-7f98-46de-8ac9-b6127d981aa4/thaw_filesystems", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/thaw_filesystems", "kind": "action", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 201, - "duration_ms": 1.35, + "duration_ms": 22.11, "detail": "" }, { @@ -113954,7 +114028,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 10.48, "detail": "" }, { @@ -113967,7 +114041,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 2.23, + "duration_ms": 15.02, "detail": "" }, { @@ -113975,12 +114049,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/9231b6de-342f-4e6e-8de7-a862cde222e4", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 10.21, "detail": "" }, { @@ -113988,12 +114062,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/4974d309-6f1b-4236-9937-3304b09ef287", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/a8a89366-d9a7-44b1-b369-5666e5fafceb", "kind": "item", "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.15, + "duration_ms": 10.01, "detail": "" }, { @@ -114001,12 +114075,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/3c312fb3-4382-46b6-9b69-384d0380d462", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/006f75b5-e512-4b4e-9182-b6cae6d92d59", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.2, + "duration_ms": 20.8, "detail": "" }, { @@ -114019,7 +114093,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.26, + "duration_ms": 13.51, "detail": "" }, { @@ -114032,7 +114106,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.56, + "duration_ms": 18.35, "detail": "" }, { @@ -114040,12 +114114,12 @@ "operation_id": "imagetransfers.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/7be3e701-024b-4acd-95f6-9d441fb56ff1", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/2464359a-780c-45f8-b548-bd1c8a5ea664", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 8.68, "detail": "" }, { @@ -114053,12 +114127,12 @@ "operation_id": "imagetransfers.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/7be3e701-024b-4acd-95f6-9d441fb56ff1", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/0c038838-7b7f-4df3-9063-6901e7f58c61", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 19.72, "detail": "" }, { @@ -114066,12 +114140,12 @@ "operation_id": "imagetransfers.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/7be3e701-024b-4acd-95f6-9d441fb56ff1", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/54f5d416-930e-44d7-a6f6-36891c97b123", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 14.37, "detail": "" }, { @@ -114084,7 +114158,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.51, + "duration_ms": 8.65, "detail": "" }, { @@ -114097,7 +114171,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 1.57, + "duration_ms": 20.21, "detail": "" }, { @@ -114108,9 +114182,9 @@ "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 7.06, "detail": "" }, { @@ -114118,12 +114192,12 @@ "operation_id": "options.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/options/{id}", - "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", + "path_resolved": "/ovirt-engine/api/v4/options/9daa00fa-b8e7-470f-b8fd-eb0941d62590", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.23, + "duration_ms": 9.74, "detail": "" }, { @@ -114131,12 +114205,12 @@ "operation_id": "options.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/options/{id}", - "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", + "path_resolved": "/ovirt-engine/api/v4/options/4bab2eb9-7958-4aed-89d5-ab88705b851d", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.24, + "duration_ms": 20.74, "detail": "" }, { @@ -114144,12 +114218,12 @@ "operation_id": "diskattachments.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v4/vms/840ea4b7-89b4-4cb7-9081-e063acced080/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": 1.43, + "duration_ms": 19.61, "detail": "" }, { @@ -114157,12 +114231,12 @@ "operation_id": "diskattachments.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v4/vms/34809e7c-acf7-40dc-8403-4d56df1d3677/diskattachments", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/diskattachments", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 2.13, + "duration_ms": 25.25, "detail": "" }, { @@ -114170,12 +114244,12 @@ "operation_id": "diskattachments.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/79a5c577-8dd3-40a6-889f-3d752c48f396/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.59, + "duration_ms": 15.65, "detail": "" }, { @@ -114183,12 +114257,12 @@ "operation_id": "diskattachments.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/22f22015-1e1b-4c54-b098-e780f5fd816b/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.26, + "duration_ms": 10.02, "detail": "" }, { @@ -114196,12 +114270,12 @@ "operation_id": "diskattachments.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/ce705144-dabf-4708-a3f8-566d5f0a7eb2/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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": 1.31, + "duration_ms": 12.31, "detail": "" }, { @@ -114209,12 +114283,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/vms/70138fe0-a8a5-4b5b-853d-8880c5d408ad/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.92, + "duration_ms": 16.92, "detail": "" }, { @@ -114222,12 +114296,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/vms/713fc473-ec94-46ac-8fa0-29b55c0f5bc3/nics", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.95, + "duration_ms": 18.58, "detail": "" }, { @@ -114235,12 +114309,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/43243d60-8879-40ce-8101-a60af2daa05b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.19, + "duration_ms": 13.26, "detail": "" }, { @@ -114248,12 +114322,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/31ed9c8b-f5be-4005-af98-71c8e34ba33b/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/nics/d4135436-90c8-416a-8667-a28ed39fab08", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.8, + "duration_ms": 9.49, "detail": "" }, { @@ -114261,12 +114335,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/fc81b2e6-960b-49cf-84b7-96fb5fb34e44/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 2.9, + "duration_ms": 8.05, "detail": "" }, { @@ -114274,12 +114348,12 @@ "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/45189cc8-f062-44eb-90f0-4bdf17b9f585/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 4.76, + "duration_ms": 12.1, "detail": "" }, { @@ -114287,12 +114361,12 @@ "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/1b28696e-2b10-44f4-a10d-b8b0d1ed7723/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 3.55, + "duration_ms": 13.68, "detail": "" }, { @@ -114300,12 +114374,12 @@ "operation_id": "cdroms.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v4/vms/46b2dded-b4fe-47cf-90e1-7919f8779ecb/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.54, + "duration_ms": 8.31, "detail": "" }, { @@ -114313,12 +114387,12 @@ "operation_id": "cdroms.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v4/vms/2219a5b0-9135-4b1a-be9c-b1498b3564da/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.96, + "duration_ms": 9.74, "detail": "" }, { @@ -114326,12 +114400,12 @@ "operation_id": "cdroms.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/89f4cd9c-5b92-4fa5-8ed7-834f3ae89854/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.59, + "duration_ms": 9.99, "detail": "" }, { @@ -114339,12 +114413,12 @@ "operation_id": "cdroms.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/ed1df4f2-515f-49ba-8268-b2cab836e234/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.81, + "duration_ms": 10.61, "detail": "" }, { @@ -114352,12 +114426,12 @@ "operation_id": "cdroms.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/c5e3bb29-a216-46a8-9d89-b228090e1aa2/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.47, + "duration_ms": 8.35, "detail": "" }, { @@ -114365,12 +114439,12 @@ "operation_id": "snapshots.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v4/vms/86faefef-b9e6-4908-8e4f-1fbe8fe20b7d/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.3, + "duration_ms": 7.81, "detail": "" }, { @@ -114378,12 +114452,12 @@ "operation_id": "snapshots.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v4/vms/871cd890-6b77-4f76-8a00-37728805a55f/snapshots", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/snapshots", "kind": "collection", "status": "passed", - "http_status": 400, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.77, + "duration_ms": 10.5, "detail": "" }, { @@ -114391,12 +114465,12 @@ "operation_id": "snapshots.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/8aba18e6-e75c-4cf7-bdef-0174830f2a50/snapshots/d371901c-6be2-4b1f-8a39-7361ab2dbaef", + "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": 1.37, + "duration_ms": 5.19, "detail": "" }, { @@ -114404,12 +114478,12 @@ "operation_id": "snapshots.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/8f2f9236-5914-4ee3-a47b-2a47ad8e38a7/snapshots/3dd6ffd2-1fb0-4f25-a5e6-7300097020b7", + "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": 1.39, + "duration_ms": 5.38, "detail": "" }, { @@ -114417,12 +114491,12 @@ "operation_id": "snapshots.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/cd073e86-3920-44d1-bef1-7ce69259ca40/snapshots/e90416f9-d589-4910-98ee-0e8ec1b76e3b", + "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": 1.47, + "duration_ms": 7.3, "detail": "" }, { @@ -114430,12 +114504,12 @@ "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/af60dc7e-3798-4908-8694-b9ebcb149af6/snapshots/bb028f20-a384-46f7-9780-2054e154b325/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": 2.04, + "duration_ms": 8.03, "detail": "" }, { @@ -114443,12 +114517,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/5f7c124a-aa56-4a7c-9e6e-562ac5e57968/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": 1.65, + "duration_ms": 6.1, "detail": "" }, { @@ -114456,12 +114530,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/21646478-2866-45f1-b664-93d958ec85c8/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": 2.17, + "duration_ms": 10.35, "detail": "" }, { @@ -114469,12 +114543,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/d52b01e2-f281-476e-b621-0f31a3013789/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.38, + "duration_ms": 4.66, "detail": "" }, { @@ -114482,12 +114556,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/ee797457-ef67-432d-a35e-ee753282874a/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.4, + "duration_ms": 6.37, "detail": "" }, { @@ -114495,12 +114569,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/a41aa3ab-e575-4671-81cd-73c7fbb7b226/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.28, + "duration_ms": 5.48, "detail": "" }, { @@ -114508,12 +114582,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/vms/91194bf2-be05-4d7f-96c7-dc249f0ae531/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": 1.74, + "duration_ms": 9.29, "detail": "" }, { @@ -114521,12 +114595,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/vms/41ffdedf-7787-4e6e-80c1-6dbd5f63b5f7/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.74, + "duration_ms": 8.72, "detail": "" }, { @@ -114534,12 +114608,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/6d0326e8-9562-4f1a-80e6-cb656a6f06a0/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.37, + "duration_ms": 6.43, "detail": "" }, { @@ -114547,12 +114621,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/4fceb017-4851-4b28-a349-f2e653e865bb/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.47, + "duration_ms": 8.75, "detail": "" }, { @@ -114560,12 +114634,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/63300147-24a1-480a-83dd-f10ca3d1939a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.37, + "duration_ms": 5.49, "detail": "" }, { @@ -114573,12 +114647,12 @@ "operation_id": "graphicsconsoles.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/97886113-6849-415f-b7a6-3ed10298d244/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": 2.2, + "duration_ms": 6.73, "detail": "" }, { @@ -114586,12 +114660,12 @@ "operation_id": "graphicsconsoles.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/1f426482-6bb3-41f1-9a87-bfb0e26e86bb/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": 1.95, + "duration_ms": 8.56, "detail": "" }, { @@ -114599,12 +114673,12 @@ "operation_id": "graphicsconsoles.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/146a07a3-d44a-4e3d-94c9-2f2007080e90/graphicsconsoles/e16a66e6-2331-40cf-831c-edb8b31cc04b", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/bf500a40-5322-44fb-a545-0c70ac089bb3", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 6.7, "detail": "" }, { @@ -114612,12 +114686,12 @@ "operation_id": "graphicsconsoles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/2de09c39-f7de-4166-92ec-a11ef3992275/graphicsconsoles/e16a66e6-2331-40cf-831c-edb8b31cc04b", + "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": 2.23, + "duration_ms": 8.49, "detail": "" }, { @@ -114625,12 +114699,12 @@ "operation_id": "graphicsconsoles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/a5b8c63a-1a75-4663-ae1a-0700dc894305/graphicsconsoles/e16a66e6-2331-40cf-831c-edb8b31cc04b", + "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": 2.72, + "duration_ms": 9.81, "detail": "" }, { @@ -114638,12 +114712,12 @@ "operation_id": "nics.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/3b032868-372c-41fd-9929-3f2c1b0a03e9/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.86, + "duration_ms": 10.1, "detail": "" }, { @@ -114651,12 +114725,12 @@ "operation_id": "nics.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/0da43e8e-1447-45b9-9b61-58bc99f12d03/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.05, + "duration_ms": 10.5, "detail": "" }, { @@ -114664,12 +114738,12 @@ "operation_id": "nics.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/24a0dc85-5d2c-431d-a403-33295f68faf7/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.21, + "duration_ms": 10.52, "detail": "" }, { @@ -114677,12 +114751,12 @@ "operation_id": "nics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/20241fd5-8fa5-4365-b9c7-4454a5ad1915/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.95, + "duration_ms": 20.38, "detail": "" }, { @@ -114690,12 +114764,12 @@ "operation_id": "nics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/5b28de3d-829f-4b20-9224-eac6650112dc/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.86, + "duration_ms": 8.94, "detail": "" }, { @@ -114703,12 +114777,12 @@ "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/49b144ae-938f-454a-95b7-21bfb6238cfb/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 2.59, + "duration_ms": 12.83, "detail": "" }, { @@ -114716,12 +114790,12 @@ "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/4e7df883-ec38-48d9-b96d-efb4d32f838d/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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": 3.34, + "duration_ms": 9.95, "detail": "" }, { @@ -114729,12 +114803,12 @@ "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/0ddc302e-9b22-40ac-a8ba-31373baaede4/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2/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.65, + "duration_ms": 9.81, "detail": "" }, { @@ -114742,12 +114816,12 @@ "operation_id": "tags.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/a3907229-9ac7-4d0d-8ce7-e1b97b5ab0d3/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.0, + "duration_ms": 6.13, "detail": "" }, { @@ -114755,12 +114829,12 @@ "operation_id": "tags.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/cd886dea-2d0e-4251-a05d-47f66f0b61f5/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": 2.21, + "duration_ms": 4.87, "detail": "" }, { @@ -114768,12 +114842,12 @@ "operation_id": "tags.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/b06989d3-8f86-4566-841a-99f4bbd42aba/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.04, + "duration_ms": 13.62, "detail": "" }, { @@ -114781,12 +114855,12 @@ "operation_id": "tags.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/074669ee-031d-40a0-8529-68d79fa390d5/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.89, + "duration_ms": 5.78, "detail": "" }, { @@ -114794,12 +114868,12 @@ "operation_id": "tags.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/1dc29efc-b6b3-4563-96a6-69dd4a58ef46/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.69, + "duration_ms": 5.5, "detail": "" }, { @@ -114807,12 +114881,12 @@ "operation_id": "permissions.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/a610f1b1-8f75-4b80-af2a-992c75a4b6b7/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.56, + "duration_ms": 5.13, "detail": "" }, { @@ -114820,12 +114894,12 @@ "operation_id": "permissions.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/9864d317-bd45-40a2-a3ad-2a5b448ad152/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.04, + "duration_ms": 6.63, "detail": "" }, { @@ -114833,12 +114907,12 @@ "operation_id": "permissions.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/c9b9405a-d5ff-4bf5-bec7-8acaa01e5075/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.45, + "duration_ms": 5.87, "detail": "" }, { @@ -114846,12 +114920,12 @@ "operation_id": "permissions.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/28ac80a6-d0e9-44b7-94b2-87914f909ef6/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.53, + "duration_ms": 5.82, "detail": "" }, { @@ -114859,12 +114933,12 @@ "operation_id": "permissions.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/4d6c33da-fe6d-4d82-9430-b0040ec1627b/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.38, + "duration_ms": 5.74, "detail": "" }, { @@ -114872,12 +114946,12 @@ "operation_id": "statistics.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v4/hosts/f4e124c3-9479-43ce-8bfa-07a00b3f5f52/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.38, + "duration_ms": 5.84, "detail": "" }, { @@ -114885,12 +114959,12 @@ "operation_id": "statistics.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v4/hosts/2d3588bd-46c5-4b9a-91e8-f4a70d67ee54/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.64, + "duration_ms": 11.84, "detail": "" }, { @@ -114898,12 +114972,12 @@ "operation_id": "statistics.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/b779ec2c-bf08-42bf-8aac-7d5abee6093a/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 7.6, "detail": "" }, { @@ -114911,12 +114985,12 @@ "operation_id": "statistics.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/c22bb17d-6a18-4e7c-8648-5bdd99e96d1d/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.63, + "duration_ms": 7.2, "detail": "" }, { @@ -114924,12 +114998,12 @@ "operation_id": "statistics.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/0bef6b85-a4e0-4cf6-93eb-7c7d88fc1536/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "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": 1.42, + "duration_ms": 5.22, "detail": "" }, { @@ -114942,7 +115016,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 5.86, "detail": "" }, { @@ -114953,9 +115027,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.95, + "duration_ms": 11.37, "detail": "" }, { @@ -114963,12 +115037,12 @@ "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/fd7abb3c-e830-4593-b9ef-2120a7d0306a", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a091b768-2a69-4ac2-9cfb-d7931810e6f0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 14.44, "detail": "" }, { @@ -114976,12 +115050,12 @@ "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/13e3e7c9-d757-4f49-a8b4-e7f754409df2", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/b3a1462b-c7ea-42b5-8b25-e8dd96c420aa", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.38, + "duration_ms": 12.05, "detail": "" }, { @@ -114989,12 +115063,12 @@ "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/8b417bfd-2faa-4c46-bdbb-c2cb90cdd36e", + "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": 1.52, + "duration_ms": 16.44, "detail": "" }, { @@ -115005,9 +115079,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 18.88, "detail": "" }, { @@ -115018,9 +115092,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 200, + "http_status": 404, "expected_hint": 201, - "duration_ms": 2.0, + "duration_ms": 15.74, "detail": "" }, { @@ -115028,12 +115102,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 23.12, "detail": "" }, { @@ -115041,12 +115115,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "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": 1.86, + "duration_ms": 18.42, "detail": "" }, { @@ -115054,12 +115128,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "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": 1.25, + "duration_ms": 72.93, "detail": "" }, { @@ -115072,7 +115146,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 55.23, "detail": "" }, { @@ -115085,7 +115159,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.15, + "duration_ms": 40.79, "detail": "" }, { @@ -115098,7 +115172,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 23.08, "detail": "" }, { @@ -115111,7 +115185,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 22.61, "detail": "" }, { @@ -115119,12 +115193,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.33, + "duration_ms": 3.72, "detail": "" }, { @@ -115137,7 +115211,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 10.22, "detail": "" }, { @@ -115150,7 +115224,7 @@ "status": "passed", "http_status": 400, "expected_hint": 201, - "duration_ms": 1.33, + "duration_ms": 5.62, "detail": "" }, { @@ -115161,9 +115235,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 6.44, "detail": "" }, { @@ -115171,12 +115245,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.25, + "duration_ms": 9.5, "detail": "" }, { @@ -115184,12 +115258,12 @@ "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/fe9df8fa-48fc-5c20-bed9-08b1aef50877", + "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": 1.47, + "duration_ms": 7.75, "detail": "" }, { @@ -115202,7 +115276,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 4.36, + "duration_ms": 13.33, "detail": "" }, { @@ -115215,7 +115289,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.9, + "duration_ms": 11.91, "detail": "" }, { @@ -115226,9 +115300,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.12, + "duration_ms": 7.18, "detail": "" }, { @@ -115239,9 +115313,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.52, + "duration_ms": 7.62, "detail": "" }, { @@ -115252,9 +115326,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 7.24, "detail": "" }, { @@ -115262,12 +115336,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "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": 1.36, + "duration_ms": 3.95, "detail": "" }, { @@ -115275,12 +115349,12 @@ "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/dae07aa2-5322-5733-9c7e-4848aec6467a", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/fcc043cd-ef28-49fd-bfea-30d15c788339", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 8.46, "detail": "" }, { @@ -115291,9 +115365,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.31, + "duration_ms": 14.26, "detail": "" }, { @@ -115304,9 +115378,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 201, "expected_hint": 201, - "duration_ms": 1.6, + "duration_ms": 11.07, "detail": "" }, { @@ -115314,12 +115388,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 7.64, "detail": "" }, { @@ -115327,12 +115401,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "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": 1.57, + "duration_ms": 15.66, "detail": "" }, { @@ -115340,12 +115414,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/5c54fa7c-a5ed-4180-b3fb-71f4f25f9228", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 11.04, "detail": "" }, { @@ -115358,7 +115432,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 9.26, "detail": "" }, { @@ -115371,7 +115445,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 3.13, + "duration_ms": 25.56, "detail": "" }, { @@ -115379,12 +115453,12 @@ "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/2a736278-65ae-498d-863e-3f4d0ec44fbc", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.31, + "duration_ms": 13.05, "detail": "" }, { @@ -115392,12 +115466,12 @@ "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/2a736278-65ae-498d-863e-3f4d0ec44fbc", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f6335116-3619-4eee-be49-48975828805b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 35.57, "detail": "" }, { @@ -115405,12 +115479,12 @@ "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/2a736278-65ae-498d-863e-3f4d0ec44fbc", + "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": 1.89, + "duration_ms": 19.44, "detail": "" }, { @@ -115423,7 +115497,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.59, + "duration_ms": 8.14, "detail": "" }, { @@ -115436,7 +115510,7 @@ "status": "passed", "http_status": 201, "expected_hint": 201, - "duration_ms": 11.26, + "duration_ms": 12.27, "detail": "" }, { @@ -115449,7 +115523,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 4.35, + "duration_ms": 16.08, "detail": "" }, { @@ -115462,7 +115536,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 4.78, + "duration_ms": 15.3, "detail": "" }, { @@ -115470,12 +115544,12 @@ "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/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 4.37, + "duration_ms": 8.68, "detail": "" }, { @@ -115483,12 +115557,12 @@ "operation_id": "vnicprofiles.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v4/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/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.02, + "duration_ms": 14.61, "detail": "" }, { @@ -115496,12 +115570,12 @@ "operation_id": "vnicprofiles.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v4/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/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.89, + "duration_ms": 15.69, "detail": "" }, { @@ -115509,12 +115583,12 @@ "operation_id": "vnicprofiles.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/vnicprofiles/9147676f-4401-4a1d-9f61-af201e38b232", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.46, + "duration_ms": 16.24, "detail": "" }, { @@ -115522,12 +115596,12 @@ "operation_id": "vnicprofiles.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/vnicprofiles/7ed242ac-8d24-4209-a023-c7ca228efb75", + "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": 2.29, + "duration_ms": 10.99, "detail": "" }, { @@ -115535,12 +115609,12 @@ "operation_id": "vnicprofiles.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/vnicprofiles/6a429b68-ad71-44b7-86b5-258403d57905", + "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": 2.1, + "duration_ms": 17.63, "detail": "" }, { @@ -115553,7 +115627,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 13.18, "detail": "" }, { @@ -115566,7 +115640,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 3.36, + "duration_ms": 16.65, "detail": "" }, { @@ -115577,9 +115651,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.7, + "duration_ms": 8.5, "detail": "" }, { @@ -115590,9 +115664,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.83, + "duration_ms": 11.73, "detail": "" }, { @@ -115600,12 +115674,12 @@ "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/8224ce32-6662-5708-9980-140c3639437b", + "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": 5.18, + "duration_ms": 7.05, "detail": "" }, { @@ -115618,7 +115692,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.65, + "duration_ms": 9.11, "detail": "" }, { @@ -115631,7 +115705,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 4.68, + "duration_ms": 10.83, "detail": "" }, { @@ -115644,7 +115718,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 2.64, + "duration_ms": 5.5, "detail": "" }, { @@ -115657,7 +115731,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.22, + "duration_ms": 10.1, "detail": "" }, { @@ -115665,12 +115739,12 @@ "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/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.74, + "duration_ms": 8.78, "detail": "" }, { @@ -115683,7 +115757,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.9, + "duration_ms": 5.61, "detail": "" }, { @@ -115696,7 +115770,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.9, + "duration_ms": 11.04, "detail": "" }, { @@ -115707,9 +115781,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.12, + "duration_ms": 6.98, "detail": "" }, { @@ -115717,12 +115791,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 2.2, + "duration_ms": 11.33, "detail": "" }, { @@ -115730,12 +115804,12 @@ "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/238a0c03-b8f9-56ee-8141-16e41ddd0a58", + "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": 1.81, + "duration_ms": 6.2, "detail": "" }, { @@ -115748,7 +115822,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.97, + "duration_ms": 7.38, "detail": "" }, { @@ -115761,7 +115835,7 @@ "status": "passed", "http_status": 200, "expected_hint": 201, - "duration_ms": 2.38, + "duration_ms": 9.06, "detail": "" }, { @@ -115772,9 +115846,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 6.7, "detail": "" }, { @@ -115785,9 +115859,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 6.66, "detail": "" }, { @@ -115795,12 +115869,12 @@ "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/8c25e806-ce4d-573e-bc31-ed83976beb77", + "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": 2.8, + "duration_ms": 5.04, "detail": "" }, { @@ -115808,12 +115882,12 @@ "operation_id": "steps.list", "method": "GET", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v4/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/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": 2.62, + "duration_ms": 5.52, "detail": "" }, { @@ -115821,12 +115895,12 @@ "operation_id": "steps.add", "method": "POST", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v4/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/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": 2.11, + "duration_ms": 8.02, "detail": "" }, { @@ -115834,12 +115908,12 @@ "operation_id": "steps.get", "method": "GET", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/steps/803fcf7c-4100-4b38-88e3-164dc517197f", + "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": 2.05, + "duration_ms": 7.57, "detail": "" }, { @@ -115847,12 +115921,12 @@ "operation_id": "steps.update", "method": "PUT", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/steps/54677b94-f12b-4cd0-98a5-19e388529e6e", + "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": 1.7, + "duration_ms": 6.55, "detail": "" }, { @@ -115860,12 +115934,12 @@ "operation_id": "steps.remove", "method": "DELETE", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/steps/7912d479-4863-4c88-9420-e584b17b01a2", + "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": 1.63, + "duration_ms": 4.31, "detail": "" }, { @@ -115878,7 +115952,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.0, + "duration_ms": 12.02, "detail": "" }, { @@ -115891,7 +115965,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 5.91, "detail": "" }, { @@ -115902,9 +115976,9 @@ "path_resolved": "/ovirt-engine/api/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.62, + "duration_ms": 8.16, "detail": "" }, { @@ -115917,7 +115991,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.17, + "duration_ms": 7.12, "detail": "" }, { @@ -115928,9 +116002,9 @@ "path_resolved": "/ovirt-engine/api/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.99, + "duration_ms": 6.03, "detail": "" }, { @@ -115943,7 +116017,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.67, + "duration_ms": 6.75, "detail": "" }, { @@ -115954,9 +116028,9 @@ "path_resolved": "/ovirt-engine/api/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.77, + "duration_ms": 12.24, "detail": "" }, { @@ -115969,7 +116043,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 11.27, "detail": "" }, { @@ -115980,9 +116054,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 9.1, "detail": "" }, { @@ -115995,7 +116069,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 11.99, "detail": "" }, { @@ -116006,9 +116080,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 5.64, "detail": "" }, { @@ -116021,7 +116095,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.81, + "duration_ms": 12.12, "detail": "" }, { @@ -116032,9 +116106,9 @@ "path_resolved": "/ovirt-engine/api/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.9, + "duration_ms": 6.49, "detail": "" }, { @@ -116047,7 +116121,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 5.49, "detail": "" }, { @@ -116060,7 +116134,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 6.59, "detail": "" }, { @@ -116073,7 +116147,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 22.97, "detail": "" }, { @@ -116081,12 +116155,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/events/{id}", - "path_resolved": "/ovirt-engine/api/events/1115", + "path_resolved": "/ovirt-engine/api/events/58", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.46, + "duration_ms": 17.53, "detail": "" }, { @@ -116099,7 +116173,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 7.16, "detail": "" }, { @@ -116110,9 +116184,9 @@ "path_resolved": "/ovirt-engine/api/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 6.34, "detail": "" }, { @@ -116125,7 +116199,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 6.4, "detail": "" }, { @@ -116136,9 +116210,9 @@ "path_resolved": "/ovirt-engine/api/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 5.86, "detail": "" }, { @@ -116151,7 +116225,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.9, + "duration_ms": 6.2, "detail": "" }, { @@ -116159,12 +116233,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{id}", - "path_resolved": "/ovirt-engine/api/hosts/87c6668a-9c0e-4df6-afe1-ff98f39f59dd", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 6.51, "detail": "" }, { @@ -116177,7 +116251,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.69, + "duration_ms": 5.61, "detail": "" }, { @@ -116188,9 +116262,9 @@ "path_resolved": "/ovirt-engine/api/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 6.35, "detail": "" }, { @@ -116203,7 +116277,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 4.49, "detail": "" }, { @@ -116214,9 +116288,9 @@ "path_resolved": "/ovirt-engine/api/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 5.39, "detail": "" }, { @@ -116229,7 +116303,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.39, + "duration_ms": 6.8, "detail": "" }, { @@ -116237,12 +116311,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{id}", - "path_resolved": "/ovirt-engine/api/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0", + "path_resolved": "/ovirt-engine/api/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 4.78, "detail": "" }, { @@ -116255,7 +116329,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 4.7, "detail": "" }, { @@ -116263,12 +116337,12 @@ "operation_id": "head.katelloerrata.get", "method": "HEAD", "path_template": "/ovirt-engine/api/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/katelloerrata/70b47d8a-0c3d-45b6-82de-2677c18532ec", + "path_resolved": "/ovirt-engine/api/katelloerrata/fb7c9646-efeb-485e-a955-c32837663bf7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.7, + "duration_ms": 4.92, "detail": "" }, { @@ -116281,7 +116355,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 5.85, "detail": "" }, { @@ -116292,9 +116366,9 @@ "path_resolved": "/ovirt-engine/api/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.42, + "duration_ms": 6.3, "detail": "" }, { @@ -116307,7 +116381,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.75, + "duration_ms": 6.26, "detail": "" }, { @@ -116315,12 +116389,12 @@ "operation_id": "head.networkfilters.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/networkfilters/35e0477e-56f1-42c6-bf7a-dc303e43664f", + "path_resolved": "/ovirt-engine/api/networkfilters/d1f6a031-77b9-4097-a9d0-574bbdb29d4a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.68, + "duration_ms": 4.75, "detail": "" }, { @@ -116333,7 +116407,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.88, + "duration_ms": 6.05, "detail": "" }, { @@ -116341,12 +116415,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{id}", - "path_resolved": "/ovirt-engine/api/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.13, + "duration_ms": 8.95, "detail": "" }, { @@ -116359,7 +116433,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.24, + "duration_ms": 7.35, "detail": "" }, { @@ -116370,9 +116444,9 @@ "path_resolved": "/ovirt-engine/api/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.31, + "duration_ms": 6.68, "detail": "" }, { @@ -116385,7 +116459,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.38, + "duration_ms": 6.77, "detail": "" }, { @@ -116396,9 +116470,9 @@ "path_resolved": "/ovirt-engine/api/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.21, + "duration_ms": 4.92, "detail": "" }, { @@ -116411,7 +116485,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.04, + "duration_ms": 7.09, "detail": "" }, { @@ -116422,9 +116496,9 @@ "path_resolved": "/ovirt-engine/api/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.41, + "duration_ms": 5.6, "detail": "" }, { @@ -116437,7 +116511,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.6, + "duration_ms": 4.51, "detail": "" }, { @@ -116445,12 +116519,12 @@ "operation_id": "head.operatingsystems.get", "method": "HEAD", "path_template": "/ovirt-engine/api/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/operatingsystems/d0f69725-a1cc-4164-9a97-d52faf6e6060", + "path_resolved": "/ovirt-engine/api/operatingsystems/82dcfded-1f35-43d6-804f-2120b481d1b8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.43, + "duration_ms": 6.49, "detail": "" }, { @@ -116463,7 +116537,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 4.4, + "duration_ms": 13.28, "detail": "" }, { @@ -116476,7 +116550,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 8.65, + "duration_ms": 8.95, "detail": "" }, { @@ -116489,7 +116563,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 9.96, + "duration_ms": 7.89, "detail": "" }, { @@ -116500,9 +116574,9 @@ "path_resolved": "/ovirt-engine/api/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 8.96, + "duration_ms": 7.94, "detail": "" }, { @@ -116515,7 +116589,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 5.63, + "duration_ms": 5.26, "detail": "" }, { @@ -116526,9 +116600,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.53, + "duration_ms": 3.71, "detail": "" }, { @@ -116541,7 +116615,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.84, + "duration_ms": 2.96, "detail": "" }, { @@ -116552,9 +116626,9 @@ "path_resolved": "/ovirt-engine/api/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.68, + "duration_ms": 2.9, "detail": "" }, { @@ -116567,7 +116641,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.92, + "duration_ms": 3.13, "detail": "" }, { @@ -116575,12 +116649,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/storageconnections/1b3da01d-0fc6-442a-a298-50fdfec15b23", + "path_resolved": "/ovirt-engine/api/storageconnections/c2ef941a-101f-4d94-aafd-e5a8b50c3b07", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.51, + "duration_ms": 2.68, "detail": "" }, { @@ -116593,7 +116667,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.91, + "duration_ms": 3.04, "detail": "" }, { @@ -116604,9 +116678,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.13, + "duration_ms": 2.79, "detail": "" }, { @@ -116619,7 +116693,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.72, + "duration_ms": 4.58, "detail": "" }, { @@ -116630,9 +116704,9 @@ "path_resolved": "/ovirt-engine/api/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 4.53, "detail": "" }, { @@ -116645,7 +116719,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.76, + "duration_ms": 3.77, "detail": "" }, { @@ -116656,9 +116730,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.78, + "duration_ms": 3.99, "detail": "" }, { @@ -116671,7 +116745,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.22, + "duration_ms": 4.31, "detail": "" }, { @@ -116684,7 +116758,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.79, + "duration_ms": 5.34, "detail": "" }, { @@ -116697,7 +116771,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 5.18, "detail": "" }, { @@ -116708,9 +116782,9 @@ "path_resolved": "/ovirt-engine/api/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.85, + "duration_ms": 5.92, "detail": "" }, { @@ -116723,7 +116797,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 5.02, "detail": "" }, { @@ -116731,12 +116805,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{id}", - "path_resolved": "/ovirt-engine/api/vms/ebb48992-b0e4-4eef-932e-5c0aa9b626e0", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 8.92, "detail": "" }, { @@ -116749,7 +116823,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 3.03, + "duration_ms": 4.87, "detail": "" }, { @@ -116757,12 +116831,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/vnicprofiles/903c0d77-e71a-409d-8155-dbc10cf8661b", + "path_resolved": "/ovirt-engine/api/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 3.06, + "duration_ms": 7.85, "detail": "" }, { @@ -116775,7 +116849,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.98, + "duration_ms": 7.07, "detail": "" }, { @@ -116783,12 +116857,12 @@ "operation_id": "head.imagetransfers.get", "method": "HEAD", "path_template": "/ovirt-engine/api/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/imageTransfers/7be3e701-024b-4acd-95f6-9d441fb56ff1", + "path_resolved": "/ovirt-engine/api/imageTransfers/2464359a-780c-45f8-b548-bd1c8a5ea664", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 6.39, "detail": "" }, { @@ -116801,7 +116875,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.4, + "duration_ms": 7.91, "detail": "" }, { @@ -116812,9 +116886,9 @@ "path_resolved": "/ovirt-engine/api/options/6af3c922-c884-5790-a45b-6c80165937d7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.84, + "duration_ms": 7.4, "detail": "" }, { @@ -116822,12 +116896,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/vms/d147187e-5f94-4e9e-a865-732cab2f8155/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.9, + "duration_ms": 7.67, "detail": "" }, { @@ -116835,12 +116909,12 @@ "operation_id": "head.diskattachments.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/diskattachments/{id}", - "path_resolved": "/ovirt-engine/api/vms/7db77be1-27c8-4cc5-b391-ce33af09fe60/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.84, + "duration_ms": 7.28, "detail": "" }, { @@ -116848,12 +116922,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/vms/85398859-1e71-4a06-bb00-87a3a8b49e0f/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.03, + "duration_ms": 9.47, "detail": "" }, { @@ -116861,12 +116935,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/vms/fa1f00c6-db9e-4707-ad9e-fe21b7af3ea1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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.78, + "duration_ms": 7.66, "detail": "" }, { @@ -116874,12 +116948,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/vms/e6f3e8a6-d8e7-4e9f-b240-56249221203a/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.12, + "duration_ms": 5.31, "detail": "" }, { @@ -116887,12 +116961,12 @@ "operation_id": "head.cdroms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/cdroms/{id}", - "path_resolved": "/ovirt-engine/api/vms/e19875d7-c0cf-4603-b788-97be70918f3d/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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.69, + "duration_ms": 6.88, "detail": "" }, { @@ -116900,12 +116974,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/vms/45770a19-8a5a-4eac-9342-fd32c496f1cd/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.56, + "duration_ms": 7.1, "detail": "" }, { @@ -116913,12 +116987,12 @@ "operation_id": "head.snapshots.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/snapshots/{id}", - "path_resolved": "/ovirt-engine/api/vms/58033876-0a5d-4e09-afb7-64fb9f7073b6/snapshots/517e1ecb-8c69-4bdc-9d88-34e2d12e6eb1", + "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": 1.38, + "duration_ms": 6.26, "detail": "" }, { @@ -116926,12 +117000,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/vms/ba1f2437-b4c4-4344-b28d-51ae6ec4869e/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.55, + "duration_ms": 7.2, "detail": "" }, { @@ -116939,12 +117013,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/vms/c6e1f85a-df5c-40e4-9bdf-65db6b287596/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.21, + "duration_ms": 5.61, "detail": "" }, { @@ -116952,12 +117026,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/vms/7df3c6fb-e127-484b-b6bb-736c796277ed/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": 1.7, + "duration_ms": 15.69, "detail": "" }, { @@ -116965,12 +117039,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/vms/3fb5c450-2d77-4411-9625-ce5f5ec4cd33/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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": 1.6, + "duration_ms": 10.98, "detail": "" }, { @@ -116978,12 +117052,12 @@ "operation_id": "head.graphicsconsoles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/vms/03e3e61c-44d3-4ebc-acdf-22091a289be4/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.7, + "duration_ms": 11.84, "detail": "" }, { @@ -116991,12 +117065,12 @@ "operation_id": "head.graphicsconsoles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/vms/{vm_id}/graphicsconsoles/{id}", - "path_resolved": "/ovirt-engine/api/vms/1fca212d-1634-43bf-a13e-43ef7f2c7d5a/graphicsconsoles/e16a66e6-2331-40cf-831c-edb8b31cc04b", + "path_resolved": "/ovirt-engine/api/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/bf500a40-5322-44fb-a545-0c70ac089bb3", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 8.98, "detail": "" }, { @@ -117004,12 +117078,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/hosts/3751930f-354d-4307-937c-25ca66cbff43/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.77, + "duration_ms": 6.35, "detail": "" }, { @@ -117017,12 +117091,12 @@ "operation_id": "head.nics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/nics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/ae427716-b522-4f86-96e5-4f1756604c01/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.83, + "duration_ms": 7.87, "detail": "" }, { @@ -117030,12 +117104,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/hosts/e1b82940-655f-4e01-ab10-11a7538ce493/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.87, + "duration_ms": 6.81, "detail": "" }, { @@ -117043,12 +117117,12 @@ "operation_id": "head.tags.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/tags/{id}", - "path_resolved": "/ovirt-engine/api/hosts/c90319c0-3b5d-4f1b-9acf-acb631607430/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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.59, + "duration_ms": 6.21, "detail": "" }, { @@ -117056,12 +117130,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/hosts/f8fc81a7-8cc3-43ba-aeb6-fa0cffbb6696/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.63, + "duration_ms": 7.79, "detail": "" }, { @@ -117069,12 +117143,12 @@ "operation_id": "head.permissions.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/permissions/{id}", - "path_resolved": "/ovirt-engine/api/hosts/0680ee1d-a0da-44ee-ba33-9efdc853712a/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.55, + "duration_ms": 4.66, "detail": "" }, { @@ -117082,12 +117156,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/hosts/baaad18d-e1ca-448b-8507-114badfe528f/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.51, + "duration_ms": 3.46, "detail": "" }, { @@ -117095,12 +117169,12 @@ "operation_id": "head.statistics.get", "method": "HEAD", "path_template": "/ovirt-engine/api/hosts/{host_id}/statistics/{id}", - "path_resolved": "/ovirt-engine/api/hosts/00880e30-f934-47aa-a60d-26dba640ae6b/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 3.32, "detail": "" }, { @@ -117113,7 +117187,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 3.36, "detail": "" }, { @@ -117121,12 +117195,12 @@ "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/4dcc09c1-a08b-4b2b-a945-e435e901141c", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a091b768-2a69-4ac2-9cfb-d7931810e6f0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 2.14, + "duration_ms": 3.25, "detail": "" }, { @@ -117137,9 +117211,9 @@ "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 6.12, "detail": "" }, { @@ -117147,12 +117221,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 5.6, "detail": "" }, { @@ -117165,7 +117239,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 4.58, "detail": "" }, { @@ -117178,7 +117252,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 6.53, "detail": "" }, { @@ -117191,7 +117265,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 23.25, "detail": "" }, { @@ -117202,9 +117276,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 13.57, "detail": "" }, { @@ -117215,9 +117289,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 6.9, "detail": "" }, { @@ -117228,9 +117302,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 5.67, "detail": "" }, { @@ -117241,9 +117315,9 @@ "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 4.9, "detail": "" }, { @@ -117251,12 +117325,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 4.37, "detail": "" }, { @@ -117269,7 +117343,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 5.69, "detail": "" }, { @@ -117277,12 +117351,12 @@ "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/2a736278-65ae-498d-863e-3f4d0ec44fbc", + "path_resolved": "/ovirt-engine/api/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 4.64, "detail": "" }, { @@ -117295,7 +117369,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 7.44, "detail": "" }, { @@ -117308,7 +117382,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 9.71, "detail": "" }, { @@ -117316,12 +117390,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/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.52, + "duration_ms": 20.24, "detail": "" }, { @@ -117329,12 +117403,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/networks/{network_id}/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/vnicprofiles/00b81377-7ad3-4751-b333-fd9aef01a761", + "path_resolved": "/ovirt-engine/api/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 24.93, "detail": "" }, { @@ -117347,7 +117421,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 4.62, "detail": "" }, { @@ -117358,9 +117432,9 @@ "path_resolved": "/ovirt-engine/api/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 3.56, "detail": "" }, { @@ -117373,7 +117447,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 4.13, "detail": "" }, { @@ -117386,7 +117460,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 3.43, "detail": "" }, { @@ -117399,7 +117473,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 4.02, "detail": "" }, { @@ -117410,9 +117484,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.85, + "duration_ms": 3.19, "detail": "" }, { @@ -117425,7 +117499,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 2.92, "detail": "" }, { @@ -117436,9 +117510,9 @@ "path_resolved": "/ovirt-engine/api/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 3.01, "detail": "" }, { @@ -117446,12 +117520,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/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": 1.54, + "duration_ms": 2.77, "detail": "" }, { @@ -117459,12 +117533,12 @@ "operation_id": "head.steps.get", "method": "HEAD", "path_template": "/ovirt-engine/api/jobs/{job_id}/steps/{id}", - "path_resolved": "/ovirt-engine/api/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/steps/314a6e11-62c3-49e6-bb70-df78e5bd8c17", + "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": 1.37, + "duration_ms": 4.95, "detail": "" }, { @@ -117477,7 +117551,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.71, + "duration_ms": 7.86, "detail": "" }, { @@ -117490,7 +117564,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.61, + "duration_ms": 4.59, "detail": "" }, { @@ -117501,9 +117575,9 @@ "path_resolved": "/ovirt-engine/api/v4/affinitylabels/8d2d49df-9b9a-548a-8f29-0a14e2c91696", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 4.09, "detail": "" }, { @@ -117516,7 +117590,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 3.1, "detail": "" }, { @@ -117527,9 +117601,9 @@ "path_resolved": "/ovirt-engine/api/v4/bookmarks/41bd259d-99ba-57db-b003-b8858163a652", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 3.81, "detail": "" }, { @@ -117542,7 +117616,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.11, + "duration_ms": 3.33, "detail": "" }, { @@ -117553,9 +117627,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusterlevels/be3dfc42-61b8-5249-891c-003376268fa4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 3.13, "detail": "" }, { @@ -117568,7 +117642,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 2.6, "detail": "" }, { @@ -117579,9 +117653,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.5, "detail": "" }, { @@ -117594,7 +117668,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.46, "detail": "" }, { @@ -117605,9 +117679,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.6, "detail": "" }, { @@ -117620,7 +117694,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 3.39, "detail": "" }, { @@ -117631,9 +117705,9 @@ "path_resolved": "/ovirt-engine/api/v4/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 2.88, "detail": "" }, { @@ -117646,7 +117720,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.38, "detail": "" }, { @@ -117659,7 +117733,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 2.27, "detail": "" }, { @@ -117672,7 +117746,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 2.37, "detail": "" }, { @@ -117680,12 +117754,12 @@ "operation_id": "head.events.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/events/{id}", - "path_resolved": "/ovirt-engine/api/v4/events/1115", + "path_resolved": "/ovirt-engine/api/v4/events/58", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.28, "detail": "" }, { @@ -117698,7 +117772,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 2.51, "detail": "" }, { @@ -117709,9 +117783,9 @@ "path_resolved": "/ovirt-engine/api/v4/externalhostproviders/b3313044-239a-5c84-8c75-f25bf5269a11", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 2.52, "detail": "" }, { @@ -117724,7 +117798,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 2.48, "detail": "" }, { @@ -117735,9 +117809,9 @@ "path_resolved": "/ovirt-engine/api/v4/groups/2e6ba3e7-cc58-593d-9a71-0f9ec7fac109", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.4, "detail": "" }, { @@ -117750,7 +117824,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 2.35, "detail": "" }, { @@ -117758,12 +117832,12 @@ "operation_id": "head.hosts.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{id}", - "path_resolved": "/ovirt-engine/api/v4/hosts/875cef58-aaac-4cfb-afd3-31180fd794cb", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.28, "detail": "" }, { @@ -117776,7 +117850,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 2.55, "detail": "" }, { @@ -117787,9 +117861,9 @@ "path_resolved": "/ovirt-engine/api/v4/icons/25d323b9-11bf-5dd0-b07c-c5c8d22a80ce", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 2.44, "detail": "" }, { @@ -117802,7 +117876,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.48, + "duration_ms": 4.5, "detail": "" }, { @@ -117813,9 +117887,9 @@ "path_resolved": "/ovirt-engine/api/v4/instancetypes/025341da-e43f-52c5-ad75-2fabc7a3fb99", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.73, + "duration_ms": 5.96, "detail": "" }, { @@ -117828,7 +117902,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.24, + "duration_ms": 14.04, "detail": "" }, { @@ -117836,12 +117910,12 @@ "operation_id": "head.jobs.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/jobs/{id}", - "path_resolved": "/ovirt-engine/api/v4/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0", + "path_resolved": "/ovirt-engine/api/v4/jobs/a836ba29-7bb5-44f5-9629-8f219dd7abe4", "kind": "item", "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.59, + "duration_ms": 5.27, "detail": "" }, { @@ -117854,7 +117928,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 8.3, "detail": "" }, { @@ -117862,12 +117936,12 @@ "operation_id": "head.katelloerrata.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/katelloerrata/{id}", - "path_resolved": "/ovirt-engine/api/v4/katelloerrata/70b47d8a-0c3d-45b6-82de-2677c18532ec", + "path_resolved": "/ovirt-engine/api/v4/katelloerrata/fb7c9646-efeb-485e-a955-c32837663bf7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 5.36, "detail": "" }, { @@ -117880,7 +117954,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 5.16, "detail": "" }, { @@ -117891,9 +117965,9 @@ "path_resolved": "/ovirt-engine/api/v4/macpools/67eeb84a-19a4-57fa-88d6-e1a6e0847517", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 7.45, "detail": "" }, { @@ -117906,7 +117980,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 9.05, "detail": "" }, { @@ -117914,12 +117988,12 @@ "operation_id": "head.networkfilters.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/networkfilters/{id}", - "path_resolved": "/ovirt-engine/api/v4/networkfilters/35e0477e-56f1-42c6-bf7a-dc303e43664f", + "path_resolved": "/ovirt-engine/api/v4/networkfilters/d1f6a031-77b9-4097-a9d0-574bbdb29d4a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 7.22, "detail": "" }, { @@ -117932,7 +118006,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 4.83, "detail": "" }, { @@ -117940,12 +118014,12 @@ "operation_id": "head.networks.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/networks/{id}", - "path_resolved": "/ovirt-engine/api/v4/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 6.92, "detail": "" }, { @@ -117958,7 +118032,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.09, + "duration_ms": 8.02, "detail": "" }, { @@ -117969,9 +118043,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstackimageproviders/f4351207-3aa7-5ea6-82dc-588edfb35949", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 11.81, "detail": "" }, { @@ -117984,7 +118058,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 6.42, "detail": "" }, { @@ -117995,9 +118069,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstacknetworkproviders/08d01c4b-421b-56b0-9c9d-60773e301b71", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.63, + "duration_ms": 6.07, "detail": "" }, { @@ -118010,7 +118084,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 6.64, "detail": "" }, { @@ -118021,9 +118095,9 @@ "path_resolved": "/ovirt-engine/api/v4/openstackvolumeproviders/8ac6b67d-ca9a-504e-9575-a736fd185483", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 7.03, "detail": "" }, { @@ -118036,7 +118110,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 6.23, "detail": "" }, { @@ -118044,12 +118118,12 @@ "operation_id": "head.operatingsystems.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/operatingsystems/{id}", - "path_resolved": "/ovirt-engine/api/v4/operatingsystems/d0f69725-a1cc-4164-9a97-d52faf6e6060", + "path_resolved": "/ovirt-engine/api/v4/operatingsystems/82dcfded-1f35-43d6-804f-2120b481d1b8", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.6, + "duration_ms": 5.75, "detail": "" }, { @@ -118062,7 +118136,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.66, + "duration_ms": 5.43, "detail": "" }, { @@ -118075,7 +118149,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.55, + "duration_ms": 5.03, "detail": "" }, { @@ -118088,7 +118162,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 5.57, "detail": "" }, { @@ -118099,9 +118173,9 @@ "path_resolved": "/ovirt-engine/api/v4/roles/f1402964-b206-54ba-ad9a-3e521a89bca6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 5.82, "detail": "" }, { @@ -118114,7 +118188,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 7.24, "detail": "" }, { @@ -118125,9 +118199,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicies/b021976f-8f3f-5597-b9f6-8964d5cbd845", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.57, + "duration_ms": 9.27, "detail": "" }, { @@ -118140,7 +118214,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 9.37, "detail": "" }, { @@ -118151,9 +118225,9 @@ "path_resolved": "/ovirt-engine/api/v4/schedulingpolicyunits/41ce6e39-ebd5-584e-a875-65586bdc7f02", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.53, + "duration_ms": 10.96, "detail": "" }, { @@ -118166,7 +118240,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.5, + "duration_ms": 7.97, "detail": "" }, { @@ -118174,12 +118248,12 @@ "operation_id": "head.storageconnections.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/storageconnections/{id}", - "path_resolved": "/ovirt-engine/api/v4/storageconnections/1b3da01d-0fc6-442a-a298-50fdfec15b23", + "path_resolved": "/ovirt-engine/api/v4/storageconnections/c2ef941a-101f-4d94-aafd-e5a8b50c3b07", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.52, + "duration_ms": 12.93, "detail": "" }, { @@ -118192,7 +118266,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 16.33, "detail": "" }, { @@ -118203,9 +118277,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 50.12, "detail": "" }, { @@ -118218,7 +118292,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 16.3, "detail": "" }, { @@ -118229,9 +118303,9 @@ "path_resolved": "/ovirt-engine/api/v4/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 13.59, "detail": "" }, { @@ -118244,7 +118318,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.37, + "duration_ms": 9.47, "detail": "" }, { @@ -118255,9 +118329,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 5.04, "detail": "" }, { @@ -118270,7 +118344,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 4.44, "detail": "" }, { @@ -118283,7 +118357,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 5.73, "detail": "" }, { @@ -118296,7 +118370,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 3.32, "detail": "" }, { @@ -118307,9 +118381,9 @@ "path_resolved": "/ovirt-engine/api/v4/vmpools/2a487b4f-379b-5895-9ba3-0cd9aec1d566", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 2.82, "detail": "" }, { @@ -118322,7 +118396,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 2.89, "detail": "" }, { @@ -118330,12 +118404,12 @@ "operation_id": "head.vms.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{id}", - "path_resolved": "/ovirt-engine/api/v4/vms/4339bc00-1b29-4c73-bdf5-87d2a4238b15", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 2.88, "detail": "" }, { @@ -118348,7 +118422,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.47, + "duration_ms": 2.66, "detail": "" }, { @@ -118356,12 +118430,12 @@ "operation_id": "head.vnicprofiles.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vnicprofiles/{id}", - "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/dd66de32-69f5-4e3a-b097-cec46dc32724", + "path_resolved": "/ovirt-engine/api/v4/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.51, + "duration_ms": 3.93, "detail": "" }, { @@ -118374,7 +118448,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 2.19, + "duration_ms": 5.0, "detail": "" }, { @@ -118382,12 +118456,12 @@ "operation_id": "head.imagetransfers.get", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/imageTransfers/{id}", - "path_resolved": "/ovirt-engine/api/v4/imageTransfers/7be3e701-024b-4acd-95f6-9d441fb56ff1", + "path_resolved": "/ovirt-engine/api/v4/imageTransfers/2464359a-780c-45f8-b548-bd1c8a5ea664", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.54, + "duration_ms": 4.91, "detail": "" }, { @@ -118400,7 +118474,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.86, + "duration_ms": 11.9, "detail": "" }, { @@ -118411,9 +118485,9 @@ "path_resolved": "/ovirt-engine/api/v4/options/6af3c922-c884-5790-a45b-6c80165937d7", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.58, + "duration_ms": 9.28, "detail": "" }, { @@ -118421,12 +118495,12 @@ "operation_id": "head.diskattachments.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/diskattachments", - "path_resolved": "/ovirt-engine/api/v4/vms/2bc78d0b-12b6-49e4-9346-f0ae08f3cbc8/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": 1.56, + "duration_ms": 7.2, "detail": "" }, { @@ -118434,12 +118508,12 @@ "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/73aacf55-54c9-4240-bfad-370435f54d6c/diskattachments/8224ce32-6662-5708-9980-140c3639437b", + "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.57, + "duration_ms": 5.15, "detail": "" }, { @@ -118447,12 +118521,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/vms/1fb82009-dc6c-49e2-b653-a7cfc780110b/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.48, + "duration_ms": 6.27, "detail": "" }, { @@ -118460,12 +118534,12 @@ "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/93d48b9e-573a-4111-b83e-57076bfe3039/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "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": 1.33, + "duration_ms": 6.75, "detail": "" }, { @@ -118473,12 +118547,12 @@ "operation_id": "head.cdroms.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/cdroms", - "path_resolved": "/ovirt-engine/api/v4/vms/31bc26bb-ec7a-47fb-ac95-bb945bf1b2b9/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.52, + "duration_ms": 10.03, "detail": "" }, { @@ -118486,12 +118560,12 @@ "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/69c177e3-6991-4da9-9418-b3eee5f4401e/cdroms/44ad8d4b-108a-5488-b6e7-f4f15a6393a2", + "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": 1.5, + "duration_ms": 9.26, "detail": "" }, { @@ -118499,12 +118573,12 @@ "operation_id": "head.snapshots.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/snapshots", - "path_resolved": "/ovirt-engine/api/v4/vms/5798f6b7-88a2-4d4c-b988-780f0be67b39/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": 1.41, + "duration_ms": 10.52, "detail": "" }, { @@ -118512,12 +118586,12 @@ "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/196ec41f-25db-4ca9-8da2-372db009c335/snapshots/e8d20415-571f-46f9-873c-6f213acc403d", + "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": 1.29, + "duration_ms": 7.59, "detail": "" }, { @@ -118525,12 +118599,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/vms/3b380491-59ed-46f5-a46a-d575fc627d18/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": 1.43, + "duration_ms": 6.75, "detail": "" }, { @@ -118538,12 +118612,12 @@ "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/50e8af3f-73e3-4bee-828f-fe121f4595ae/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.33, + "duration_ms": 6.56, "detail": "" }, { @@ -118551,12 +118625,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/vms/dc474d7e-b67e-49df-87b8-3acdb7668d19/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": 1.54, + "duration_ms": 7.78, "detail": "" }, { @@ -118564,12 +118638,12 @@ "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/d90ab068-d100-458f-93b7-72135cdb6f88/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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.46, + "duration_ms": 6.86, "detail": "" }, { @@ -118577,12 +118651,12 @@ "operation_id": "head.graphicsconsoles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/vms/{vm_id}/graphicsconsoles", - "path_resolved": "/ovirt-engine/api/v4/vms/20a1637c-2611-4bdf-8ca1-f6f257fc2d27/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.43, + "duration_ms": 9.28, "detail": "" }, { @@ -118590,12 +118664,12 @@ "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/3db5a3b8-be7e-48eb-8594-fe8d62488a50/graphicsconsoles/e16a66e6-2331-40cf-831c-edb8b31cc04b", + "path_resolved": "/ovirt-engine/api/v4/vms/da3de448-ef5b-522c-b550-6cf46c6bc4e4/graphicsconsoles/bf500a40-5322-44fb-a545-0c70ac089bb3", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 8.16, "detail": "" }, { @@ -118603,12 +118677,12 @@ "operation_id": "head.nics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/nics", - "path_resolved": "/ovirt-engine/api/v4/hosts/4e0fb0b3-5511-4735-9e98-62a92ed9c4d5/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.44, + "duration_ms": 10.82, "detail": "" }, { @@ -118616,12 +118690,12 @@ "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/b9980f2f-9a9c-4964-b09c-abbedea1c6a9/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/nics/32c3368e-3e3c-592f-89b8-e34a9daa23f2", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 16.0, "detail": "" }, { @@ -118629,12 +118703,12 @@ "operation_id": "head.tags.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/tags", - "path_resolved": "/ovirt-engine/api/v4/hosts/b95ad0d0-a131-43cb-9a88-f85c3d49c511/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": 1.65, + "duration_ms": 9.98, "detail": "" }, { @@ -118642,12 +118716,12 @@ "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/75b02d0d-056a-4438-85dc-0e2bd7a7673b/tags/eba0db57-c6fd-59ef-a133-caed4faff49b", + "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": 1.58, + "duration_ms": 15.09, "detail": "" }, { @@ -118655,12 +118729,12 @@ "operation_id": "head.permissions.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/permissions", - "path_resolved": "/ovirt-engine/api/v4/hosts/376b0006-1020-4374-a8f3-a207df913d72/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.22, + "duration_ms": 11.75, "detail": "" }, { @@ -118668,12 +118742,12 @@ "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/734c2aad-3f66-4f39-bef3-09956caacf82/permissions/ef580a31-8945-51c7-8e15-7051f24f386e", + "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, + "duration_ms": 13.01, "detail": "" }, { @@ -118681,12 +118755,12 @@ "operation_id": "head.statistics.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/hosts/{host_id}/statistics", - "path_resolved": "/ovirt-engine/api/v4/hosts/fa39cc7e-655b-4a45-af0c-93f2ced5fee6/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.49, + "duration_ms": 11.43, "detail": "" }, { @@ -118694,12 +118768,12 @@ "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/8ab3737b-8824-461f-919c-d434cc66ad2c/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", + "path_resolved": "/ovirt-engine/api/v4/hosts/92889601-d47a-57ee-8244-33b5d50d6fa1/statistics/70c4da96-4a2d-51ec-8587-ed42f45e61a6", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 7.17, "detail": "" }, { @@ -118712,7 +118786,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 15.99, "detail": "" }, { @@ -118720,12 +118794,12 @@ "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/91727c55-719c-4a2b-94f6-937e2bac1357", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/affinitygroups/a091b768-2a69-4ac2-9cfb-d7931810e6f0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 7.27, "detail": "" }, { @@ -118736,9 +118810,9 @@ "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 8.94, "detail": "" }, { @@ -118746,12 +118820,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/v4/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.29, + "duration_ms": 12.06, "detail": "" }, { @@ -118764,7 +118838,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 11.6, "detail": "" }, { @@ -118777,7 +118851,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 6.59, "detail": "" }, { @@ -118790,7 +118864,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.87, + "duration_ms": 3.91, "detail": "" }, { @@ -118801,9 +118875,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.39, + "duration_ms": 3.68, "detail": "" }, { @@ -118814,9 +118888,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.33, + "duration_ms": 4.67, "detail": "" }, { @@ -118827,9 +118901,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/clusters/dae07aa2-5322-5733-9c7e-4848aec6467a", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 7.41, "detail": "" }, { @@ -118840,9 +118914,9 @@ "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks", "kind": "collection", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.34, + "duration_ms": 8.93, "detail": "" }, { @@ -118850,12 +118924,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.44, + "duration_ms": 7.34, "detail": "" }, { @@ -118868,7 +118942,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.32, + "duration_ms": 8.44, "detail": "" }, { @@ -118876,12 +118950,12 @@ "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/2a736278-65ae-498d-863e-3f4d0ec44fbc", + "path_resolved": "/ovirt-engine/api/v4/datacenters/4aec0d88-bbe3-50a9-9547-b4493406ec4d/quotas/f87ba92c-b8e6-5591-b970-0f82869499f9", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.45, + "duration_ms": 7.56, "detail": "" }, { @@ -118894,7 +118968,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 8.01, "detail": "" }, { @@ -118907,7 +118981,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.41, + "duration_ms": 7.15, "detail": "" }, { @@ -118915,12 +118989,12 @@ "operation_id": "head.vnicprofiles.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/networks/{network_id}/vnicprofiles", - "path_resolved": "/ovirt-engine/api/v4/networks/0b0c9828-c5e0-4d87-a78f-853df8dedb12/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": 1.38, + "duration_ms": 11.7, "detail": "" }, { @@ -118928,12 +119002,12 @@ "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/0b0c9828-c5e0-4d87-a78f-853df8dedb12/vnicprofiles/20e6025c-9922-4c82-9661-ec8b122f3455", + "path_resolved": "/ovirt-engine/api/v4/networks/e09fdc1f-85dc-5702-b7d5-564d93280e65/vnicprofiles/ad8843f3-bbe7-5eaa-a8af-8b24787080b0", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.42, + "duration_ms": 7.36, "detail": "" }, { @@ -118946,7 +119020,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.4, + "duration_ms": 17.4, "detail": "" }, { @@ -118957,9 +119031,9 @@ "path_resolved": "/ovirt-engine/api/v4/templates/4ab4e89c-22c7-524b-9ad6-aa0c4d95b5e9/diskattachments/8224ce32-6662-5708-9980-140c3639437b", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.48, + "duration_ms": 8.55, "detail": "" }, { @@ -118972,7 +119046,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.49, + "duration_ms": 8.23, "detail": "" }, { @@ -118985,7 +119059,7 @@ "status": "passed", "http_status": 404, "expected_hint": 200, - "duration_ms": 1.46, + "duration_ms": 13.55, "detail": "" }, { @@ -118998,7 +119072,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 17.91, "detail": "" }, { @@ -119009,9 +119083,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/disks/238a0c03-b8f9-56ee-8141-16e41ddd0a58", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 9.74, "detail": "" }, { @@ -119024,7 +119098,7 @@ "status": "passed", "http_status": 200, "expected_hint": 200, - "duration_ms": 1.43, + "duration_ms": 7.96, "detail": "" }, { @@ -119035,9 +119109,9 @@ "path_resolved": "/ovirt-engine/api/v4/storagedomains/fe9df8fa-48fc-5c20-bed9-08b1aef50877/files/8c25e806-ce4d-573e-bc31-ed83976beb77", "kind": "item", "status": "passed", - "http_status": 404, + "http_status": 200, "expected_hint": 200, - "duration_ms": 1.36, + "duration_ms": 6.54, "detail": "" }, { @@ -119045,12 +119119,12 @@ "operation_id": "head.steps.list", "method": "HEAD", "path_template": "/ovirt-engine/api/v4/jobs/{job_id}/steps", - "path_resolved": "/ovirt-engine/api/v4/jobs/76a923f4-d443-4880-a19e-cd9883d3e4d0/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": 1.32, + "duration_ms": 4.77, "detail": "" }, { @@ -119058,12 +119132,12 @@ "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/76a923f4-d443-4880-a19e-cd9883d3e4d0/steps/2873bb67-c699-40ce-b59f-053b1bac3148", + "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": 1.28, + "duration_ms": 4.03, "detail": "" } ] diff --git a/pulumi-tests/reports/pulumi-stack-summary.json b/pulumi-tests/reports/pulumi-stack-summary.json index bde7f76..47f747c 100644 --- a/pulumi-tests/reports/pulumi-stack-summary.json +++ b/pulumi-tests/reports/pulumi-stack-summary.json @@ -3,6 +3,80 @@ "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, diff --git a/tests/ovirt/conftest.py b/tests/ovirt/conftest.py index 2f5f27d..4917f5a 100644 --- a/tests/ovirt/conftest.py +++ b/tests/ovirt/conftest.py @@ -9,18 +9,41 @@ import requests def discover_base_url() -> str: - for candidate in ( - os.environ.get("OVIRT_TEST_URL"), - "https://api-gateway", - "https://127.0.0.1", - "https://127.0.0.1:9443", - ): - if not candidate: + """Prefer OVIRT_TEST_URL / OVIRT_ENGINE_PORT; require Engine SSO path (not a foreign :443).""" + + port = (os.environ.get("OVIRT_ENGINE_PORT") or "").strip() + candidates: list[str] = [] + if os.environ.get("OVIRT_TEST_URL"): + candidates.append(os.environ["OVIRT_TEST_URL"].rstrip("/")) + candidates.append("https://api-gateway") + if port and port != "443": + candidates.append(f"https://127.0.0.1:{port}") + candidates.extend( + [ + "https://127.0.0.1:7443", + "https://127.0.0.1:6443", + "https://127.0.0.1", + "https://127.0.0.1:9443", + ] + ) + seen: set[str] = set() + for candidate in candidates: + if not candidate or candidate in seen: continue + seen.add(candidate) try: - r = requests.get(f"{candidate.rstrip('/')}/health/live", timeout=3, verify=False) - if r.status_code == 200: - return candidate.rstrip("/") + live = requests.get(f"{candidate}/health/live", timeout=3, verify=False) + if live.status_code != 200: + continue + # Distinguish this lab from other listeners on :443. + probe = requests.get( + f"{candidate}/ovirt-engine/api/", + headers={"Accept": "application/json"}, + timeout=3, + verify=False, + ) + if probe.status_code in {200, 401}: + return candidate except Exception: continue pytest.skip("no running oVirt simulator gateway") diff --git a/tests/ovirt/test_nested_realism.py b/tests/ovirt/test_nested_realism.py new file mode 100644 index 0000000..51f51f4 --- /dev/null +++ b/tests/ovirt/test_nested_realism.py @@ -0,0 +1,282 @@ +"""Nested inventory + affinity/quota realism after minimal seed.""" + +from __future__ import annotations + +import uuid + +import pytest +import requests + +from app.ovirt.ids import stable_id + +from .conftest import auth_headers, collection_items, oauth_token + +pytestmark = pytest.mark.integration + + +@pytest.fixture(scope="module") +def session_ctx(): + from .conftest import discover_base_url + + base = discover_base_url() + token = oauth_token(base) + return base, auth_headers(token, version="4") + + +def _ids() -> dict[str, str]: + return { + "vm": str(stable_id("vm", "lab-vm-01")), + "dc": str(stable_id("dc", "Default")), + "cluster": str(stable_id("cluster", "Default")), + "host": str(stable_id("host", "host01")), + "nic": str(stable_id("nic", "lab-vm-01")), + "snap": str(stable_id("snap", "lab-vm-01", "1")), + "user": str(stable_id("user", "admin")), + "net": str(stable_id("net", "ovirtmgmt")), + } + + +def test_nested_seeded_collections_non_empty(session_ctx) -> None: + base, headers = session_ctx + ids = _ids() + probes = [ + (f"/ovirt-engine/api/datacenters/{ids['dc']}/quotas", "quota"), + (f"/ovirt-engine/api/clusters/{ids['cluster']}/affinitygroups", "affinity_group"), + (f"/ovirt-engine/api/vms/{ids['vm']}/nics", "nic"), + (f"/ovirt-engine/api/vms/{ids['vm']}/snapshots", "snapshot"), + (f"/ovirt-engine/api/vms/{ids['vm']}/diskattachments", "disk_attachment"), + (f"/ovirt-engine/api/vms/{ids['vm']}/graphicsconsoles", "graphics_console"), + (f"/ovirt-engine/api/vms/{ids['vm']}/mediateddevices", "vm_mediated_device"), + (f"/ovirt-engine/api/vms/{ids['vm']}/affinitylabels", "affinity_label"), + (f"/ovirt-engine/api/hosts/{ids['host']}/nics", "nic"), + (f"/ovirt-engine/api/hosts/{ids['host']}/storage", "host_storage"), + (f"/ovirt-engine/api/clusters/{ids['cluster']}/glustervolumes", "gluster_volume"), + (f"/ovirt-engine/api/networks/{ids['net']}/networklabels", "network_label"), + (f"/ovirt-engine/api/users/{ids['user']}/sshpublickeys", "ssh_public_key"), + ("/ovirt-engine/api/affinitygroups", "affinity_group"), + ("/ovirt-engine/api/quotas", "quota"), + ] + for path, element in probes: + r = requests.get(f"{base}{path}", headers=headers, verify=False, timeout=60) + assert r.status_code == 200, f"{path}: {r.status_code} {r.text[:200]}" + items = collection_items(r.json(), element) + assert len(items) >= 1, f"{path}: expected non-empty {element}" + assert items[0].get("id") and items[0].get("href") + + +def test_job_steps_and_event_entity_href(session_ctx) -> None: + base, headers = session_ctx + jobs = requests.get(f"{base}/ovirt-engine/api/jobs", headers=headers, verify=False, timeout=60) + assert jobs.status_code == 200 + job = collection_items(jobs.json(), "job")[0] + steps = requests.get( + f"{base}/ovirt-engine/api/jobs/{job['id']}/steps", + headers=headers, + verify=False, + timeout=60, + ) + assert steps.status_code == 200 + step = collection_items(steps.json(), "step")[0] + assert step.get("href") == f"/ovirt-engine/api/jobs/{job['id']}/steps/{step['id']}" + one = requests.get( + f"{base}/ovirt-engine/api/jobs/{job['id']}/steps/{step['id']}", + headers=headers, + verify=False, + timeout=60, + ) + assert one.status_code == 200 + assert one.json()["step"]["href"] + + events = requests.get( + f"{base}/ovirt-engine/api/events", headers=headers, verify=False, timeout=60 + ) + assert events.status_code == 200 + ev = collection_items(events.json(), "event")[0] + one_ev = requests.get( + f"{base}/ovirt-engine/api/events/{ev['id']}", + headers=headers, + verify=False, + timeout=60, + ) + assert one_ev.status_code == 200 + assert one_ev.json()["event"].get("href") + + +def test_vm_tag_and_permission_get_by_id(session_ctx) -> None: + base, headers = session_ctx + ids = _ids() + tags = requests.get( + f"{base}/ovirt-engine/api/vms/{ids['vm']}/tags", + headers=headers, + verify=False, + timeout=60, + ) + assert tags.status_code == 200 + tag = collection_items(tags.json(), "tag")[0] + one_tag = requests.get( + f"{base}/ovirt-engine/api/vms/{ids['vm']}/tags/{tag['id']}", + headers=headers, + verify=False, + timeout=60, + ) + assert one_tag.status_code == 200, one_tag.text + assert one_tag.json()["tag"]["id"] == tag["id"] + + perms = requests.get( + f"{base}/ovirt-engine/api/vms/{ids['vm']}/permissions", + headers=headers, + verify=False, + timeout=60, + ) + assert perms.status_code == 200 + perm = collection_items(perms.json(), "permission")[0] + one_perm = requests.get( + f"{base}/ovirt-engine/api/vms/{ids['vm']}/permissions/{perm['id']}", + headers=headers, + verify=False, + timeout=60, + ) + assert one_perm.status_code == 200, one_perm.text + assert one_perm.json()["permission"]["id"] == perm["id"] + assert one_perm.json()["permission"].get("href") + + +def test_nic_and_snapshot_get_by_id(session_ctx) -> None: + base, headers = session_ctx + ids = _ids() + nic = requests.get( + f"{base}/ovirt-engine/api/vms/{ids['vm']}/nics/{ids['nic']}", + headers=headers, + verify=False, + timeout=60, + ) + assert nic.status_code == 200, nic.text + assert nic.json()["nic"]["id"] == ids["nic"] + + snap = requests.get( + f"{base}/ovirt-engine/api/vms/{ids['vm']}/snapshots/{ids['snap']}", + headers=headers, + verify=False, + timeout=60, + ) + assert snap.status_code == 200, snap.text + assert snap.json()["snapshot"]["id"] == ids["snap"] + + +def test_affinity_group_create_returns_entity(session_ctx) -> None: + base, headers = session_ctx + cluster = str(stable_id("cluster", "Default")) + name = f"ag-{uuid.uuid4().hex[:8]}" + r = requests.post( + f"{base}/ovirt-engine/api/clusters/{cluster}/affinitygroups", + headers=headers, + json={"affinity_group": {"name": name, "enforcing": False}}, + verify=False, + timeout=60, + ) + assert r.status_code == 201, r.text + body = r.json()["affinity_group"] + assert body["name"] == name + assert body["id"] and "/affinitygroups/" in body["href"] + + listing = requests.get( + f"{base}/ovirt-engine/api/clusters/{cluster}/affinitygroups", + headers=headers, + verify=False, + timeout=60, + ) + names = [i["name"] for i in collection_items(listing.json(), "affinity_group")] + assert name in names + + +def test_quota_create_and_read_after_write(session_ctx) -> None: + base, headers = session_ctx + dc = str(stable_id("dc", "Default")) + name = f"quota-{uuid.uuid4().hex[:8]}" + created = requests.post( + f"{base}/ovirt-engine/api/datacenters/{dc}/quotas", + headers=headers, + json={"quota": {"name": name, "description": "lab"}}, + verify=False, + timeout=60, + ) + assert created.status_code == 201, created.text + qid = created.json()["quota"]["id"] + detail = requests.get( + f"{base}/ovirt-engine/api/datacenters/{dc}/quotas/{qid}", + headers=headers, + verify=False, + timeout=60, + ) + assert detail.status_code == 200 + assert detail.json()["quota"]["name"] == name + + +def test_template_create_from_vm_copies_nested(session_ctx) -> None: + base, headers = session_ctx + vm = str(stable_id("vm", "lab-vm-01")) + name = f"tpl-{uuid.uuid4().hex[:8]}" + created = requests.post( + f"{base}/ovirt-engine/api/templates", + headers=headers, + json={"template": {"name": name, "vm": {"id": vm}}}, + verify=False, + timeout=60, + ) + assert created.status_code == 201, created.text + tid = created.json()["template"]["id"] + nics = requests.get( + f"{base}/ovirt-engine/api/templates/{tid}/nics", + headers=headers, + verify=False, + timeout=60, + ) + assert nics.status_code == 200 + assert len(collection_items(nics.json(), "nic")) >= 1 + das = requests.get( + f"{base}/ovirt-engine/api/templates/{tid}/diskattachments", + headers=headers, + verify=False, + timeout=60, + ) + assert das.status_code == 200 + assert len(collection_items(das.json(), "disk_attachment")) >= 1 + + +def test_vm_clone_copies_nics_and_disks(session_ctx) -> None: + base, headers = session_ctx + vm = str(stable_id("vm", "lab-vm-01")) + clone_name = f"clone-{uuid.uuid4().hex[:8]}" + action = requests.post( + f"{base}/ovirt-engine/api/vms/{vm}/clone", + headers=headers, + json={"action": {"vm": {"name": clone_name}}}, + verify=False, + timeout=60, + ) + assert action.status_code == 200, action.text + assert "job" in action.json().get("action", {}) + + listing = requests.get( + f"{base}/ovirt-engine/api/vms", + headers=headers, + verify=False, + timeout=60, + ) + vms = {v["name"]: v for v in collection_items(listing.json(), "vm")} + assert clone_name in vms + clone_id = vms[clone_name]["id"] + nics = requests.get( + f"{base}/ovirt-engine/api/vms/{clone_id}/nics", + headers=headers, + verify=False, + timeout=60, + ) + assert len(collection_items(nics.json(), "nic")) >= 1 + das = requests.get( + f"{base}/ovirt-engine/api/vms/{clone_id}/diskattachments", + headers=headers, + verify=False, + timeout=60, + ) + assert len(collection_items(das.json(), "disk_attachment")) >= 1 diff --git a/tests/unit/test_cluster_sizes.py b/tests/unit/test_cluster_sizes.py new file mode 100644 index 0000000..a363c42 --- /dev/null +++ b/tests/unit/test_cluster_sizes.py @@ -0,0 +1,33 @@ +"""Cluster size specs for demo seed profiles.""" + +from __future__ import annotations + +import pytest + +from app.ovirt.demo_datacenter import CLUSTER_SIZES, normalize_cluster_size + + +@pytest.mark.parametrize( + ("name", "hosts", "vms"), + [ + ("small", 3, 50), + ("large", 10, 1000), + ("big", 30, 2000), + ], +) +def test_cluster_size_targets(name: str, hosts: int, vms: int) -> None: + spec = CLUSTER_SIZES[name] + assert spec.hosts == hosts + assert spec.vms == vms + topology = spec.datacenters * spec.clusters_per_dc * spec.hosts_per_cluster + assert topology == hosts + + +def test_demo_alias_maps_to_large() -> None: + assert normalize_cluster_size("demo") == "large" + assert normalize_cluster_size("LARGE") == "large" + + +def test_unknown_size_raises() -> None: + with pytest.raises(ValueError): + normalize_cluster_size("huge") diff --git a/tests/unit/test_ovirt_body_examples.py b/tests/unit/test_ovirt_body_examples.py new file mode 100644 index 0000000..2bd476a --- /dev/null +++ b/tests/unit/test_ovirt_body_examples.py @@ -0,0 +1,104 @@ +"""Console body examples use minimal-seed IDs and Engine-shaped roots.""" + +from __future__ import annotations + +from app.ovirt.ids import stable_id +from app.web.ovirt_body_examples import body_example_for +from app.web.ovirt_catalog import path_param_example + + +def test_path_params_use_minimal_seed_ids() -> None: + assert path_param_example("vmId") == str(stable_id("vm", "lab-vm-01")) + assert path_param_example("hostId") == str(stable_id("host", "host01")) + assert path_param_example("clusterId") == str(stable_id("cluster", "Default")) + assert path_param_example("storageDomainId") == str(stable_id("sd", "data1")) + + +def test_post_vm_body_is_root_wrapped_with_cluster_ref() -> None: + body = body_example_for(method="POST", kind="collection", element="vm", path="/vms") + assert body is not None + assert "vm" in body + vm = body["vm"] + assert vm["cluster"]["id"] == str(stable_id("cluster", "Default")) + assert vm["template"]["name"] == "Blank" + + +def test_disk_attachment_creates_disk_inline() -> None: + body = body_example_for( + method="POST", + kind="collection", + element="disk_attachment", + path="/vms/{vm_id}/diskattachments", + ) + assert body is not None + disk = body["disk_attachment"]["disk"] + assert "id" not in disk + assert disk["name"] == "example-attached-disk" + assert disk["provisioned_size"] == 10737418240 + + +def test_put_does_not_rename_entity() -> None: + body = body_example_for(method="PUT", kind="item", element="vm", path="/vms/{vm_id}") + assert body is not None + assert "name" not in body["vm"] + assert body["vm"]["description"].startswith("Updated") + + +def test_action_start_uses_action_root() -> None: + body = body_example_for( + method="POST", kind="action", element="action", path="/vms/{vm_id}/start" + ) + assert body == {"action": {"async": True}} + + +def test_body_fields_derived_from_example_for_params_drawer() -> None: + from app.web.ovirt_catalog import _body_fields_from_example, ovirt_method_payload + + fields = _body_fields_from_example( + {"bookmark": {"name": "example-bookmark", "value": "Vms: status=up"}}, + element="bookmark", + ) + names = {f["name"] for f in fields} + assert names == {"name", "value"} + + payload = ovirt_method_payload( + major=45, + path="/ovirt-engine/api/bookmarks", + verb="POST", + runtime_version="ovirt-4.5", + ) + assert payload["body_example"] is not None + assert "bookmark" in payload["body_example"] + field_names = {f["name"] for f in payload["body_fields"]} + assert "name" in field_names + assert "value" in field_names + + +def test_body_fields_include_nested_vm_example_paths() -> None: + from app.web.ovirt_catalog import _body_fields_from_example, ovirt_method_payload + from app.web.ovirt_body_examples import body_example_for + + example = body_example_for( + method="POST", + kind="collection", + element="vm", + path="/ovirt-engine/api/vms", + ) + fields = _body_fields_from_example(example, element="vm") + names = {f["name"] for f in fields} + assert "name" in names + assert "memory" in names + assert "cpu.topology.sockets" in names + assert "os.type" in names + assert "cluster.id" in names + assert "template.name" in names + + payload = ovirt_method_payload( + major=45, + path="/ovirt-engine/api/vms", + verb="POST", + runtime_version="ovirt-4.5", + ) + nested = {f["name"] for f in payload["body_fields"]} + assert "cluster.id" in nested + assert "cpu.topology.cores" in nested diff --git a/tools/audit_seed_dump.py b/tools/audit_seed_dump.py new file mode 100644 index 0000000..0656992 --- /dev/null +++ b/tools/audit_seed_dump.py @@ -0,0 +1,259 @@ +#!/usr/bin/env python3 +"""Contract-driven dump audit for minimal/demo seed against live Engine. + +Probes every GET collection and entity-by-id from contracts/ovirt//api.json. +Nested `{id}` is resolved from the parent nested collection (not a global map). +Exit 0 only at 100% dump. +""" + +from __future__ import annotations + +import json +import re +import subprocess +import sys +from pathlib import Path + +ROOT = Path(__file__).resolve().parents[1] +ENGINE = sys.argv[1] if len(sys.argv) > 1 else "https://127.0.0.1:7443" +SERIES = sys.argv[2] if len(sys.argv) > 2 else "4.5" +CONTRACT = ROOT / "contracts" / "ovirt" / SERIES / "api.json" + +CURL = [ + "/usr/bin/curl", + "-sk", + "-u", + "admin@internal:secret", + "-H", + "Accept: application/json", + "-H", + "Version: 4", +] + +PARAM_RE = re.compile(r"\{([^}]+)\}") + +PLURAL_MAP = { + "datacenter": "datacenters", + "cluster": "clusters", + "host": "hosts", + "vm": "vms", + "network": "networks", + "storagedomain": "storagedomains", + "template": "templates", + "disk": "disks", + "user": "users", + "role": "roles", + "job": "jobs", + "group": "groups", + "domain": "domains", + "tag": "tags", + "vnicprofile": "vnicprofiles", + "schedulingpolicy": "schedulingpolicies", + "bookmark": "bookmarks", + "event": "events", + "icon": "icons", + "instancetype": "instancetypes", + "macpool": "macpools", + "networkfilter": "networkfilters", + "operatingsystem": "operatingsystems", + "permission": "permissions", + "storageconnection": "storageconnections", + "vmpool": "vmpools", + "affinitylabel": "affinitylabels", + "clusterlevel": "clusterlevels", + "externalhostprovider": "externalhostproviders", + "katelloerratum": "katelloerrata", + "openstackimageprovider": "openstackimageproviders", + "openstacknetworkprovider": "openstacknetworkproviders", + "openstackvolumeprovider": "openstackvolumeproviders", + "imagetransfer": "imagetransfers", + "option": "options", + "schedulingpolicyunit": "schedulingpolicyunits", +} + + +def get(path: str) -> tuple[int, object]: + url = f"{ENGINE}{path}" if path.startswith("/") else f"{ENGINE}/{path}" + out = subprocess.check_output(CURL + ["-o", "/tmp/_dump_body.json", "-w", "%{http_code}", url]) + code = int(out.decode().strip()) + raw = Path("/tmp/_dump_body.json").read_bytes() + try: + payload = json.loads(raw) if raw.strip() else None + except Exception: + payload = raw.decode(errors="replace")[:200] + return code, payload + + +def items(payload: object) -> list[dict]: + if not isinstance(payload, dict): + return [] + for value in payload.values(): + if isinstance(value, list): + return [x for x in value if isinstance(x, dict)] + if isinstance(value, dict) and value.get("id"): + return [value] + return [] + + +def first_id(payload: object) -> str | None: + arr = items(payload) + return arr[0].get("id") if arr else None + + +def skip_versioned(path: str) -> bool: + return "/api/v4/" in path or path.rstrip("/").endswith("/api/v4") + + +def is_collection_get(op: dict) -> bool: + if op.get("method") != "GET" or skip_versioned(op["path"]): + return False + last = op["path"].rstrip("/").split("/")[-1] + return not last.startswith("{") + + +def is_entity_get(op: dict) -> bool: + if op.get("method") != "GET" or skip_versioned(op["path"]): + return False + last = op["path"].rstrip("/").split("/")[-1] + return last.startswith("{") and last.endswith("}") + + +def param_to_collection(param: str) -> str: + if param.endswith("_id"): + base = param[: -len("_id")] + return PLURAL_MAP.get(base, base + "s") + return PLURAL_MAP.get(param, param) + + +def resolve_parents(path: str, inventory: dict[str, str]) -> str | None: + """Replace all {foo_id} parent params; leave {id} untouched.""" + out = path + for p in PARAM_RE.findall(path): + if p == "id": + continue + coll = param_to_collection(p) + if coll not in inventory: + return None + out = out.replace("{" + p + "}", inventory[coll]) + return out + + +def resolve_entity(path: str, inventory: dict[str, str], collection_key: str | None) -> str | None: + """Resolve entity path including nested {id} via live nested collection fetch.""" + partial = resolve_parents(path, inventory) + if partial is None: + return None + if "{id}" not in partial: + return partial + # Nested: /…/parent/{pid}/sub/{id} → fetch …/sub for an id + # Top-level: /…/collection/{id} + if partial.count("/") >= 5 and not partial.rstrip("/").endswith("/{id}"): + # shouldn't happen + pass + parent_coll_path = partial.rsplit("/{id}", 1)[0] + # For top-level /api/bookmarks/{id}, parent_coll_path is the collection URL + code, payload = get(parent_coll_path) + if code != 200: + return None + fid = first_id(payload) + if not fid: + # top-level may need inventory by collection_key + key = collection_key or parent_coll_path.rstrip("/").split("/")[-1] + if key == "imageTransfers": + key = "imagetransfers" + fid = inventory.get(key) + if not fid: + return None + return partial.replace("{id}", fid) + + +def good_entity(payload: object) -> bool: + arr = items(payload) + return len(arr) == 1 and bool(arr[0].get("id")) and bool(arr[0].get("href")) + + +def good_collection(payload: object) -> bool: + arr = items(payload) + return len(arr) >= 1 and all(i.get("id") and i.get("href") for i in arr[:5]) + + +def main() -> int: + ops = json.loads(CONTRACT.read_text())["operations"] + collections = [o for o in ops if is_collection_get(o)] + entities = [o for o in ops if is_entity_get(o)] + + inventory: dict[str, str] = {} + for op in collections: + if "{" in op["path"] or op["path"].rstrip("/").endswith("/api"): + continue + _, payload = get(op["path"]) + fid = first_id(payload) + key = op.get("collection_key") or op["path"].rstrip("/").split("/")[-1] + if key == "imageTransfers": + key = "imagetransfers" + if fid: + inventory[key] = fid + inventory[key.lower()] = fid + + gaps: list[str] = [] + ok = 0 + probed = 0 + + for op in collections: + template = op["path"] + resolved = resolve_parents(template, inventory) + probed += 1 + if resolved is None: + gaps.append(f"UNRESOLVED {template}") + continue + code, payload = get(resolved) + if template.rstrip("/").endswith("/api"): + good = code == 200 and isinstance(payload, dict) and bool(payload) + else: + good = code == 200 and good_collection(payload) + if good: + ok += 1 + else: + n = len(items(payload)) if isinstance(payload, dict) else 0 + gaps.append(f"GET {resolved} -> {code} count={n}") + + entity_ok = 0 + entity_probed = 0 + for op in entities: + template = op["path"] + entity_probed += 1 + probed += 1 + resolved = resolve_entity(template, inventory, op.get("collection_key")) + if resolved is None: + gaps.append(f"UNRESOLVED {template}") + continue + code, payload = get(resolved) + if code == 200 and good_entity(payload): + entity_ok += 1 + ok += 1 + else: + gaps.append(f"GET {resolved} -> {code}") + + _, vms = get("/ovirt-engine/api/vms") + _, hosts = get("/ovirt-engine/api/hosts") + _, dcs = get("/ovirt-engine/api/datacenters") + print(f"ENGINE={ENGINE} SERIES={SERIES}") + print( + f"DUMP {ok}/{probed} contract GETs " + f"(collections+entities; entities {entity_ok}/{entity_probed})" + ) + print( + f"DENSITY vms={len(items(vms))} hosts={len(items(hosts))} " + f"datacenters={len(items(dcs))} inventory_keys={len(inventory)}" + ) + if gaps: + print(f"GAPS ({len(gaps)}):") + for g in gaps: + print(" ", g) + else: + print("GAPS: none") + return 0 if not gaps and ok == probed else 1 + + +if __name__ == "__main__": + raise SystemExit(main())