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 0000000..0615282 Binary files /dev/null and b/docs/images/web-ui/api-catalog.png differ diff --git a/docs/images/web-ui/authentication.png b/docs/images/web-ui/authentication.png new file mode 100644 index 0000000..fb85975 Binary files /dev/null and b/docs/images/web-ui/authentication.png differ diff --git a/docs/images/web-ui/console.png b/docs/images/web-ui/console.png new file mode 100644 index 0000000..1b9dadf Binary files /dev/null and b/docs/images/web-ui/console.png differ diff --git a/docs/images/web-ui/data.png b/docs/images/web-ui/data.png new file mode 100644 index 0000000..f2b1be3 Binary files /dev/null and b/docs/images/web-ui/data.png differ diff --git a/docs/images/web-ui/endpoints.png b/docs/images/web-ui/endpoints.png new file mode 100644 index 0000000..cfcd64b Binary files /dev/null and b/docs/images/web-ui/endpoints.png differ diff --git a/docs/images/web-ui/environment.png b/docs/images/web-ui/environment.png new file mode 100644 index 0000000..80ac622 Binary files /dev/null and b/docs/images/web-ui/environment.png differ diff --git a/docs/images/web-ui/help-compatibility.png b/docs/images/web-ui/help-compatibility.png new file mode 100644 index 0000000..7edc2f1 Binary files /dev/null and b/docs/images/web-ui/help-compatibility.png differ diff --git a/docs/images/web-ui/history.png b/docs/images/web-ui/history.png new file mode 100644 index 0000000..7cdc89d Binary files /dev/null and b/docs/images/web-ui/history.png differ diff --git a/docs/images/web-ui/request-body.png b/docs/images/web-ui/request-body.png new file mode 100644 index 0000000..955477c Binary files /dev/null and b/docs/images/web-ui/request-body.png differ diff --git a/docs/images/web-ui/request-params.png b/docs/images/web-ui/request-params.png new file mode 100644 index 0000000..547117b Binary files /dev/null and b/docs/images/web-ui/request-params.png differ 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())