From a9c16217f56e42a9a10ec34d695efe9d77a56fda Mon Sep 17 00:00:00 2001 From: Alon Yeshurun <98805507+ayeshurun@users.noreply.github.com> Date: Tue, 17 Mar 2026 12:14:50 +0200 Subject: [PATCH 01/11] Add benchmark script for CLI startup performance This script benchmarks the startup performance of the CLI by measuring module import times, CLI invocation times, and heavy dependency loading. It allows comparisons against a baseline branch or tag. --- scripts/benchmark_startup.py | 270 +++++++++++++++++++++++++++++++++++ 1 file changed, 270 insertions(+) create mode 100644 scripts/benchmark_startup.py diff --git a/scripts/benchmark_startup.py b/scripts/benchmark_startup.py new file mode 100644 index 000000000..0d502613c --- /dev/null +++ b/scripts/benchmark_startup.py @@ -0,0 +1,270 @@ +#!/usr/bin/env python3 +""" +Benchmark CLI startup performance. + +Compares the current branch against 'main' (or any other branch) by measuring: + 1. Module import time (fabric_cli.main) + 2. CLI invocation time (fab --version) + 3. Heavy dependency loading (msal, jwt, cryptography, requests, prompt_toolkit) + +Usage: + # Compare current branch against main + python scripts/benchmark_startup.py + + # Compare current branch against a specific branch/tag/commit + python scripts/benchmark_startup.py --baseline v1.3.0 + + # Run only on the current branch (no git checkout) + python scripts/benchmark_startup.py --current-only + + # Change number of iterations (default: 10) + python scripts/benchmark_startup.py --iterations 20 +""" + +import argparse +import importlib +import json +import os +import shutil +import statistics +import subprocess +import sys +import time + + +HEAVY_MODULES = ["msal", "jwt", "cryptography", "requests", "prompt_toolkit", "psutil"] + + +def measure_import_time(iterations: int) -> dict: + """Measure fabric_cli.main import time across multiple iterations.""" + times = [] + for _ in range(iterations): + # Clear all fabric_cli modules from cache + mods = [k for k in sys.modules if k.startswith("fabric_cli")] + for m in mods: + del sys.modules[m] + + start = time.perf_counter() + importlib.import_module("fabric_cli.main") + elapsed_ms = (time.perf_counter() - start) * 1000 + times.append(elapsed_ms) + + return { + "median_ms": round(statistics.median(times), 1), + "min_ms": round(min(times), 1), + "max_ms": round(max(times), 1), + "mean_ms": round(statistics.mean(times), 1), + "stdev_ms": round(statistics.stdev(times), 1) if len(times) > 1 else 0, + "samples": times, + } + + +def check_heavy_modules() -> dict: + """Check which heavy modules are loaded after importing fabric_cli.main.""" + # Clear all fabric_cli modules + mods = [k for k in sys.modules if k.startswith("fabric_cli")] + for m in mods: + del sys.modules[m] + + # Also clear heavy modules + for mod in HEAVY_MODULES: + keys = [k for k in sys.modules if k.startswith(mod)] + for k in keys: + del sys.modules[k] + + importlib.import_module("fabric_cli.main") + + return {mod: mod in sys.modules for mod in HEAVY_MODULES} + + +def measure_cli_time(iterations: int) -> dict: + """Measure 'fab --version' wall-clock time.""" + fab_path = shutil.which("fab") + if not fab_path: + return {"error": "'fab' not found in PATH. Run 'pip install -e .' first."} + + times = [] + for _ in range(iterations): + start = time.perf_counter() + subprocess.run( + [fab_path, "--version"], + capture_output=True, + text=True, + ) + elapsed_ms = (time.perf_counter() - start) * 1000 + times.append(elapsed_ms) + + return { + "median_ms": round(statistics.median(times), 1), + "min_ms": round(min(times), 1), + "max_ms": round(max(times), 1), + "mean_ms": round(statistics.mean(times), 1), + "stdev_ms": round(statistics.stdev(times), 1) if len(times) > 1 else 0, + } + + +def run_benchmark(label: str, iterations: int) -> dict: + """Run all benchmarks and return results.""" + print(f"\n{'=' * 60}") + print(f" Benchmarking: {label}") + print(f"{'=' * 60}") + + # 1. Import time + print(f" Measuring import time ({iterations} iterations)...", end="", flush=True) + import_results = measure_import_time(iterations) + print(f" {import_results['median_ms']:.0f}ms median") + + # 2. Heavy modules + print(" Checking heavy module loading...", end="", flush=True) + heavy_results = check_heavy_modules() + loaded = [m for m, v in heavy_results.items() if v] + print(f" {len(loaded)} loaded: {', '.join(loaded) if loaded else 'none'}") + + # 3. CLI time + print(f" Measuring 'fab --version' ({iterations} iterations)...", end="", flush=True) + cli_results = measure_cli_time(iterations) + if "error" in cli_results: + print(f" {cli_results['error']}") + else: + print(f" {cli_results['median_ms']:.0f}ms median") + + return { + "label": label, + "import_time": import_results, + "heavy_modules": heavy_results, + "cli_time": cli_results, + } + + +def print_comparison(baseline: dict, current: dict): + """Print a formatted comparison table.""" + print(f"\n{'=' * 60}") + print(" COMPARISON") + print(f"{'=' * 60}\n") + + bl = baseline["import_time"]["median_ms"] + cu = current["import_time"]["median_ms"] + diff = bl - cu + pct = (diff / bl * 100) if bl > 0 else 0 + + print(f" {'Metric':<30} {'Baseline':>10} {'Current':>10} {'Change':>10}") + print(f" {'-' * 62}") + print(f" {'Import time (median):':<30} {bl:>9.0f}ms {cu:>9.0f}ms {diff:>+8.0f}ms") + print(f" {'Import improvement:':<30} {'':>10} {'':>10} {pct:>+8.0f}%") + + if "error" not in baseline["cli_time"] and "error" not in current["cli_time"]: + bl_cli = baseline["cli_time"]["median_ms"] + cu_cli = current["cli_time"]["median_ms"] + cli_diff = bl_cli - cu_cli + cli_pct = (cli_diff / bl_cli * 100) if bl_cli > 0 else 0 + print(f" {'CLI time (median):':<30} {bl_cli:>9.0f}ms {cu_cli:>9.0f}ms {cli_diff:>+8.0f}ms") + print(f" {'CLI improvement:':<30} {'':>10} {'':>10} {cli_pct:>+8.0f}%") + + print(f"\n {'Heavy modules at startup:':<30}") + for mod in HEAVY_MODULES: + bl_loaded = "LOADED" if baseline["heavy_modules"].get(mod) else "deferred" + cu_loaded = "LOADED" if current["heavy_modules"].get(mod) else "deferred" + marker = " ✓" if cu_loaded == "deferred" and bl_loaded == "LOADED" else "" + print(f" {mod:<25} {bl_loaded:>10} {cu_loaded:>10}{marker}") + + print() + + +def git_checkout_and_install(ref: str): + """Checkout a git ref and reinstall the package.""" + print(f"\n Switching to '{ref}'...") + subprocess.run(["git", "checkout", ref], capture_output=True, check=True) + subprocess.run( + [sys.executable, "-m", "pip", "install", "-e", ".", "-q"], + capture_output=True, + check=True, + ) + # Clear all cached fabric_cli modules after reinstall + mods = [k for k in sys.modules if k.startswith("fabric_cli")] + for m in mods: + del sys.modules[m] + + +def main(): + parser = argparse.ArgumentParser( + description="Benchmark CLI startup performance between branches." + ) + parser.add_argument( + "--baseline", + default="main", + help="Git ref to compare against (default: main)", + ) + parser.add_argument( + "--iterations", "-n", + type=int, + default=10, + help="Number of iterations per measurement (default: 10)", + ) + parser.add_argument( + "--current-only", + action="store_true", + help="Only benchmark the current branch (skip baseline)", + ) + parser.add_argument( + "--json", + action="store_true", + help="Output results as JSON", + ) + args = parser.parse_args() + + repo_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + os.chdir(repo_root) + + # Get current branch name + result = subprocess.run( + ["git", "rev-parse", "--abbrev-ref", "HEAD"], + capture_output=True, text=True, + ) + current_branch = result.stdout.strip() + + print(f" Repo: {repo_root}") + print(f" Current branch: {current_branch}") + print(f" Baseline: {args.baseline}") + print(f" Iterations: {args.iterations}") + + results = {} + + if not args.current_only: + # Benchmark baseline + try: + git_checkout_and_install(args.baseline) + results["baseline"] = run_benchmark(f"Baseline ({args.baseline})", args.iterations) + except subprocess.CalledProcessError: + print(f"\n ERROR: Could not checkout '{args.baseline}'. Does it exist?") + print(f" Try: python scripts/benchmark_startup.py --current-only") + sys.exit(1) + finally: + # Always return to original branch + subprocess.run(["git", "checkout", current_branch], capture_output=True) + subprocess.run( + [sys.executable, "-m", "pip", "install", "-e", ".", "-q"], + capture_output=True, + ) + # Clear modules again + mods = [k for k in sys.modules if k.startswith("fabric_cli")] + for m in mods: + del sys.modules[m] + + # Benchmark current + results["current"] = run_benchmark(f"Current ({current_branch})", args.iterations) + + # Print comparison + if "baseline" in results: + print_comparison(results["baseline"], results["current"]) + + # JSON output + if args.json: + # Remove raw samples for cleaner JSON + for key in results: + if "samples" in results[key].get("import_time", {}): + del results[key]["import_time"]["samples"] + print(json.dumps(results, indent=2)) + + +if __name__ == "__main__": + main() From 7a563ff783facb8acfd74aa8ca629a88e064dad2 Mon Sep 17 00:00:00 2001 From: Alon Yeshurun <98805507+ayeshurun@users.noreply.github.com> Date: Sun, 22 Mar 2026 12:05:29 +0200 Subject: [PATCH 02/11] Delete scripts/benchmark_startup.py --- scripts/benchmark_startup.py | 270 ----------------------------------- 1 file changed, 270 deletions(-) delete mode 100644 scripts/benchmark_startup.py diff --git a/scripts/benchmark_startup.py b/scripts/benchmark_startup.py deleted file mode 100644 index 0d502613c..000000000 --- a/scripts/benchmark_startup.py +++ /dev/null @@ -1,270 +0,0 @@ -#!/usr/bin/env python3 -""" -Benchmark CLI startup performance. - -Compares the current branch against 'main' (or any other branch) by measuring: - 1. Module import time (fabric_cli.main) - 2. CLI invocation time (fab --version) - 3. Heavy dependency loading (msal, jwt, cryptography, requests, prompt_toolkit) - -Usage: - # Compare current branch against main - python scripts/benchmark_startup.py - - # Compare current branch against a specific branch/tag/commit - python scripts/benchmark_startup.py --baseline v1.3.0 - - # Run only on the current branch (no git checkout) - python scripts/benchmark_startup.py --current-only - - # Change number of iterations (default: 10) - python scripts/benchmark_startup.py --iterations 20 -""" - -import argparse -import importlib -import json -import os -import shutil -import statistics -import subprocess -import sys -import time - - -HEAVY_MODULES = ["msal", "jwt", "cryptography", "requests", "prompt_toolkit", "psutil"] - - -def measure_import_time(iterations: int) -> dict: - """Measure fabric_cli.main import time across multiple iterations.""" - times = [] - for _ in range(iterations): - # Clear all fabric_cli modules from cache - mods = [k for k in sys.modules if k.startswith("fabric_cli")] - for m in mods: - del sys.modules[m] - - start = time.perf_counter() - importlib.import_module("fabric_cli.main") - elapsed_ms = (time.perf_counter() - start) * 1000 - times.append(elapsed_ms) - - return { - "median_ms": round(statistics.median(times), 1), - "min_ms": round(min(times), 1), - "max_ms": round(max(times), 1), - "mean_ms": round(statistics.mean(times), 1), - "stdev_ms": round(statistics.stdev(times), 1) if len(times) > 1 else 0, - "samples": times, - } - - -def check_heavy_modules() -> dict: - """Check which heavy modules are loaded after importing fabric_cli.main.""" - # Clear all fabric_cli modules - mods = [k for k in sys.modules if k.startswith("fabric_cli")] - for m in mods: - del sys.modules[m] - - # Also clear heavy modules - for mod in HEAVY_MODULES: - keys = [k for k in sys.modules if k.startswith(mod)] - for k in keys: - del sys.modules[k] - - importlib.import_module("fabric_cli.main") - - return {mod: mod in sys.modules for mod in HEAVY_MODULES} - - -def measure_cli_time(iterations: int) -> dict: - """Measure 'fab --version' wall-clock time.""" - fab_path = shutil.which("fab") - if not fab_path: - return {"error": "'fab' not found in PATH. Run 'pip install -e .' first."} - - times = [] - for _ in range(iterations): - start = time.perf_counter() - subprocess.run( - [fab_path, "--version"], - capture_output=True, - text=True, - ) - elapsed_ms = (time.perf_counter() - start) * 1000 - times.append(elapsed_ms) - - return { - "median_ms": round(statistics.median(times), 1), - "min_ms": round(min(times), 1), - "max_ms": round(max(times), 1), - "mean_ms": round(statistics.mean(times), 1), - "stdev_ms": round(statistics.stdev(times), 1) if len(times) > 1 else 0, - } - - -def run_benchmark(label: str, iterations: int) -> dict: - """Run all benchmarks and return results.""" - print(f"\n{'=' * 60}") - print(f" Benchmarking: {label}") - print(f"{'=' * 60}") - - # 1. Import time - print(f" Measuring import time ({iterations} iterations)...", end="", flush=True) - import_results = measure_import_time(iterations) - print(f" {import_results['median_ms']:.0f}ms median") - - # 2. Heavy modules - print(" Checking heavy module loading...", end="", flush=True) - heavy_results = check_heavy_modules() - loaded = [m for m, v in heavy_results.items() if v] - print(f" {len(loaded)} loaded: {', '.join(loaded) if loaded else 'none'}") - - # 3. CLI time - print(f" Measuring 'fab --version' ({iterations} iterations)...", end="", flush=True) - cli_results = measure_cli_time(iterations) - if "error" in cli_results: - print(f" {cli_results['error']}") - else: - print(f" {cli_results['median_ms']:.0f}ms median") - - return { - "label": label, - "import_time": import_results, - "heavy_modules": heavy_results, - "cli_time": cli_results, - } - - -def print_comparison(baseline: dict, current: dict): - """Print a formatted comparison table.""" - print(f"\n{'=' * 60}") - print(" COMPARISON") - print(f"{'=' * 60}\n") - - bl = baseline["import_time"]["median_ms"] - cu = current["import_time"]["median_ms"] - diff = bl - cu - pct = (diff / bl * 100) if bl > 0 else 0 - - print(f" {'Metric':<30} {'Baseline':>10} {'Current':>10} {'Change':>10}") - print(f" {'-' * 62}") - print(f" {'Import time (median):':<30} {bl:>9.0f}ms {cu:>9.0f}ms {diff:>+8.0f}ms") - print(f" {'Import improvement:':<30} {'':>10} {'':>10} {pct:>+8.0f}%") - - if "error" not in baseline["cli_time"] and "error" not in current["cli_time"]: - bl_cli = baseline["cli_time"]["median_ms"] - cu_cli = current["cli_time"]["median_ms"] - cli_diff = bl_cli - cu_cli - cli_pct = (cli_diff / bl_cli * 100) if bl_cli > 0 else 0 - print(f" {'CLI time (median):':<30} {bl_cli:>9.0f}ms {cu_cli:>9.0f}ms {cli_diff:>+8.0f}ms") - print(f" {'CLI improvement:':<30} {'':>10} {'':>10} {cli_pct:>+8.0f}%") - - print(f"\n {'Heavy modules at startup:':<30}") - for mod in HEAVY_MODULES: - bl_loaded = "LOADED" if baseline["heavy_modules"].get(mod) else "deferred" - cu_loaded = "LOADED" if current["heavy_modules"].get(mod) else "deferred" - marker = " ✓" if cu_loaded == "deferred" and bl_loaded == "LOADED" else "" - print(f" {mod:<25} {bl_loaded:>10} {cu_loaded:>10}{marker}") - - print() - - -def git_checkout_and_install(ref: str): - """Checkout a git ref and reinstall the package.""" - print(f"\n Switching to '{ref}'...") - subprocess.run(["git", "checkout", ref], capture_output=True, check=True) - subprocess.run( - [sys.executable, "-m", "pip", "install", "-e", ".", "-q"], - capture_output=True, - check=True, - ) - # Clear all cached fabric_cli modules after reinstall - mods = [k for k in sys.modules if k.startswith("fabric_cli")] - for m in mods: - del sys.modules[m] - - -def main(): - parser = argparse.ArgumentParser( - description="Benchmark CLI startup performance between branches." - ) - parser.add_argument( - "--baseline", - default="main", - help="Git ref to compare against (default: main)", - ) - parser.add_argument( - "--iterations", "-n", - type=int, - default=10, - help="Number of iterations per measurement (default: 10)", - ) - parser.add_argument( - "--current-only", - action="store_true", - help="Only benchmark the current branch (skip baseline)", - ) - parser.add_argument( - "--json", - action="store_true", - help="Output results as JSON", - ) - args = parser.parse_args() - - repo_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) - os.chdir(repo_root) - - # Get current branch name - result = subprocess.run( - ["git", "rev-parse", "--abbrev-ref", "HEAD"], - capture_output=True, text=True, - ) - current_branch = result.stdout.strip() - - print(f" Repo: {repo_root}") - print(f" Current branch: {current_branch}") - print(f" Baseline: {args.baseline}") - print(f" Iterations: {args.iterations}") - - results = {} - - if not args.current_only: - # Benchmark baseline - try: - git_checkout_and_install(args.baseline) - results["baseline"] = run_benchmark(f"Baseline ({args.baseline})", args.iterations) - except subprocess.CalledProcessError: - print(f"\n ERROR: Could not checkout '{args.baseline}'. Does it exist?") - print(f" Try: python scripts/benchmark_startup.py --current-only") - sys.exit(1) - finally: - # Always return to original branch - subprocess.run(["git", "checkout", current_branch], capture_output=True) - subprocess.run( - [sys.executable, "-m", "pip", "install", "-e", ".", "-q"], - capture_output=True, - ) - # Clear modules again - mods = [k for k in sys.modules if k.startswith("fabric_cli")] - for m in mods: - del sys.modules[m] - - # Benchmark current - results["current"] = run_benchmark(f"Current ({current_branch})", args.iterations) - - # Print comparison - if "baseline" in results: - print_comparison(results["baseline"], results["current"]) - - # JSON output - if args.json: - # Remove raw samples for cleaner JSON - for key in results: - if "samples" in results[key].get("import_time", {}): - del results[key]["import_time"]["samples"] - print(json.dumps(results, indent=2)) - - -if __name__ == "__main__": - main() From d762e511444d587e4d785d62f02da45b7a368332 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 31 Mar 2026 07:56:42 +0000 Subject: [PATCH 03/11] Add definition support (export, import, cp, mv) for DigitalTwinBuilder item type Agent-Logs-Url: https://github.com/ayeshurun/fabric-cli/sessions/188f1eb4-34ef-4025-afb2-574c535b45ae Co-authored-by: ayeshurun <98805507+ayeshurun@users.noreply.github.com> --- .changes/unreleased/new-items-20260331-075150.yaml | 6 ++++++ docs/examples/item_examples.md | 4 ++-- .../core/fab_config/command_support.yaml | 4 ++++ src/fabric_cli/core/fab_types.py | 1 + tests/test_commands/conftest.py | 14 +++++++++----- 5 files changed, 22 insertions(+), 7 deletions(-) create mode 100644 .changes/unreleased/new-items-20260331-075150.yaml diff --git a/.changes/unreleased/new-items-20260331-075150.yaml b/.changes/unreleased/new-items-20260331-075150.yaml new file mode 100644 index 000000000..70419b4a1 --- /dev/null +++ b/.changes/unreleased/new-items-20260331-075150.yaml @@ -0,0 +1,6 @@ +kind: new-items +body: Add definition support (export, import, cp, mv) for DigitalTwinBuilder item type +time: 2026-03-31T07:51:50.000000000Z +custom: + Author: ayeshurun + AuthorLink: https://github.com/ayeshurun diff --git a/docs/examples/item_examples.md b/docs/examples/item_examples.md index f1af46cdb..dc775f49f 100644 --- a/docs/examples/item_examples.md +++ b/docs/examples/item_examples.md @@ -249,7 +249,7 @@ fab set ws1.Workspace/rep1.Report -q definition.parts[0].payload.datasetReferenc - `.KQLDatabase`, `.KQLDashboard`, `.KQLQueryset` - `.Eventhouse`, `.Eventstream` - `.MirroredDatabase`, `.Reflex` -- `.Map`, `.MountedDataFactory`, `.CopyJob`, `.VariableLibrary` +- `.DigitalTwinBuilder`, `.Map`, `.MountedDataFactory`, `.CopyJob`, `.VariableLibrary` #### Copy Item to Workspace @@ -324,7 +324,7 @@ fab export ws1.Workspace/nb1.Notebook -o /tmp - `.Report`, `.SemanticModel` - `.KQLDatabase`, `.KQLDashboard`, `.KQLQueryset` - `.Eventhouse`, `.Eventstream`, `.MirroredDatabase` -- `.Reflex`, `.Map`, `.MountedDataFactory`, `.CopyJob`, `.VariableLibrary` +- `.Reflex`, `.DigitalTwinBuilder`, `.Map`, `.MountedDataFactory`, `.CopyJob`, `.VariableLibrary` #### Export to Lakehouse diff --git a/src/fabric_cli/core/fab_config/command_support.yaml b/src/fabric_cli/core/fab_config/command_support.yaml index da19862df..ca8f9de49 100644 --- a/src/fabric_cli/core/fab_config/command_support.yaml +++ b/src/fabric_cli/core/fab_config/command_support.yaml @@ -161,6 +161,7 @@ commands: # - kql_database - mirrored_database - cosmos_db_database + - digital_twin_builder - reflex # - eventstream - mounted_data_factory @@ -190,6 +191,7 @@ commands: # - kql_database - mirrored_database - cosmos_db_database + - digital_twin_builder - reflex # - eventstream - mounted_data_factory @@ -253,6 +255,7 @@ commands: - dataflow - sql_database - cosmos_db_database + - digital_twin_builder - user_data_function - graph_query_set - map @@ -278,6 +281,7 @@ commands: - dataflow - sql_database - cosmos_db_database + - digital_twin_builder - user_data_function - map unsupported_items: diff --git a/src/fabric_cli/core/fab_types.py b/src/fabric_cli/core/fab_types.py index afb48b5cd..6b4cc69cd 100644 --- a/src/fabric_cli/core/fab_types.py +++ b/src/fabric_cli/core/fab_types.py @@ -598,6 +598,7 @@ class MirroredDatabaseFolders(Enum): "TMSL": "TMSL", }, ItemType.COSMOS_DB_DATABASE: {"default": ""}, + ItemType.DIGITAL_TWIN_BUILDER: {"default": ""}, ItemType.USER_DATA_FUNCTION: {"default": ""}, ItemType.GRAPH_QUERY_SET: {"default": ""}, ItemType.VARIABLE_LIBRARY: {"default": ""}, diff --git a/tests/test_commands/conftest.py b/tests/test_commands/conftest.py index 7d4b91e1b..17810272a 100644 --- a/tests/test_commands/conftest.py +++ b/tests/test_commands/conftest.py @@ -121,7 +121,7 @@ ItemType.DATA_PIPELINE, ItemType.KQL_DASHBOARD, ItemType.KQL_QUERYSET, ItemType.MIRRORED_DATABASE, ItemType.NOTEBOOK, ItemType.REFLEX, ItemType.SPARK_JOB_DEFINITION, - ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.MAP + ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.DIGITAL_TWIN_BUILDER, ItemType.MAP ]) mv_item_to_item_unsupported_failure_params = pytest.mark.parametrize("unsupported_item_type", [ @@ -140,7 +140,7 @@ ItemType.DATA_PIPELINE, ItemType.KQL_DASHBOARD, ItemType.KQL_QUERYSET, ItemType.MIRRORED_DATABASE, ItemType.NOTEBOOK, ItemType.REFLEX, ItemType.SPARK_JOB_DEFINITION, - ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.MAP + ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.DIGITAL_TWIN_BUILDER, ItemType.MAP ]) get_item_with_properties_success_params = pytest.mark.parametrize("item_type,expected_properties", [ @@ -243,6 +243,7 @@ (ItemType.COSMOS_DB_DATABASE, ".json"), (ItemType.USER_DATA_FUNCTION, ".json"), (ItemType.GRAPH_QUERY_SET, ".json"), + (ItemType.DIGITAL_TWIN_BUILDER, ".json"), (ItemType.MAP, ".json") ]) @@ -257,6 +258,7 @@ ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.GRAPH_QUERY_SET, + ItemType.DIGITAL_TWIN_BUILDER, ItemType.MAP ]) @@ -282,7 +284,8 @@ (ItemType.KQL_DATABASE, 3), (ItemType.COSMOS_DB_DATABASE, 2), (ItemType.USER_DATA_FUNCTION, 2), - (ItemType.GRAPH_QUERY_SET, 2) + (ItemType.GRAPH_QUERY_SET, 2), + (ItemType.DIGITAL_TWIN_BUILDER, 2) ]) export_item_invalid_format_parameters = pytest.mark.parametrize("item_type,invalid_format", [ @@ -293,7 +296,8 @@ (ItemType.MIRRORED_DATABASE, ".txt"), (ItemType.COSMOS_DB_DATABASE, ".txt"), (ItemType.USER_DATA_FUNCTION, ".txt"), - (ItemType.GRAPH_QUERY_SET, ".txt") + (ItemType.GRAPH_QUERY_SET, ".txt"), + (ItemType.DIGITAL_TWIN_BUILDER, ".txt") ]) # TODO: Fix capacity teardown issue CannotOverwriteExistingCassetteException & uncomment the item parameter @@ -307,7 +311,7 @@ ItemType.DATA_PIPELINE, ItemType.KQL_DASHBOARD, ItemType.KQL_QUERYSET, ItemType.MIRRORED_DATABASE, ItemType.NOTEBOOK, ItemType.REFLEX, ItemType.SPARK_JOB_DEFINITION, - ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, + ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.DIGITAL_TWIN_BUILDER, ]) assign_entity_item_not_supported_failure_parameters = pytest.mark.parametrize("entity_type,factory_key,path_template", [ From 8345688f18a007b04a860443ac73abbd7166b0dd Mon Sep 17 00:00:00 2001 From: Alon Yeshurun Date: Tue, 31 Mar 2026 13:08:27 +0000 Subject: [PATCH 04/11] update tests --- .../core/fab_config/command_support.yaml | 3 +- tests/test_commands/conftest.py | 7 +- .../test_commands/test_cd/class_setup.yaml | 69 +- ...all_types_success[DigitalTwinBuilder].yaml | 140 +- .../test_commands/test_cp/class_setup.yaml | 62 +- ...tem_types_success[DigitalTwinBuilder].yaml | 4863 +++++++++++++++++ ...m_to_item_success[DigitalTwinBuilder].yaml | 2230 ++++++++ .../test_exists/class_setup.yaml | 73 +- ...snt_exist_success[DigitalTwinBuilder].yaml | 299 +- ...em_exists_success[DigitalTwinBuilder].yaml | 194 +- .../test_export/class_setup.yaml | 67 +- ..._format_success[DigitalTwinBuilder-2].yaml | 772 +++ ...ath_success[DigitalTwinBuilder-.json].yaml | 888 +++ ...rmat_failure[DigitalTwinBuilder-.txt].yaml | 568 ++ ...tput_path_failure[DigitalTwinBuilder].yaml | 818 +++ ...tem_success[DigitalTwinBuilder-.json].yaml | 834 +++ .../test_commands/test_get/class_setup.yaml | 67 +- ...query_all_success[DigitalTwinBuilder].yaml | 350 +- .../test_commands/test_ls/class_setup.yaml | 85 +- ...ry_filter_success[DigitalTwinBuilder].yaml | 2927 +++------- ...items_success[dir-DigitalTwinBuilder].yaml | 1327 +---- ..._items_success[ls-DigitalTwinBuilder].yaml | 1311 +---- .../test_commands/test_mkdir/class_setup.yaml | 71 +- ...dy_exists_failure[DigitalTwinBuilder].yaml | 160 +- ...kdir_item_success[DigitalTwinBuilder].yaml | 334 +- .../test_commands/test_mv/class_setup.yaml | 60 +- ...supported_failure[DigitalTwinBuilder].yaml | 1454 +++++ .../test_commands/test_rm/class_setup.yaml | 78 +- ...t_rm_item_success[DigitalTwinBuilder].yaml | 154 +- ...operation_success[DigitalTwinBuilder].yaml | 128 +- ...out_force_success[DigitalTwinBuilder].yaml | 269 +- .../test_commands/test_set/class_setup.yaml | 69 +- ...ccess[description-DigitalTwinBuilder].yaml | 218 +- ...ccess[displayName-DigitalTwinBuilder].yaml | 400 +- tests/test_commands/test_export.py | 3 +- 35 files changed, 15381 insertions(+), 5971 deletions(-) create mode 100644 tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml create mode 100644 tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DigitalTwinBuilder].yaml create mode 100644 tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[DigitalTwinBuilder-2].yaml create mode 100644 tests/test_commands/recordings/test_commands/test_export/test_export_item_home_directory_path_success[DigitalTwinBuilder-.json].yaml create mode 100644 tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_format_failure[DigitalTwinBuilder-.txt].yaml create mode 100644 tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[DigitalTwinBuilder].yaml create mode 100644 tests/test_commands/recordings/test_commands/test_export/test_export_item_success[DigitalTwinBuilder-.json].yaml create mode 100644 tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_unsupported_failure[DigitalTwinBuilder].yaml diff --git a/src/fabric_cli/core/fab_config/command_support.yaml b/src/fabric_cli/core/fab_config/command_support.yaml index ca8f9de49..696a86503 100644 --- a/src/fabric_cli/core/fab_config/command_support.yaml +++ b/src/fabric_cli/core/fab_config/command_support.yaml @@ -161,7 +161,6 @@ commands: # - kql_database - mirrored_database - cosmos_db_database - - digital_twin_builder - reflex # - eventstream - mounted_data_factory @@ -173,6 +172,8 @@ commands: - sql_database - user_data_function - map + unsupported_items: + - digital_twin_builder cp: supported_elements: - workspace diff --git a/tests/test_commands/conftest.py b/tests/test_commands/conftest.py index 17810272a..102cc87cc 100644 --- a/tests/test_commands/conftest.py +++ b/tests/test_commands/conftest.py @@ -121,13 +121,14 @@ ItemType.DATA_PIPELINE, ItemType.KQL_DASHBOARD, ItemType.KQL_QUERYSET, ItemType.MIRRORED_DATABASE, ItemType.NOTEBOOK, ItemType.REFLEX, ItemType.SPARK_JOB_DEFINITION, - ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.DIGITAL_TWIN_BUILDER, ItemType.MAP + ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.MAP ]) mv_item_to_item_unsupported_failure_params = pytest.mark.parametrize("unsupported_item_type", [ ItemType.EVENTHOUSE, ItemType.KQL_DATABASE, ItemType.EVENTSTREAM, + ItemType.DIGITAL_TWIN_BUILDER, ]) mv_item_to_item_type_mismatch_failure_params = pytest.mark.parametrize("source_type,target_type", [ @@ -140,7 +141,7 @@ ItemType.DATA_PIPELINE, ItemType.KQL_DASHBOARD, ItemType.KQL_QUERYSET, ItemType.MIRRORED_DATABASE, ItemType.NOTEBOOK, ItemType.REFLEX, ItemType.SPARK_JOB_DEFINITION, - ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.DIGITAL_TWIN_BUILDER, ItemType.MAP + ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.MAP ]) get_item_with_properties_success_params = pytest.mark.parametrize("item_type,expected_properties", [ @@ -186,7 +187,7 @@ ItemType.DATA_PIPELINE, ItemType.ENVIRONMENT, ItemType.EVENTSTREAM, ItemType.KQL_DASHBOARD, ItemType.KQL_QUERYSET, ItemType.ML_EXPERIMENT, ItemType.NOTEBOOK, ItemType.REFLEX, ItemType.SPARK_JOB_DEFINITION, - ItemType.USER_DATA_FUNCTION, ItemType.DIGITAL_TWIN_BUILDER, ItemType.MAP + ItemType.USER_DATA_FUNCTION, ItemType.MAP, ItemType.DIGITAL_TWIN_BUILDER ]) set_item_metadata_success_params = pytest.mark.parametrize( diff --git a/tests/test_commands/recordings/test_commands/test_cd/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_cd/class_setup.yaml index d4691850e..cf54764ec 100644 --- a/tests/test_commands/recordings/test_commands/test_cd/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_cd/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:24:27 GMT + - Tue, 31 Mar 2026 09:08:42 GMT Pragma: - no-cache RequestId: - - ba83cdf6-ab16-49c0-87f0-3ea2d7f6c3e9 + - 9d4adfb5-3efc-44ba-9c2d-d60c7ffcc2f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:24:28 GMT + - Tue, 31 Mar 2026 09:08:42 GMT Pragma: - no-cache RequestId: - - ec8b75e4-b2ef-4925-a7e6-28592c9fcbbb + - dfbdb44b-a668-4c16-acde-d51a7aecea1b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:24:33 GMT + - Tue, 31 Mar 2026 09:08:48 GMT Pragma: - no-cache RequestId: - - 4abbe093-02de-47e3-8abe-bd10012c84ff + - bd2de8ab-8d64-4f7a-a570-824a5883e82f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "68ee84ee-37e7-4541-a6f6-de5d5cbd1d93", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "161a43c3-5168-4cae-9de0-c2eaa86ff987", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '188' + - '187' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:24:41 GMT + - Tue, 31 Mar 2026 09:08:56 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/68ee84ee-37e7-4541-a6f6-de5d5cbd1d93 + - https://api.fabric.microsoft.com/v1/workspaces/161a43c3-5168-4cae-9de0-c2eaa86ff987 Pragma: - no-cache RequestId: - - 465fe8b9-550b-40ba-9fe9-48a9e42e8806 + - c4518d83-a58a-4550-993d-81e2f5b6ef46 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (cd; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (cd; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "68ee84ee-37e7-4541-a6f6-de5d5cbd1d93", + "My workspace", "description": "", "type": "Personal"}, {"id": "161a43c3-5168-4cae-9de0-c2eaa86ff987", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1594' + - '2052' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:24:53 GMT + - Tue, 31 Mar 2026 09:09:30 GMT Pragma: - no-cache RequestId: - - 2bab9f88-6942-480e-9b76-83bc5847863a + - 5fe9ceda-f235-4e31-9208-393fc9a2d053 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,12 +264,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (cd; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (cd; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/68ee84ee-37e7-4541-a6f6-de5d5cbd1d93/items + uri: https://api.fabric.microsoft.com/v1/workspaces/161a43c3-5168-4cae-9de0-c2eaa86ff987/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "a26f22c1-3918-49d4-8532-460a0ea16563", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "161a43c3-5168-4cae-9de0-c2eaa86ff987"}, + {"id": "66c5153d-c46c-433a-ab82-a7b4e67f9802", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "161a43c3-5168-4cae-9de0-c2eaa86ff987"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +281,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '216' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:24:54 GMT + - Tue, 31 Mar 2026 09:09:31 GMT Pragma: - no-cache RequestId: - - ef9b7f4a-0d14-4e76-b60f-01c9f7c29af6 + - 0a828a4f-797b-4b66-9bd5-62f0b54f360d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +317,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (cd; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (cd; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/68ee84ee-37e7-4541-a6f6-de5d5cbd1d93 + uri: https://api.fabric.microsoft.com/v1/workspaces/161a43c3-5168-4cae-9de0-c2eaa86ff987 response: body: string: '' @@ -332,11 +335,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 17 Mar 2026 09:24:55 GMT + - Tue, 31 Mar 2026 09:09:31 GMT Pragma: - no-cache RequestId: - - fa32d047-311b-422c-ae36-59b0c3da4e62 + - 80f03473-3617-4db3-8272-6ced2902b27f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cd/test_cd_item_all_types_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_cd/test_cd_item_all_types_success[DigitalTwinBuilder].yaml index 5fb059ca8..0fb37b15f 100644 --- a/tests/test_commands/recordings/test_commands/test_cd/test_cd_item_all_types_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_cd/test_cd_item_all_types_success[DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "28ce164b-fb22-498a-936c-337aa8dd06f7", + "My workspace", "description": "", "type": "Personal"}, {"id": "161a43c3-5168-4cae-9de0-c2eaa86ff987", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2940' + - '2052' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 11:30:11 GMT + - Tue, 31 Mar 2026 09:08:57 GMT Pragma: - no-cache RequestId: - - 407a7c42-e853-4bd0-b3d5-047a8b5cfd2e + - 9f81311a-e9ba-4c94-b94a-a70312e3f493 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/28ce164b-fb22-498a-936c-337aa8dd06f7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/161a43c3-5168-4cae-9de0-c2eaa86ff987/items response: body: string: '{"value": []}' @@ -80,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 11:30:12 GMT + - Tue, 31 Mar 2026 09:08:58 GMT Pragma: - no-cache RequestId: - - b6c81a24-3141-4d30-843f-5371a566e0b2 + - a58c6bca-abdc-47fa-8d28-a7f5d7152d53 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/28ce164b-fb22-498a-936c-337aa8dd06f7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/161a43c3-5168-4cae-9de0-c2eaa86ff987/items response: body: string: '{"value": []}' @@ -128,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 11:30:13 GMT + - Tue, 31 Mar 2026 09:08:59 GMT Pragma: - no-cache RequestId: - - fec7ceb9-cd32-4579-b6e0-eb9ebd7d54fc + - 5e230fd9-89d8-4750-8257-c68c242ad103 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,9 +161,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/28ce164b-fb22-498a-936c-337aa8dd06f7/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/161a43c3-5168-4cae-9de0-c2eaa86ff987/digitalTwinBuilders response: body: string: 'null' @@ -179,15 +179,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 11:30:17 GMT + - Tue, 31 Mar 2026 09:09:02 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2f062dc9-5a9f-47d5-a2d0-dee64c5f5a43 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0cde6475-4540-4245-85da-2cbd60f60033 Pragma: - no-cache RequestId: - - 59a4bf8e-57ea-4dff-946e-08b05e3964ec + - ec42e982-ff9e-4e93-81a2-14b1ac222dc1 Retry-After: - '20' Strict-Transport-Security: @@ -201,7 +201,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 2f062dc9-5a9f-47d5-a2d0-dee64c5f5a43 + - 0cde6475-4540-4245-85da-2cbd60f60033 status: code: 202 message: Accepted @@ -217,13 +217,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2f062dc9-5a9f-47d5-a2d0-dee64c5f5a43 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0cde6475-4540-4245-85da-2cbd60f60033 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-11T11:30:14.5975226", - "lastUpdatedTimeUtc": "2026-02-11T11:30:27.9114439", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:09:01.037628", + "lastUpdatedTimeUtc": "2026-03-31T09:09:10.1977828", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -233,17 +233,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 11:30:38 GMT + - Tue, 31 Mar 2026 09:09:24 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2f062dc9-5a9f-47d5-a2d0-dee64c5f5a43/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0cde6475-4540-4245-85da-2cbd60f60033/result Pragma: - no-cache RequestId: - - 1ff9640f-b15c-411e-a9df-b010e1260385 + - 4746438d-bd72-4924-b416-3d9c738ad9f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -251,7 +251,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 2f062dc9-5a9f-47d5-a2d0-dee64c5f5a43 + - 0cde6475-4540-4245-85da-2cbd60f60033 status: code: 200 message: OK @@ -267,14 +267,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2f062dc9-5a9f-47d5-a2d0-dee64c5f5a43/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0cde6475-4540-4245-85da-2cbd60f60033/result response: body: - string: '{"id": "b7a47303-94a2-42aa-a28b-ddadbcc12c0e", "type": "DigitalTwinBuilder", + string: '{"id": "10a0c491-8099-45a7-b0d8-a0ff6be774df", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "28ce164b-fb22-498a-936c-337aa8dd06f7"}' + "161a43c3-5168-4cae-9de0-c2eaa86ff987"}' headers: Access-Control-Expose-Headers: - RequestId @@ -285,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 11 Feb 2026 11:30:39 GMT + - Tue, 31 Mar 2026 09:09:24 GMT Pragma: - no-cache RequestId: - - 567a941b-796b-4688-a59b-a6eaf8cc93b0 + - 422bcc1d-c783-45bb-a563-1d4ad6ac87e5 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -313,13 +313,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "28ce164b-fb22-498a-936c-337aa8dd06f7", + "My workspace", "description": "", "type": "Personal"}, {"id": "161a43c3-5168-4cae-9de0-c2eaa86ff987", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -330,15 +330,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2940' + - '2052' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 11:30:40 GMT + - Tue, 31 Mar 2026 09:09:25 GMT Pragma: - no-cache RequestId: - - 59067ef4-594f-4017-8154-0860e866b6d6 + - f44cacc4-6a46-497b-a57b-7b4fb6e81747 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,20 +364,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/28ce164b-fb22-498a-936c-337aa8dd06f7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/161a43c3-5168-4cae-9de0-c2eaa86ff987/items response: body: - string: '{"value": [{"id": "26a1202d-2d45-48c7-916e-f4903e5400b7", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "28ce164b-fb22-498a-936c-337aa8dd06f7"}, - {"id": "b7a47303-94a2-42aa-a28b-ddadbcc12c0e", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "a26f22c1-3918-49d4-8532-460a0ea16563", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "161a43c3-5168-4cae-9de0-c2eaa86ff987"}, + {"id": "10a0c491-8099-45a7-b0d8-a0ff6be774df", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "28ce164b-fb22-498a-936c-337aa8dd06f7"}, {"id": "9509bf64-e430-4e1f-8861-e8f09f5e050a", + "161a43c3-5168-4cae-9de0-c2eaa86ff987"}, {"id": "66c5153d-c46c-433a-ab82-a7b4e67f9802", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "28ce164b-fb22-498a-936c-337aa8dd06f7"}, {"id": "641fa131-2dce-48aa-bfa6-ad089fd4c4a4", + "workspaceId": "161a43c3-5168-4cae-9de0-c2eaa86ff987"}, {"id": "bb5a6807-c28c-4fe4-a1ec-175ab8cdf7e6", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "28ce164b-fb22-498a-936c-337aa8dd06f7"}]}' + "", "workspaceId": "161a43c3-5168-4cae-9de0-c2eaa86ff987"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -386,15 +386,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '319' + - '316' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 11:30:40 GMT + - Tue, 31 Mar 2026 09:09:26 GMT Pragma: - no-cache RequestId: - - a00ab47a-fff8-4509-a389-8f3e678bca82 + - cb467a64-3f35-499b-a47e-86460ad8393f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -420,13 +420,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "28ce164b-fb22-498a-936c-337aa8dd06f7", + "My workspace", "description": "", "type": "Personal"}, {"id": "161a43c3-5168-4cae-9de0-c2eaa86ff987", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -437,15 +437,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2940' + - '2052' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 11:30:41 GMT + - Tue, 31 Mar 2026 09:09:27 GMT Pragma: - no-cache RequestId: - - ba587718-84db-4f00-aff5-0d59e6456f27 + - 2a3ddd52-e217-4779-9c07-f8406a65d0e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,20 +471,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/28ce164b-fb22-498a-936c-337aa8dd06f7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/161a43c3-5168-4cae-9de0-c2eaa86ff987/items response: body: - string: '{"value": [{"id": "26a1202d-2d45-48c7-916e-f4903e5400b7", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "28ce164b-fb22-498a-936c-337aa8dd06f7"}, - {"id": "b7a47303-94a2-42aa-a28b-ddadbcc12c0e", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "a26f22c1-3918-49d4-8532-460a0ea16563", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "161a43c3-5168-4cae-9de0-c2eaa86ff987"}, + {"id": "10a0c491-8099-45a7-b0d8-a0ff6be774df", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "28ce164b-fb22-498a-936c-337aa8dd06f7"}, {"id": "9509bf64-e430-4e1f-8861-e8f09f5e050a", + "161a43c3-5168-4cae-9de0-c2eaa86ff987"}, {"id": "66c5153d-c46c-433a-ab82-a7b4e67f9802", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "28ce164b-fb22-498a-936c-337aa8dd06f7"}, {"id": "641fa131-2dce-48aa-bfa6-ad089fd4c4a4", + "workspaceId": "161a43c3-5168-4cae-9de0-c2eaa86ff987"}, {"id": "bb5a6807-c28c-4fe4-a1ec-175ab8cdf7e6", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "28ce164b-fb22-498a-936c-337aa8dd06f7"}]}' + "", "workspaceId": "161a43c3-5168-4cae-9de0-c2eaa86ff987"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -493,15 +493,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '319' + - '316' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 11:30:41 GMT + - Tue, 31 Mar 2026 09:09:28 GMT Pragma: - no-cache RequestId: - - c4ffc80c-e75d-476e-be9b-1eccd93be96f + - f7d9be38-92a1-4da1-a397-883e8a2e6c67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -529,9 +529,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/28ce164b-fb22-498a-936c-337aa8dd06f7/items/b7a47303-94a2-42aa-a28b-ddadbcc12c0e + uri: https://api.fabric.microsoft.com/v1/workspaces/161a43c3-5168-4cae-9de0-c2eaa86ff987/items/10a0c491-8099-45a7-b0d8-a0ff6be774df response: body: string: '' @@ -547,11 +547,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 11 Feb 2026 11:30:42 GMT + - Tue, 31 Mar 2026 09:09:29 GMT Pragma: - no-cache RequestId: - - 71fa70bc-3073-4518-b564-8c911469c70e + - 91d9e7a8-a499-44f4-9e37-d114faaf3ec1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml index afa05bbe5..3c1970a26 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2771' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:06:19 GMT + - Tue, 31 Mar 2026 09:00:35 GMT Pragma: - no-cache RequestId: - - 3aab06b8-f3d5-4db2-a228-3f01423767b3 + - b4dfe6ec-0243-401c-87bc-fc9731e305f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2771' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:06:20 GMT + - Tue, 31 Mar 2026 09:00:35 GMT Pragma: - no-cache RequestId: - - 3285752a-c344-4be1-b840-f41c57a840e3 + - f4b8e373-d9c3-4c33-a5ff-bfc29d530635 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:06:26 GMT + - Tue, 31 Mar 2026 09:00:40 GMT Pragma: - no-cache RequestId: - - fc025862-a234-452f-b8d0-8bda23984394 + - 84028db2-a8f7-4857-9d61-d475e6a56ab5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '186' + - '188' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:06:33 GMT + - Tue, 31 Mar 2026 09:00:49 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897 + - https://api.fabric.microsoft.com/v1/workspaces/94e5a45a-1398-4d65-a653-a68d2ca73e45 Pragma: - no-cache RequestId: - - 7a758e47-2adf-48da-aebf-0043feb0485d + - 6b6bb6b0-5981-465a-8b31-17453914c827 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2051' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:40:01 GMT + - Tue, 31 Mar 2026 09:08:36 GMT Pragma: - no-cache RequestId: - - d99b7bb5-50ec-42bc-bef9-0a1ed567c414 + - c208830f-8031-406e-b231-71eb3ac98f85 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,9 +264,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/94e5a45a-1398-4d65-a653-a68d2ca73e45/items response: body: string: '{"value": []}' @@ -282,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:40:01 GMT + - Tue, 31 Mar 2026 09:08:37 GMT Pragma: - no-cache RequestId: - - a09eadfa-11df-42d9-9aec-7e811e8c6a23 + - a26be6e4-cff3-4255-977f-93c58b986a82 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +314,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897 + uri: https://api.fabric.microsoft.com/v1/workspaces/94e5a45a-1398-4d65-a653-a68d2ca73e45 response: body: string: '' @@ -332,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:40:02 GMT + - Tue, 31 Mar 2026 09:08:38 GMT Pragma: - no-cache RequestId: - - 3f0b7838-1987-449f-92f8-3bdab6296f6c + - cae248c9-81dc-471f-a0a6-dca9ad1b190a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml new file mode 100644 index 000000000..51dee79af --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml @@ -0,0 +1,4863 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2051' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:15 GMT + Pragma: + - no-cache + RequestId: + - 1ae963ae-f809-4898-baa0-0d482ce194d3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2051' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:16 GMT + Pragma: + - no-cache + RequestId: + - 955fb552-dfb0-4844-a2f3-9145a5db7c57 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/capacities + response: + body: + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '427' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:20 GMT + Pragma: + - no-cache + RequestId: + - 156caac8-88bb-471b-9083-fd992728057d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000001", "capacityId": + "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '167' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:27 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b + Pragma: + - no-cache + RequestId: + - 337130ee-2517-461c-b071-eadb15b28103 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2089' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:27 GMT + Pragma: + - no-cache + RequestId: + - 7d5f3ae0-6e07-460e-a09e-91685c6a174a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2089' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:27 GMT + Pragma: + - no-cache + RequestId: + - c1d7078d-d85e-4c38-bf0c-6b13d34b9e99 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/capacities + response: + body: + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '429' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:32 GMT + Pragma: + - no-cache + RequestId: + - e80af7c2-cd7d-4a14-a384-736fbdf7d8cc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000002", "capacityId": + "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '165' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:39 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0 + Pragma: + - no-cache + RequestId: + - aef5dd01-ce2e-4614-8bfd-4ef4c76aa0fa + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:40 GMT + Pragma: + - no-cache + RequestId: + - c6fb4423-0bab-4c2f-9fd0-c27a2f8d75ec + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:40 GMT + Pragma: + - no-cache + RequestId: + - 072a16e5-51cc-4b99-aaff-3192a04bd06f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:40 GMT + Pragma: + - no-cache + RequestId: + - 5ce33c8a-50b6-4a7c-a811-08056114ea51 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000003"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '68' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders + response: + body: + string: '{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": "fabcli000003", + "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '132' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:41 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders/e50835e0-0a02-44d2-a532-ea0f468af440 + Pragma: + - no-cache + RequestId: + - 913242dc-1669-4234-a20d-7e72a5f03842 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:42 GMT + Pragma: + - no-cache + RequestId: + - 32166542-4499-4e7a-a80c-5b34c9fe3217 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:43 GMT + Pragma: + - no-cache + RequestId: + - 88df75f7-22aa-47f0-9010-806efcb54ae5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:43 GMT + Pragma: + - no-cache + RequestId: + - 888cb90f-2230-4545-9498-2e6d01b88dd1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:44 GMT + Pragma: + - no-cache + RequestId: + - c1d82364-9dcd-4bee-9d84-efc2c35f5e59 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000004", "type": + "DigitalTwinBuilder", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '150' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/digitalTwinBuilders + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:46 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/516b0575-cf8e-4406-83f0-e695debdbf2c + Pragma: + - no-cache + RequestId: + - a77da350-e0e7-4a67-aa37-dcae0ad7315a + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 516b0575-cf8e-4406-83f0-e695debdbf2c + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/516b0575-cf8e-4406-83f0-e695debdbf2c + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:03:45.2858797", + "lastUpdatedTimeUtc": "2026-03-31T09:03:53.7801327", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '132' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:07 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/516b0575-cf8e-4406-83f0-e695debdbf2c/result + Pragma: + - no-cache + RequestId: + - 0297becb-68e7-429f-87c7-01adca493d96 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 516b0575-cf8e-4406-83f0-e695debdbf2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/516b0575-cf8e-4406-83f0-e695debdbf2c/result + response: + body: + string: '{"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", "type": "DigitalTwinBuilder", + "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": + "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 09:04:08 GMT + Pragma: + - no-cache + RequestId: + - 968b1232-eac8-4f23-96a9-48cf17b8e7c7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:10 GMT + Pragma: + - no-cache + RequestId: + - 4a5c11f2-5877-48b2-9de3-286c7eacabde + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:10 GMT + Pragma: + - no-cache + RequestId: + - dde24baa-8fc5-45fe-96d9-e56517d157bf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:10 GMT + Pragma: + - no-cache + RequestId: + - 002737c4-9724-4f27-b5d7-c0d2c10c62ac + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:11 GMT + Pragma: + - no-cache + RequestId: + - 115830e9-578e-4881-a5fc-c1d9f6967fbf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:14 GMT + Pragma: + - no-cache + RequestId: + - 47b0b9f4-97c9-4d11-908f-2e790c7508f7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:14 GMT + Pragma: + - no-cache + RequestId: + - 0d6fe10e-992e-46c4-ad48-46ebd0cb454b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000003"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '68' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders + response: + body: + string: '{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": "fabcli000003", + "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '132' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:15 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders/29edfe5d-2718-4c5d-8703-d85d9c90c67e + Pragma: + - no-cache + RequestId: + - 9051bed3-23ac-4531-b487-5ede9bde5a01 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + response: + body: + string: '{"value": [{"id": "bbb9cbfc-8c54-482b-abbf-7e5bdbee578d", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", + "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", + "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": + "Created by fab", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": + "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "718468e4-31f2-49bf-8e4a-7167550e03cd", + "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", + "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, + {"id": "33a0670c-0aee-490b-a1d8-7b81229a7d0b", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", + "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '344' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:17 GMT + Pragma: + - no-cache + RequestId: + - f3d2a107-8a20-46fb-99ad-b57d2a595a86 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:18 GMT + Pragma: + - no-cache + RequestId: + - a7ff5631-e2dd-4603-a3d2-c69f7b213781 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:18 GMT + Pragma: + - no-cache + RequestId: + - a6c6b943-0956-455b-b12f-5dc676e84d8c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:18 GMT + Pragma: + - no-cache + RequestId: + - 8a0e91a1-bcf2-4e45-ab75-8e2435c07424 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:19 GMT + Pragma: + - no-cache + RequestId: + - 0523d5d2-ccea-407b-bbd5-d621410edac6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:20 GMT + Pragma: + - no-cache + RequestId: + - 82347306-9ae7-4896-bcd1-93c6394547d9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + response: + body: + string: '{"value": [{"id": "bbb9cbfc-8c54-482b-abbf-7e5bdbee578d", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", + "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", + "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": + "Created by fab", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": + "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "718468e4-31f2-49bf-8e4a-7167550e03cd", + "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", + "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, + {"id": "33a0670c-0aee-490b-a1d8-7b81229a7d0b", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", + "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '344' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:20 GMT + Pragma: + - no-cache + RequestId: + - 94166b97-d01b-42f3-bde7-e1dcbf031c24 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:21 GMT + Pragma: + - no-cache + RequestId: + - 45d0acae-5f14-4e03-885c-d3c6c1a5cb28 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:21 GMT + Pragma: + - no-cache + RequestId: + - 05037cd0-37b7-45f7-8753-1cdf4aa72cd4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"requestId": "a27b60ba-5d83-47fa-86f8-ef457a590589", "errorCode": + "RequestBlocked", "message": "Request is blocked by the upstream service until: + 3/31/2026 9:05:10 AM (UTC)", "isRetriable": true}' + headers: + Content-Length: + - '189' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:04:22 GMT + RequestId: + - a27b60ba-5d83-47fa-86f8-ef457a590589 + Retry-After: + - '48' + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-public-api-error-code: + - RequestBlocked + status: + code: 429 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:11 GMT + Pragma: + - no-cache + RequestId: + - 84820305-a63b-4179-8a89-27f99190e5c7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:12 GMT + Pragma: + - no-cache + RequestId: + - 7d4462c0-0842-4f2f-93ae-65fb54f99bab + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:13 GMT + Pragma: + - no-cache + RequestId: + - f903a405-f781-4c1e-9720-2319d3d88961 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:13 GMT + Pragma: + - no-cache + RequestId: + - d5a415bc-487c-46fb-b9ec-e6350b48ac01 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": + "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:13 GMT + Pragma: + - no-cache + RequestId: + - 1dc28ac9-2b21-4cb6-84de-9ec5b7bfeb2b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:15 GMT + Pragma: + - no-cache + RequestId: + - ca5a1d77-5553-461b-9cbc-2a0f42ac431b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:16 GMT + Pragma: + - no-cache + RequestId: + - bfc429f3-92d4-4df5-8d6a-1d5e97c79f33 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:16 GMT + Pragma: + - no-cache + RequestId: + - 630a696d-1e92-473a-9c4d-e97bdf9ad5df + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items/9842a820-e4c7-4545-87ed-7af37ece34dc + response: + body: + string: '{"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", "type": "DigitalTwinBuilder", + "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": + "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '204' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:17 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - f7ac4fe8-1a74-4464-bd67-46333e9173da + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items/9842a820-e4c7-4545-87ed-7af37ece34dc/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:19 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e88e81-22b7-463a-98e4-15ca2e1e3c5f + Pragma: + - no-cache + RequestId: + - 899a80c6-b10b-45d5-96d3-2a01bb7e11fa + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 65e88e81-22b7-463a-98e4-15ca2e1e3c5f + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e88e81-22b7-463a-98e4-15ca2e1e3c5f + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:05:19.7406771", + "lastUpdatedTimeUtc": "2026-03-31T09:05:20.7545996", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '131' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:40 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e88e81-22b7-463a-98e4-15ca2e1e3c5f/result + Pragma: + - no-cache + RequestId: + - 3893a2ff-cfb6-4cd4-8a9e-1da5e70253b9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 65e88e81-22b7-463a-98e4-15ca2e1e3c5f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e88e81-22b7-463a-98e4-15ca2e1e3c5f/result + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiNzE4NDY4ZTQtMzFmMi00OWJmLThlNGEtNzE2NzU1MGUwM2NkIg0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 09:05:40 GMT + Pragma: + - no-cache + RequestId: + - 79cf1703-093b-4455-b142-78e4dcb2c834 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: '{"type": "DigitalTwinBuilder", "description": "Created by fab", "displayName": + "fabcli000004", "definition": {"parts": [{"path": "definition.json", "payload": + "ew0KICAiTGFrZWhvdXNlSWQiOiAiNzE4NDY4ZTQtMzFmMi00OWJmLThlNGEtNzE2NzU1MGUwM2NkIg0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}, "folderId": "29edfe5d-2718-4c5d-8703-d85d9c90c67e"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '873' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:05:44 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + Pragma: + - no-cache + RequestId: + - 215a755b-9420-4b5f-b04c-0a43f3158d74 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-03-31T09:05:42.9707624", + "lastUpdatedTimeUtc": "2026-03-31T09:05:42.9707624", "percentComplete": null, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '123' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:04 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + Pragma: + - no-cache + RequestId: + - 846d86a3-6fce-4d18-98f5-517fe20cfb78 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:05:42.9707624", + "lastUpdatedTimeUtc": "2026-03-31T09:06:13.5972522", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '133' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:26 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2/result + Pragma: + - no-cache + RequestId: + - e11b71c3-73f0-408f-b177-0cf3a8bd97fa + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2/result + response: + body: + string: '{"id": "06001523-6a1c-4325-a94d-15b2f883e484", "type": "DigitalTwinBuilder", + "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": + "31711a15-0d9b-419e-aeb7-8bce150293e0", "folderId": "29edfe5d-2718-4c5d-8703-d85d9c90c67e"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 09:06:27 GMT + Pragma: + - no-cache + RequestId: + - b037555d-772e-4a7f-a850-d22e291bd7a3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + response: + body: + string: '{"value": [{"id": "bbb9cbfc-8c54-482b-abbf-7e5bdbee578d", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", + "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", + "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": + "Created by fab", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": + "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "718468e4-31f2-49bf-8e4a-7167550e03cd", + "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", + "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, + {"id": "33a0670c-0aee-490b-a1d8-7b81229a7d0b", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", + "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '344' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:27 GMT + Pragma: + - no-cache + RequestId: + - 0683b9e3-0ba9-4cc7-835f-3ca581625e78 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:29 GMT + Pragma: + - no-cache + RequestId: + - bf2a4acb-3283-4a6b-8def-4b0dc6076186 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:30 GMT + Pragma: + - no-cache + RequestId: + - 051b9974-8f7a-47f5-aa1f-36775adadc74 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:31 GMT + Pragma: + - no-cache + RequestId: + - 83eef538-57ce-4053-b0e2-4ca16a2b4f1e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:32 GMT + Pragma: + - no-cache + RequestId: + - d3085f69-350e-479c-80b4-4a6da1da32a2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:33 GMT + Pragma: + - no-cache + RequestId: + - 58fae344-b460-4d90-94ed-069f91248417 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:33 GMT + Pragma: + - no-cache + RequestId: + - a2d85f8b-fb6a-4eed-8117-04ed869fd0d2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + response: + body: + string: '{"value": [{"id": "06001523-6a1c-4325-a94d-15b2f883e484", "type": "DigitalTwinBuilder", + "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": + "31711a15-0d9b-419e-aeb7-8bce150293e0", "folderId": "29edfe5d-2718-4c5d-8703-d85d9c90c67e"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '219' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:35 GMT + Pragma: + - no-cache + RequestId: + - 804cebae-6d16-4c14-a0f2-ed68d2959068 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": + "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:35 GMT + Pragma: + - no-cache + RequestId: + - 7f7beaf9-5e8c-4c9b-b87a-df94faa38336 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": + "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:36 GMT + Pragma: + - no-cache + RequestId: + - f9f6cc8e-a940-43e2-8c1c-a15c0f40f18c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:36 GMT + Pragma: + - no-cache + RequestId: + - 3b902e70-9496-4e5d-8bdf-90cfd04f3305 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": + "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:37 GMT + Pragma: + - no-cache + RequestId: + - 4a204b58-443b-41d6-85aa-cbb28461b15b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + response: + body: + string: '{"value": [{"id": "06001523-6a1c-4325-a94d-15b2f883e484", "type": "DigitalTwinBuilder", + "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": + "31711a15-0d9b-419e-aeb7-8bce150293e0", "folderId": "29edfe5d-2718-4c5d-8703-d85d9c90c67e"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '219' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:38 GMT + Pragma: + - no-cache + RequestId: + - 7799419e-45ce-45ca-b5e0-dfc7727db71d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": + "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:39 GMT + Pragma: + - no-cache + RequestId: + - 8d3796a8-b13e-4fc6-b50a-801b7038f8a6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": + "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:40 GMT + Pragma: + - no-cache + RequestId: + - d4cbf1f8-8947-4795-a930-84c71e5a939b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:40 GMT + Pragma: + - no-cache + RequestId: + - 0e2aad48-14e4-4805-986a-113c5d6445e4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"requestId": "b10600d3-deb5-4c3d-ae49-a141c71ad391", "errorCode": + "RequestBlocked", "message": "Request is blocked by the upstream service until: + 3/31/2026 9:07:30 AM (UTC)", "isRetriable": true}' + headers: + Content-Length: + - '189' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:06:42 GMT + RequestId: + - b10600d3-deb5-4c3d-ae49-a141c71ad391 + Retry-After: + - '48' + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-public-api-error-code: + - RequestBlocked + status: + code: 429 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": + "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:30 GMT + Pragma: + - no-cache + RequestId: + - 39657acc-b55d-42e4-be51-0ddc51e013e3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + response: + body: + string: '{"value": [{"id": "06001523-6a1c-4325-a94d-15b2f883e484", "type": "DigitalTwinBuilder", + "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": + "31711a15-0d9b-419e-aeb7-8bce150293e0", "folderId": "29edfe5d-2718-4c5d-8703-d85d9c90c67e"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '219' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:31 GMT + Pragma: + - no-cache + RequestId: + - e864c801-6ebb-4d48-9ccb-54c46c4925bd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": + "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:32 GMT + Pragma: + - no-cache + RequestId: + - 52347c7e-eee9-4e81-a5b1-07a86e4d2a02 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items/06001523-6a1c-4325-a94d-15b2f883e484 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 09:07:33 GMT + Pragma: + - no-cache + RequestId: + - 540064bc-1db5-4b2f-abf1-a9c84b955fa3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:34 GMT + Pragma: + - no-cache + RequestId: + - 0f7b42fd-d588-4298-b78d-1d4de3ab8b9c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + response: + body: + string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": + "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '144' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:34 GMT + Pragma: + - no-cache + RequestId: + - 4913d096-e047-4338-bb2f-c4f4956b9f51 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders/29edfe5d-2718-4c5d-8703-d85d9c90c67e + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 09:07:35 GMT + Pragma: + - no-cache + RequestId: + - d061c517-aed7-424c-a643-e0cc40ac84d9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:36 GMT + Pragma: + - no-cache + RequestId: + - 84924ec9-7d11-41bd-9e3c-64f0758a83ef + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:37 GMT + Pragma: + - no-cache + RequestId: + - a64a79d4-4090-4a92-b8e0-8f3ccd551654 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + response: + body: + string: '{"value": [{"id": "bbb9cbfc-8c54-482b-abbf-7e5bdbee578d", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", + "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", + "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": + "Created by fab", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": + "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "718468e4-31f2-49bf-8e4a-7167550e03cd", + "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", + "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, + {"id": "33a0670c-0aee-490b-a1d8-7b81229a7d0b", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", + "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '344' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:38 GMT + Pragma: + - no-cache + RequestId: + - 6de76967-2876-4fd0-ae1f-3ad2c90004ca + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:38 GMT + Pragma: + - no-cache + RequestId: + - f1ec53dc-0da8-4b4b-8ee8-8f7dd8b36dc7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:39 GMT + Pragma: + - no-cache + RequestId: + - 8a61ab9f-f8ef-402f-9d75-d5b0a3b44c5a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:40 GMT + Pragma: + - no-cache + RequestId: + - 5b54a581-0d05-4aa7-a37a-6adbda437911 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:41 GMT + Pragma: + - no-cache + RequestId: + - 64758e8a-f456-45bd-a65f-9a4db3dfed26 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items/9842a820-e4c7-4545-87ed-7af37ece34dc + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 09:07:41 GMT + Pragma: + - no-cache + RequestId: + - 563b133b-857f-4e59-91e5-03198ec5ff88 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:42 GMT + Pragma: + - no-cache + RequestId: + - b2b483d9-036b-4c5d-9297-ebb4375733d7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:42 GMT + Pragma: + - no-cache + RequestId: + - 373b8d38-b89f-4a9c-9a78-0bbb1e6aa760 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders/e50835e0-0a02-44d2-a532-ea0f468af440 + response: + body: + string: '{"requestId": "76e7897d-e617-48b4-803d-6e74dd186ca1", "errorCode": + "FolderNotEmpty", "message": "The requested folder was not empty.", "relatedResource": + {"resourceId": "e50835e0-0a02-44d2-a532-ea0f468af440", "resourceType": "Folder"}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:44 GMT + Pragma: + - no-cache + RequestId: + - 76e7897d-e617-48b4-803d-6e74dd186ca1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-public-api-error-code: + - FolderNotEmpty + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2125' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:45 GMT + Pragma: + - no-cache + RequestId: + - 3aac73ca-de52-48bb-a698-63a87ab94872 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + response: + body: + string: '{"value": [{"id": "bbb9cbfc-8c54-482b-abbf-7e5bdbee578d", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", + "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "718468e4-31f2-49bf-8e4a-7167550e03cd", + "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", + "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '246' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:46 GMT + Pragma: + - no-cache + RequestId: + - 1acf9666-ca02-4836-9fed-432dbaf26bb2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:46 GMT + Pragma: + - no-cache + RequestId: + - b789f60d-d60c-4ee1-942a-5aad47db8f7e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"requestId": "5da5e383-105a-4abf-b570-e452b549ec6f", "errorCode": + "RequestBlocked", "message": "Request is blocked by the upstream service until: + 3/31/2026 9:08:31 AM (UTC)", "isRetriable": true}' + headers: + Content-Length: + - '189' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:07:47 GMT + RequestId: + - 5da5e383-105a-4abf-b570-e452b549ec6f + Retry-After: + - '44' + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-public-api-error-code: + - RequestBlocked + status: + code: 429 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + response: + body: + string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": + "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '143' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:08:32 GMT + Pragma: + - no-cache + RequestId: + - f789ff48-4722-4870-85e6-3d8d7a983e10 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 09:08:32 GMT + Pragma: + - no-cache + RequestId: + - 4a22cfc2-bc4d-4bd9-b11d-b4ef6b374796 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2088' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:08:34 GMT + Pragma: + - no-cache + RequestId: + - 4f3c644a-756e-45f2-8a4b-9ca3447a806e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:08:34 GMT + Pragma: + - no-cache + RequestId: + - e62525ef-6082-442d-a949-3fab569979ef + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 09:08:35 GMT + Pragma: + - no-cache + RequestId: + - 16ba9a56-d5ff-4f10-8bd3-dd2fa7b13560 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DigitalTwinBuilder].yaml new file mode 100644 index 000000000..3c0ffa704 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DigitalTwinBuilder].yaml @@ -0,0 +1,2230 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2051' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:00:49 GMT + Pragma: + - no-cache + RequestId: + - bcd7c3f0-b0d3-4369-8253-645afad4ddc6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2051' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:00:50 GMT + Pragma: + - no-cache + RequestId: + - 71b47c1f-ad6f-4000-a562-9adb0f79dd81 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/capacities + response: + body: + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '425' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:00:55 GMT + Pragma: + - no-cache + RequestId: + - 1b415947-ccb0-4401-982c-31f7a4e5f93b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000001", "capacityId": + "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '167' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:02 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0 + Pragma: + - no-cache + RequestId: + - 437ed440-9e56-4bed-aef7-33c586d84e79 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2089' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:05 GMT + Pragma: + - no-cache + RequestId: + - 6bccfe20-4823-454d-9b78-727e31f3c977 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2089' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:06 GMT + Pragma: + - no-cache + RequestId: + - eabbc724-c129-426b-92e1-fcad19b9db5e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/capacities + response: + body: + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '425' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:09 GMT + Pragma: + - no-cache + RequestId: + - 3406e121-f96a-4982-bdb3-45b66a697f28 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000002", "capacityId": + "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '165' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:17 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5 + Pragma: + - no-cache + RequestId: + - ff80a942-72eb-43ee-9ba9-e28f2d1e8374 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2126' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:19 GMT + Pragma: + - no-cache + RequestId: + - 806f15eb-717d-432f-86ce-e1ed48b92b93 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:20 GMT + Pragma: + - no-cache + RequestId: + - 1076d609-933e-450f-ba72-384016bb1c95 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:21 GMT + Pragma: + - no-cache + RequestId: + - 95e03a07-bbb5-48aa-bfd9-78400fbc8882 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000003", "type": + "DigitalTwinBuilder", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '116' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/digitalTwinBuilders + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:23 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcccddfe-ee20-4706-97b9-be95832a8c78 + Pragma: + - no-cache + RequestId: + - 2babdacc-9ebd-4268-83b2-57f119e70f03 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - bcccddfe-ee20-4706-97b9-be95832a8c78 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcccddfe-ee20-4706-97b9-be95832a8c78 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:01:22.6831736", + "lastUpdatedTimeUtc": "2026-03-31T09:01:31.3994048", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '132' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:44 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcccddfe-ee20-4706-97b9-be95832a8c78/result + Pragma: + - no-cache + RequestId: + - e5355327-6fb2-4a42-b30a-e79b2ef2b5a5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - bcccddfe-ee20-4706-97b9-be95832a8c78 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcccddfe-ee20-4706-97b9-be95832a8c78/result + response: + body: + string: '{"id": "a5e04a92-7059-469f-b81a-de86ec9f4365", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "ae2bc9fa-31dc-458f-8788-7370682840e0"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 09:01:45 GMT + Pragma: + - no-cache + RequestId: + - ab73442d-38bb-42c2-97c0-8476dbabee2b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2126' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:47 GMT + Pragma: + - no-cache + RequestId: + - 836c4629-f4b1-4ba5-af53-fa172a7a176d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items + response: + body: + string: '{"value": [{"id": "66c06657-e6f7-40d5-b3ac-c766f0ee23de", "type": "SQLEndpoint", + "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, + {"id": "a5e04a92-7059-469f-b81a-de86ec9f4365", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "9bcd9ca8-b488-4e02-a4e2-6b2767d09840", + "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", + "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "4f2c2de9-8e83-4445-9506-d91f47d9f3ca", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": + "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '318' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:48 GMT + Pragma: + - no-cache + RequestId: + - 3718092d-3c4d-46c3-b6cf-5d84f511dd3d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2126' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:48 GMT + Pragma: + - no-cache + RequestId: + - d7b01c95-9adb-46d4-9403-dc9265728ddd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:50 GMT + Pragma: + - no-cache + RequestId: + - 83970b70-6b69-4d2a-adfd-95fb6bc469c1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:50 GMT + Pragma: + - no-cache + RequestId: + - 14fd346b-a1f1-4216-9266-e442f8f575ed + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:50 GMT + Pragma: + - no-cache + RequestId: + - 26646b30-2428-4647-93a7-6612ffba5b57 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items/a5e04a92-7059-469f-b81a-de86ec9f4365 + response: + body: + string: '{"id": "a5e04a92-7059-469f-b81a-de86ec9f4365", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "ae2bc9fa-31dc-458f-8788-7370682840e0"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '176' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:51 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 939feade-16ea-4c58-8cb7-1d5fde7d0229 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items/a5e04a92-7059-469f-b81a-de86ec9f4365/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:01:52 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66bc276c-b700-4109-b0d0-2992fbb88da9 + Pragma: + - no-cache + RequestId: + - b3f93f11-cc44-4fde-87db-8f5de25666ba + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 66bc276c-b700-4109-b0d0-2992fbb88da9 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66bc276c-b700-4109-b0d0-2992fbb88da9 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:01:52.7410643", + "lastUpdatedTimeUtc": "2026-03-31T09:01:53.6421645", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '131' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:02:13 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66bc276c-b700-4109-b0d0-2992fbb88da9/result + Pragma: + - no-cache + RequestId: + - 9d74e047-c720-4027-9003-68279a8ff9e0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 66bc276c-b700-4109-b0d0-2992fbb88da9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66bc276c-b700-4109-b0d0-2992fbb88da9/result + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiOWJjZDljYTgtYjQ4OC00ZTAyLWE0ZTItNmIyNzY3ZDA5ODQwIg0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 09:02:14 GMT + Pragma: + - no-cache + RequestId: + - 626b0924-7db5-49c8-aee0-3363383f65f4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: '{"type": "DigitalTwinBuilder", "description": "Created by fab", "displayName": + "fabcli000003", "definition": {"parts": [{"path": "definition.json", "payload": + "ew0KICAiTGFrZWhvdXNlSWQiOiAiOWJjZDljYTgtYjQ4OC00ZTAyLWE0ZTItNmIyNzY3ZDA5ODQwIg0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}, "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '839' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:02:17 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69 + Pragma: + - no-cache + RequestId: + - 04506ceb-aa7c-4e26-b33a-36ee79673be9 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 2b08dd03-ede8-4313-b377-f76f58571e69 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69 + response: + body: + string: '{"status": "Running", "createdTimeUtc": "2026-03-31T09:02:15.9754139", + "lastUpdatedTimeUtc": "2026-03-31T09:02:15.9754139", "percentComplete": null, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '123' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:02:38 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69 + Pragma: + - no-cache + RequestId: + - fb7d0483-3a41-4e3f-8b8d-897e3ece3a81 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 2b08dd03-ede8-4313-b377-f76f58571e69 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:02:15.9754139", + "lastUpdatedTimeUtc": "2026-03-31T09:02:47.8502445", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '132' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:02:59 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69/result + Pragma: + - no-cache + RequestId: + - 20c766fe-0faa-4d3d-9c2b-a0ed22c16ead + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 2b08dd03-ede8-4313-b377-f76f58571e69 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69/result + response: + body: + string: '{"id": "5474bd84-605d-4b45-8286-db7dc6f00d7d", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "097595cc-e610-4c4b-91af-95d22a0a56d5"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 09:03:01 GMT + Pragma: + - no-cache + RequestId: + - 32db9a71-6d22-4a18-b5da-f9779bd2cb9e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2126' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:03 GMT + Pragma: + - no-cache + RequestId: + - e4cee58e-9901-4a97-8206-1e4f6574ada8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items + response: + body: + string: '{"value": [{"id": "66c06657-e6f7-40d5-b3ac-c766f0ee23de", "type": "SQLEndpoint", + "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, + {"id": "a5e04a92-7059-469f-b81a-de86ec9f4365", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "9bcd9ca8-b488-4e02-a4e2-6b2767d09840", + "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", + "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "4f2c2de9-8e83-4445-9506-d91f47d9f3ca", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": + "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '318' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:04 GMT + Pragma: + - no-cache + RequestId: + - 6c242b23-b111-4905-a57a-18deb9c97dc4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:05 GMT + Pragma: + - no-cache + RequestId: + - d98d199a-3814-4c70-b370-a4b0d2ca0087 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2126' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:05 GMT + Pragma: + - no-cache + RequestId: + - 81390efb-c8b2-44cb-84a9-5224c64a1d0e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items + response: + body: + string: '{"value": [{"id": "5474bd84-605d-4b45-8286-db7dc6f00d7d", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "097595cc-e610-4c4b-91af-95d22a0a56d5"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '187' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:07 GMT + Pragma: + - no-cache + RequestId: + - 2a2476b0-567c-493d-a5ff-723a284e9a0d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:07 GMT + Pragma: + - no-cache + RequestId: + - 3ea9fc3e-2fb6-477d-a28b-6beb33ec5002 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2126' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:08 GMT + Pragma: + - no-cache + RequestId: + - b2aa82ab-d1df-4d6d-b816-658a52542093 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items + response: + body: + string: '{"value": [{"id": "66c06657-e6f7-40d5-b3ac-c766f0ee23de", "type": "SQLEndpoint", + "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, + {"id": "a5e04a92-7059-469f-b81a-de86ec9f4365", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "9bcd9ca8-b488-4e02-a4e2-6b2767d09840", + "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", + "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "4f2c2de9-8e83-4445-9506-d91f47d9f3ca", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": + "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '318' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:09 GMT + Pragma: + - no-cache + RequestId: + - 6bb9139d-b137-4acd-95bc-1ab68fc6358a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items/a5e04a92-7059-469f-b81a-de86ec9f4365 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 09:03:10 GMT + Pragma: + - no-cache + RequestId: + - 7bf6fed2-7a73-4c59-bd6f-8bc66b213703 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2126' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:11 GMT + Pragma: + - no-cache + RequestId: + - 7aebcd8a-56d0-48e5-8d2b-7c43638c4d5d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items + response: + body: + string: '{"value": [{"id": "66c06657-e6f7-40d5-b3ac-c766f0ee23de", "type": "SQLEndpoint", + "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, + {"id": "9bcd9ca8-b488-4e02-a4e2-6b2767d09840", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '217' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:12 GMT + Pragma: + - no-cache + RequestId: + - 43c32295-c099-41c9-8f3f-30e648e52036 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 09:03:13 GMT + Pragma: + - no-cache + RequestId: + - d5aa0bc4-11ed-4a97-b089-83ea9ef5e043 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2088' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:13 GMT + Pragma: + - no-cache + RequestId: + - 6f8d46ea-114a-4c05-a09c-df28bc0fbfde + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items + response: + body: + string: '{"value": [{"id": "5474bd84-605d-4b45-8286-db7dc6f00d7d", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "097595cc-e610-4c4b-91af-95d22a0a56d5"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '187' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:03:14 GMT + Pragma: + - no-cache + RequestId: + - 938b2ffc-e42d-4a72-8214-6bc1b5acee34 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 09:03:15 GMT + Pragma: + - no-cache + RequestId: + - b192bd23-71ba-4fb5-baa1-658895ed11cb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_exists/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_exists/class_setup.yaml index 313d96d7c..e3a422fa8 100644 --- a/tests/test_commands/recordings/test_commands/test_exists/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_exists/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (cd; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:24:55 GMT + - Tue, 31 Mar 2026 08:59:13 GMT Pragma: - no-cache RequestId: - - a043b799-4605-4c9b-8888-55a03634c35d + - 054eb0a0-0150-4e86-b561-7cc9f3aea105 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (cd; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:24:56 GMT + - Tue, 31 Mar 2026 08:59:14 GMT Pragma: - no-cache RequestId: - - 200bb679-bad8-41a6-90e6-bc2d099151ff + - b4dfba9f-1afd-4622-9709-0e4945b6b1b9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (cd; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '427' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:25:02 GMT + - Tue, 31 Mar 2026 08:59:19 GMT Pragma: - no-cache RequestId: - - 9b17ba1f-0d5d-486f-bb35-423aaa9a3dce + - d4289bf4-e0e6-447d-9afd-20b8b1b4cd49 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (cd; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "27d858c2-4c42-4367-b836-bcc01be4fac1", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '188' + - '190' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:25:09 GMT + - Tue, 31 Mar 2026 08:59:27 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/27d858c2-4c42-4367-b836-bcc01be4fac1 + - https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1 Pragma: - no-cache RequestId: - - 02f910f9-449a-4218-8058-666fb72ce478 + - 2bdcd17c-3d0e-4335-838e-ee38646f98e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "27d858c2-4c42-4367-b836-bcc01be4fac1", + "My workspace", "description": "", "type": "Personal"}, {"id": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1593' + - '2050' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:25:29 GMT + - Tue, 31 Mar 2026 09:00:33 GMT Pragma: - no-cache RequestId: - - 05b1c391-e653-4d10-b8ad-3b4939ee0932 + - 26428093-c9b2-4ced-9810-f0822e921cc8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,12 +264,19 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/27d858c2-4c42-4367-b836-bcc01be4fac1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "63f15867-c1cc-403a-a290-cb4df117a9e0", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "85c2696d-b043-4051-b68c-8ca69e4159b9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "a9cd8f45-5261-4372-b7dd-ac86e8473449", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "cddd45fd-5706-447b-a361-2d0c951ecf46", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +285,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '278' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:25:29 GMT + - Tue, 31 Mar 2026 09:00:32 GMT Pragma: - no-cache RequestId: - - 7390f46c-2b9f-4459-88a2-8a355e9e9d19 + - f6b630cd-d42f-4569-b5c3-6086219ae29e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +321,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/27d858c2-4c42-4367-b836-bcc01be4fac1 + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1 response: body: string: '' @@ -332,11 +339,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 17 Mar 2026 09:25:30 GMT + - Tue, 31 Mar 2026 09:00:33 GMT Pragma: - no-cache RequestId: - - 55974e3b-ac7a-41b8-b10b-aad239d8e66b + - 79b0b389-fcd7-4c1d-bdcc-8ab60c7d777e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_doesnt_exist_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_doesnt_exist_success[DigitalTwinBuilder].yaml index b045b31e5..a24ef4756 100644 --- a/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_doesnt_exist_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_doesnt_exist_success[DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b7945519-3184-48e4-8d42-8b7ee977816d", + "My workspace", "description": "", "type": "Personal"}, {"id": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2336' + - '2050' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 08:03:41 GMT + - Tue, 31 Mar 2026 08:59:59 GMT Pragma: - no-cache RequestId: - - e3286622-c0f4-4c02-b0ed-25a4c9c4b29e + - ba6ac62a-3efb-48d4-b114-0fc17e9db58e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,34 +62,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items response: body: - string: '{"value": [{"id": "b4b48b13-c163-44f9-ba57-4c1e3c733590", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "f73fdca7-56cb-4ab6-9476-af2a77803e78", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "9797d176-4e05-4505-b702-92eb11623ef8", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4b12cbc-7628-4748-9a01-e175de6f7f55", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203075454", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "39c996ce-6e23-4bb5-b6af-1b7db4e86822", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "b18a5ed1-ad0b-458e-b5f2-c97ee525730e", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203080254", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4de79e8-127a-403a-b786-42495ababff4", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203080308", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "a56d2f37-110e-403e-8d54-74104ad96f65", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "48e61c44-b669-4e71-82f1-76be4fe2cdbd", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d5cebdeb-f1d9-4a99-9e06-ba678b8f8747", - "type": "Lakehouse", "displayName": "StagingLakehouseForDataflows_20260203080254", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}]}' + string: '{"value": [{"id": "63f15867-c1cc-403a-a290-cb4df117a9e0", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "a9cd8f45-5261-4372-b7dd-ac86e8473449", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -98,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '521' + - '216' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 08:03:43 GMT + - Tue, 31 Mar 2026 08:59:59 GMT Pragma: - no-cache RequestId: - - 657b9810-e194-4bdf-bca7-8cf9d1edf489 + - 13a17ed3-08e0-4dbb-a7db-92884c04a852 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -132,34 +113,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items response: body: - string: '{"value": [{"id": "b4b48b13-c163-44f9-ba57-4c1e3c733590", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "f73fdca7-56cb-4ab6-9476-af2a77803e78", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "9797d176-4e05-4505-b702-92eb11623ef8", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4b12cbc-7628-4748-9a01-e175de6f7f55", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203075454", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "39c996ce-6e23-4bb5-b6af-1b7db4e86822", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "b18a5ed1-ad0b-458e-b5f2-c97ee525730e", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203080254", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4de79e8-127a-403a-b786-42495ababff4", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203080308", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "a56d2f37-110e-403e-8d54-74104ad96f65", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "48e61c44-b669-4e71-82f1-76be4fe2cdbd", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d5cebdeb-f1d9-4a99-9e06-ba678b8f8747", - "type": "Lakehouse", "displayName": "StagingLakehouseForDataflows_20260203080254", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}]}' + string: '{"value": [{"id": "63f15867-c1cc-403a-a290-cb4df117a9e0", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "a9cd8f45-5261-4372-b7dd-ac86e8473449", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -168,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '521' + - '216' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 08:03:43 GMT + - Tue, 31 Mar 2026 09:00:02 GMT Pragma: - no-cache RequestId: - - b1492050-313e-4bf0-b7dc-2c174d19eaca + - 67e9286e-09ba-4e0c-bb7c-7338f40fed95 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -205,9 +167,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/digitalTwinBuilders response: body: string: 'null' @@ -223,15 +185,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 08:03:45 GMT + - Tue, 31 Mar 2026 09:00:05 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c990f4ee-e1c1-4f0f-9ac6-e30a9d6626a5 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0eecb1af-d01b-4db0-a243-996cf7ee8033 Pragma: - no-cache RequestId: - - 88c5b5e9-2dab-4d0e-aa4c-0c9e98bc89bd + - 6a3fcb04-8b97-422d-8187-e4b7d106e60f Retry-After: - '20' Strict-Transport-Security: @@ -245,7 +207,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c990f4ee-e1c1-4f0f-9ac6-e30a9d6626a5 + - 0eecb1af-d01b-4db0-a243-996cf7ee8033 status: code: 202 message: Accepted @@ -261,13 +223,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c990f4ee-e1c1-4f0f-9ac6-e30a9d6626a5 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0eecb1af-d01b-4db0-a243-996cf7ee8033 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-03T08:03:44.8374324", - "lastUpdatedTimeUtc": "2026-02-03T08:03:52.1503807", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:00:04.1410178", + "lastUpdatedTimeUtc": "2026-03-31T09:00:10.8180503", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -281,13 +243,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 08:04:08 GMT + - Tue, 31 Mar 2026 09:00:25 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c990f4ee-e1c1-4f0f-9ac6-e30a9d6626a5/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0eecb1af-d01b-4db0-a243-996cf7ee8033/result Pragma: - no-cache RequestId: - - a3daad84-b51f-4e4f-ba96-3dfbcc1b9ae2 + - 033a3653-9448-47e1-89e4-6295384f0a8f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -295,7 +257,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c990f4ee-e1c1-4f0f-9ac6-e30a9d6626a5 + - 0eecb1af-d01b-4db0-a243-996cf7ee8033 status: code: 200 message: OK @@ -311,14 +273,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c990f4ee-e1c1-4f0f-9ac6-e30a9d6626a5/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0eecb1af-d01b-4db0-a243-996cf7ee8033/result response: body: - string: '{"id": "4483bcf0-d868-4a72-80ba-3c42995d2ca7", "type": "DigitalTwinBuilder", + string: '{"id": "36d7778a-f35a-43db-87df-b84012cafc68", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}' + "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}' headers: Access-Control-Expose-Headers: - RequestId @@ -329,11 +291,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 03 Feb 2026 08:04:08 GMT + - Tue, 31 Mar 2026 09:00:26 GMT Pragma: - no-cache RequestId: - - f8eb4fcb-c5c9-4c9d-b138-aa35979b7694 + - f2f338f6-c364-45a0-b117-436db913b67c Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -357,13 +319,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b7945519-3184-48e4-8d42-8b7ee977816d", + "My workspace", "description": "", "type": "Personal"}, {"id": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -374,15 +336,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2336' + - '2050' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 08:04:10 GMT + - Tue, 31 Mar 2026 09:00:27 GMT Pragma: - no-cache RequestId: - - 556c7307-11c9-49fd-8a7c-d103616b3332 + - 013d9504-ee89-4102-a780-a6f1ff708961 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -408,43 +370,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items response: body: - string: '{"value": [{"id": "b4b48b13-c163-44f9-ba57-4c1e3c733590", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "f73fdca7-56cb-4ab6-9476-af2a77803e78", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "9797d176-4e05-4505-b702-92eb11623ef8", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4b12cbc-7628-4748-9a01-e175de6f7f55", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203075454", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "39c996ce-6e23-4bb5-b6af-1b7db4e86822", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "b18a5ed1-ad0b-458e-b5f2-c97ee525730e", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203080254", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4de79e8-127a-403a-b786-42495ababff4", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203080308", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "f1df5308-6465-4263-80c9-3e96364594f0", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "a56d2f37-110e-403e-8d54-74104ad96f65", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "48e61c44-b669-4e71-82f1-76be4fe2cdbd", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d5cebdeb-f1d9-4a99-9e06-ba678b8f8747", - "type": "Lakehouse", "displayName": "StagingLakehouseForDataflows_20260203080254", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "4483bcf0-d868-4a72-80ba-3c42995d2ca7", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "63f15867-c1cc-403a-a290-cb4df117a9e0", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "85c2696d-b043-4051-b68c-8ca69e4159b9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "a9cd8f45-5261-4372-b7dd-ac86e8473449", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "36d7778a-f35a-43db-87df-b84012cafc68", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "4a5b0f88-82ca-48d2-b4d2-db468fd70df9", + "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, {"id": "cddd45fd-5706-447b-a361-2d0c951ecf46", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "49ff22a5-d24e-4932-8a71-0555afe6fe5f", + "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, {"id": "edd74104-c2c0-4131-a34c-31c308e0b687", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}]}' + "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -453,15 +396,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '686' + - '378' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 08:04:10 GMT + - Tue, 31 Mar 2026 09:00:29 GMT Pragma: - no-cache RequestId: - - e8370f4c-b825-4901-81a4-b9f6df2af481 + - 9da43afa-93f5-496b-a647-d628e3993ed2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -487,43 +430,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items response: body: - string: '{"value": [{"id": "b4b48b13-c163-44f9-ba57-4c1e3c733590", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "f73fdca7-56cb-4ab6-9476-af2a77803e78", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "9797d176-4e05-4505-b702-92eb11623ef8", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4b12cbc-7628-4748-9a01-e175de6f7f55", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203075454", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "39c996ce-6e23-4bb5-b6af-1b7db4e86822", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "b18a5ed1-ad0b-458e-b5f2-c97ee525730e", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203080254", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4de79e8-127a-403a-b786-42495ababff4", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203080308", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "f1df5308-6465-4263-80c9-3e96364594f0", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "a56d2f37-110e-403e-8d54-74104ad96f65", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "48e61c44-b669-4e71-82f1-76be4fe2cdbd", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d5cebdeb-f1d9-4a99-9e06-ba678b8f8747", - "type": "Lakehouse", "displayName": "StagingLakehouseForDataflows_20260203080254", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "4483bcf0-d868-4a72-80ba-3c42995d2ca7", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "63f15867-c1cc-403a-a290-cb4df117a9e0", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "85c2696d-b043-4051-b68c-8ca69e4159b9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "a9cd8f45-5261-4372-b7dd-ac86e8473449", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "36d7778a-f35a-43db-87df-b84012cafc68", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "4a5b0f88-82ca-48d2-b4d2-db468fd70df9", + "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, {"id": "cddd45fd-5706-447b-a361-2d0c951ecf46", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "49ff22a5-d24e-4932-8a71-0555afe6fe5f", + "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, {"id": "edd74104-c2c0-4131-a34c-31c308e0b687", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}]}' + "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -532,15 +456,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '686' + - '378' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 08:04:11 GMT + - Tue, 31 Mar 2026 09:00:28 GMT Pragma: - no-cache RequestId: - - c3b5f862-6fee-435b-b384-d8e30303f82d + - d24255f5-4cf7-4110-a530-6caedb135535 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -566,13 +490,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b7945519-3184-48e4-8d42-8b7ee977816d", + "My workspace", "description": "", "type": "Personal"}, {"id": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -583,15 +507,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2336' + - '2050' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 08:04:11 GMT + - Tue, 31 Mar 2026 09:00:29 GMT Pragma: - no-cache RequestId: - - 913b0ea4-5963-412c-8cd0-825980664ae7 + - 21ba825f-0c09-420e-a6c5-0eee1c76a866 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -617,43 +541,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items response: body: - string: '{"value": [{"id": "b4b48b13-c163-44f9-ba57-4c1e3c733590", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "f73fdca7-56cb-4ab6-9476-af2a77803e78", "type": "SemanticModel", "displayName": - "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "9797d176-4e05-4505-b702-92eb11623ef8", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4b12cbc-7628-4748-9a01-e175de6f7f55", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203075454", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "39c996ce-6e23-4bb5-b6af-1b7db4e86822", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "b18a5ed1-ad0b-458e-b5f2-c97ee525730e", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203080254", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4de79e8-127a-403a-b786-42495ababff4", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203080308", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "f1df5308-6465-4263-80c9-3e96364594f0", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "a56d2f37-110e-403e-8d54-74104ad96f65", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "48e61c44-b669-4e71-82f1-76be4fe2cdbd", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d5cebdeb-f1d9-4a99-9e06-ba678b8f8747", - "type": "Lakehouse", "displayName": "StagingLakehouseForDataflows_20260203080254", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "4483bcf0-d868-4a72-80ba-3c42995d2ca7", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "63f15867-c1cc-403a-a290-cb4df117a9e0", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "85c2696d-b043-4051-b68c-8ca69e4159b9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "a9cd8f45-5261-4372-b7dd-ac86e8473449", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "36d7778a-f35a-43db-87df-b84012cafc68", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "4a5b0f88-82ca-48d2-b4d2-db468fd70df9", + "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, {"id": "cddd45fd-5706-447b-a361-2d0c951ecf46", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "49ff22a5-d24e-4932-8a71-0555afe6fe5f", + "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, {"id": "edd74104-c2c0-4131-a34c-31c308e0b687", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}]}' + "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -662,15 +567,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '686' + - '378' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 08:04:13 GMT + - Tue, 31 Mar 2026 09:00:30 GMT Pragma: - no-cache RequestId: - - 4a27cd53-5550-4975-b43e-bfb1cecf6306 + - 15e0c883-aceb-49e6-b8c7-8b01d0b29c49 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -698,9 +603,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/items/4483bcf0-d868-4a72-80ba-3c42995d2ca7 + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items/36d7778a-f35a-43db-87df-b84012cafc68 response: body: string: '' @@ -716,11 +621,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 03 Feb 2026 08:04:13 GMT + - Tue, 31 Mar 2026 09:00:31 GMT Pragma: - no-cache RequestId: - - 0bf662da-aeaf-456a-a5a5-3958ed7c1e60 + - 6619e2e8-533a-4d72-b562-0bc9c399ef48 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_exists_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_exists_success[DigitalTwinBuilder].yaml index d39730ee8..9066cbd75 100644 --- a/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_exists_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_exists/test_exists_item_exists_success[DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b7945519-3184-48e4-8d42-8b7ee977816d", + "My workspace", "description": "", "type": "Personal"}, {"id": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2336' + - '2050' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 07:55:25 GMT + - Tue, 31 Mar 2026 08:59:28 GMT Pragma: - no-cache RequestId: - - 9a3d6c5c-ba73-45c4-ab37-751a1169250e + - d3472cb5-cc1a-486f-94d7-7b1589fde102 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,21 +62,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items response: body: - string: '{"value": [{"id": "b4b48b13-c163-44f9-ba57-4c1e3c733590", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "9797d176-4e05-4505-b702-92eb11623ef8", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4b12cbc-7628-4748-9a01-e175de6f7f55", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203075454", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "a56d2f37-110e-403e-8d54-74104ad96f65", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -85,15 +76,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '330' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 07:55:26 GMT + - Tue, 31 Mar 2026 08:59:29 GMT Pragma: - no-cache RequestId: - - ee7db514-9d7a-4815-9b3c-5ec770fb85ed + - 46f8315e-7814-40ca-ade6-760a0576ec68 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -119,21 +110,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items response: body: - string: '{"value": [{"id": "b4b48b13-c163-44f9-ba57-4c1e3c733590", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "9797d176-4e05-4505-b702-92eb11623ef8", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4b12cbc-7628-4748-9a01-e175de6f7f55", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203075454", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "a56d2f37-110e-403e-8d54-74104ad96f65", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -142,15 +124,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '330' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 07:55:27 GMT + - Tue, 31 Mar 2026 08:59:30 GMT Pragma: - no-cache RequestId: - - 75f6b30c-46f0-4cab-899d-30bbf55ba83b + - 7250e332-d5ad-4692-b93f-663406476647 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -179,9 +161,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/digitalTwinBuilders response: body: string: 'null' @@ -197,15 +179,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 07:55:30 GMT + - Tue, 31 Mar 2026 08:59:32 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0cd7f2e0-630e-403c-92ef-13197f90ae57 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae1ddbff-a9e2-46aa-bd95-ec31cbfec840 Pragma: - no-cache RequestId: - - 1201b24b-ef7e-43f6-949e-36c62625c8a9 + - 82edeae6-bb27-45dd-873f-376323d2bd66 Retry-After: - '20' Strict-Transport-Security: @@ -219,7 +201,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 0cd7f2e0-630e-403c-92ef-13197f90ae57 + - ae1ddbff-a9e2-46aa-bd95-ec31cbfec840 status: code: 202 message: Accepted @@ -235,13 +217,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0cd7f2e0-630e-403c-92ef-13197f90ae57 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae1ddbff-a9e2-46aa-bd95-ec31cbfec840 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-03T07:55:29.0122265", - "lastUpdatedTimeUtc": "2026-02-03T07:55:37.717943", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T08:59:30.7023337", + "lastUpdatedTimeUtc": "2026-03-31T08:59:39.3869879", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -255,13 +237,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 07:55:52 GMT + - Tue, 31 Mar 2026 08:59:53 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0cd7f2e0-630e-403c-92ef-13197f90ae57/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae1ddbff-a9e2-46aa-bd95-ec31cbfec840/result Pragma: - no-cache RequestId: - - f1a8b397-2449-4a96-a972-c6870ed39b43 + - c8f9cce8-d087-48f3-bf20-a7cac026caf2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -269,7 +251,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 0cd7f2e0-630e-403c-92ef-13197f90ae57 + - ae1ddbff-a9e2-46aa-bd95-ec31cbfec840 status: code: 200 message: OK @@ -285,14 +267,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0cd7f2e0-630e-403c-92ef-13197f90ae57/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae1ddbff-a9e2-46aa-bd95-ec31cbfec840/result response: body: - string: '{"id": "7530d6f9-3ad6-4811-833f-95444f16e551", "type": "DigitalTwinBuilder", + string: '{"id": "f342548c-8592-4085-9bc8-51260b80a572", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}' + "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}' headers: Access-Control-Expose-Headers: - RequestId @@ -303,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 03 Feb 2026 07:55:53 GMT + - Tue, 31 Mar 2026 08:59:54 GMT Pragma: - no-cache RequestId: - - 66578b11-a219-444f-ba8c-d83807bb3f0c + - 80bfa24f-7ba2-4d23-97eb-99965fa2e9da Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -331,13 +313,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b7945519-3184-48e4-8d42-8b7ee977816d", + "My workspace", "description": "", "type": "Personal"}, {"id": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -348,15 +330,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2336' + - '2050' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 07:55:54 GMT + - Tue, 31 Mar 2026 08:59:54 GMT Pragma: - no-cache RequestId: - - 7a626a10-d28d-4731-914f-f1b6dd2c0730 + - 9b377d93-cd80-4d76-9ef5-fd3922e05724 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -382,29 +364,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items response: body: - string: '{"value": [{"id": "b4b48b13-c163-44f9-ba57-4c1e3c733590", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "9797d176-4e05-4505-b702-92eb11623ef8", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4b12cbc-7628-4748-9a01-e175de6f7f55", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203075454", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "39c996ce-6e23-4bb5-b6af-1b7db4e86822", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "a56d2f37-110e-403e-8d54-74104ad96f65", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "7530d6f9-3ad6-4811-833f-95444f16e551", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": - "Created by fab", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "48e61c44-b669-4e71-82f1-76be4fe2cdbd", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "d738d906-9c5b-4849-b5dc-0e60dc06277b", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}]}' + string: '{"value": [{"id": "63f15867-c1cc-403a-a290-cb4df117a9e0", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "f342548c-8592-4085-9bc8-51260b80a572", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, {"id": "a9cd8f45-5261-4372-b7dd-ac86e8473449", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, {"id": "9e32eb47-5712-4d1d-9b4b-f68c3da393ed", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -413,15 +386,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '499' + - '317' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 07:55:55 GMT + - Tue, 31 Mar 2026 08:59:56 GMT Pragma: - no-cache RequestId: - - a4bc2cf5-1b74-43b2-b017-6756b9c1bd1c + - 2b5db59c-78bc-471a-9d64-e24a6595a535 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -447,13 +420,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b7945519-3184-48e4-8d42-8b7ee977816d", + "My workspace", "description": "", "type": "Personal"}, {"id": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -464,15 +437,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2336' + - '2050' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 07:55:56 GMT + - Tue, 31 Mar 2026 08:59:56 GMT Pragma: - no-cache RequestId: - - 0d6f474c-8bcf-4e75-b599-5b24e115696c + - 7150ad6a-96cf-49e7-961c-815faea2630a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -498,29 +471,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items response: body: - string: '{"value": [{"id": "b4b48b13-c163-44f9-ba57-4c1e3c733590", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "9797d176-4e05-4505-b702-92eb11623ef8", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "d4b12cbc-7628-4748-9a01-e175de6f7f55", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260203075454", - "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "39c996ce-6e23-4bb5-b6af-1b7db4e86822", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "a56d2f37-110e-403e-8d54-74104ad96f65", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260203075441", "description": "", "workspaceId": - "b7945519-3184-48e4-8d42-8b7ee977816d"}, {"id": "7530d6f9-3ad6-4811-833f-95444f16e551", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": - "Created by fab", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "48e61c44-b669-4e71-82f1-76be4fe2cdbd", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}, - {"id": "d738d906-9c5b-4849-b5dc-0e60dc06277b", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "b7945519-3184-48e4-8d42-8b7ee977816d"}]}' + string: '{"value": [{"id": "63f15867-c1cc-403a-a290-cb4df117a9e0", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, + {"id": "f342548c-8592-4085-9bc8-51260b80a572", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, {"id": "a9cd8f45-5261-4372-b7dd-ac86e8473449", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}, {"id": "9e32eb47-5712-4d1d-9b4b-f68c3da393ed", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "3beb89b4-64e6-4db9-86b0-564bb3c4c2d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -529,15 +493,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '499' + - '317' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 07:55:57 GMT + - Tue, 31 Mar 2026 08:59:57 GMT Pragma: - no-cache RequestId: - - ae9506ff-2e4a-4c80-8c97-4bf606d14697 + - 80c747b3-6292-4d87-983c-aa03c2d6cae9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,9 +529,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/b7945519-3184-48e4-8d42-8b7ee977816d/items/7530d6f9-3ad6-4811-833f-95444f16e551 + uri: https://api.fabric.microsoft.com/v1/workspaces/3beb89b4-64e6-4db9-86b0-564bb3c4c2d1/items/f342548c-8592-4085-9bc8-51260b80a572 response: body: string: '' @@ -583,11 +547,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 03 Feb 2026 07:55:58 GMT + - Tue, 31 Mar 2026 08:59:58 GMT Pragma: - no-cache RequestId: - - 7eeb71f4-2a89-49a2-910e-574ba6e463c0 + - 947c802a-210c-445d-aeed-02473642b056 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_export/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_export/class_setup.yaml index a0145123d..3b6e1a38f 100644 --- a/tests/test_commands/recordings/test_commands/test_export/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_export/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:13:11 GMT + - Tue, 31 Mar 2026 08:58:02 GMT Pragma: - no-cache RequestId: - - 5125a79d-0336-454a-86ba-9dc40f57d5f9 + - e8d3770d-0e9a-4e34-affe-a4d8b9cb5d5c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:13:12 GMT + - Tue, 31 Mar 2026 08:58:03 GMT Pragma: - no-cache RequestId: - - 92c0b299-6deb-45eb-a324-392c5667020e + - 0c3cc968-a30c-4220-8f56-cbe9578b4659 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '427' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:13:16 GMT + - Tue, 31 Mar 2026 08:58:09 GMT Pragma: - no-cache RequestId: - - 7b72ff3c-b864-493d-848e-f0ba3cd46000 + - d27a970d-868a-41a8-81c3-67d860935a2f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "6de67157-a78a-48e1-a47b-cf27e1d92fb1", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,13 +181,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:13:22 GMT + - Tue, 31 Mar 2026 08:58:17 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/6de67157-a78a-48e1-a47b-cf27e1d92fb1 + - https://api.fabric.microsoft.com/v1/workspaces/15b3bb1d-bc81-482d-88a0-5a4445e53b2a Pragma: - no-cache RequestId: - - d87e8a2d-b226-403d-85d5-f4227550e5fc + - e60e65ec-670a-4e70-866e-7294d07fdcd6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (export; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (export; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "6de67157-a78a-48e1-a47b-cf27e1d92fb1", + "My workspace", "description": "", "type": "Personal"}, {"id": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1593' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:13:56 GMT + - Tue, 31 Mar 2026 08:58:49 GMT Pragma: - no-cache RequestId: - - 9aa02954-cae9-4bfb-940a-fb2ec5e623e9 + - ed3ea134-f475-4bfa-be1f-49be3c084306 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,12 +264,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (export; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (export; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6de67157-a78a-48e1-a47b-cf27e1d92fb1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/15b3bb1d-bc81-482d-88a0-5a4445e53b2a/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "2d91d89b-aa25-4d74-8c35-03d7d618af68", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a"}, + {"id": "0f6e2871-c72b-4c34-a4cd-1105dd4a577d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +281,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:13:58 GMT + - Tue, 31 Mar 2026 08:58:50 GMT Pragma: - no-cache RequestId: - - 858ce9ed-8f34-4ba7-a4a3-0ed1847b08e2 + - 1e066770-c71b-495b-b3a1-b055e593c348 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +317,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (export; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (export; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/6de67157-a78a-48e1-a47b-cf27e1d92fb1 + uri: https://api.fabric.microsoft.com/v1/workspaces/15b3bb1d-bc81-482d-88a0-5a4445e53b2a response: body: string: '' @@ -332,11 +335,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:13:58 GMT + - Tue, 31 Mar 2026 08:58:51 GMT Pragma: - no-cache RequestId: - - 5785f70d-b772-4f6d-83d1-4d201692605e + - 04c41417-210c-46dd-bc7f-c52e50ce8f5d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[DigitalTwinBuilder-2].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[DigitalTwinBuilder-2].yaml new file mode 100644 index 000000000..69447d83f --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_default_format_success[DigitalTwinBuilder-2].yaml @@ -0,0 +1,772 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:42:08 GMT + Pragma: + - no-cache + RequestId: + - 6cab137e-13ed-4aed-ae38-e670bbd3c689 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:42:09 GMT + Pragma: + - no-cache + RequestId: + - 10438030-9d51-463e-b36f-e3555bfc5211 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:42:11 GMT + Pragma: + - no-cache + RequestId: + - 5ce39c7a-1fb8-4c28-8bb9-6c82fe06d32b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000001", "type": + "DigitalTwinBuilder", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '116' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/digitalTwinBuilders + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:42:14 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/57768043-f713-4ae4-9839-7565dea73a74 + Pragma: + - no-cache + RequestId: + - c0a682e3-3447-4d6a-b80a-7f0fe05aa5b3 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 57768043-f713-4ae4-9839-7565dea73a74 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/57768043-f713-4ae4-9839-7565dea73a74 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T08:42:13.1720843", + "lastUpdatedTimeUtc": "2026-03-31T08:42:21.7667407", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '132' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:42:35 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/57768043-f713-4ae4-9839-7565dea73a74/result + Pragma: + - no-cache + RequestId: + - ece849e9-c37e-4203-a802-647f3dc99c6f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 57768043-f713-4ae4-9839-7565dea73a74 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/57768043-f713-4ae4-9839-7565dea73a74/result + response: + body: + string: '{"id": "bc71a1fd-3eae-4d78-ba7a-a506a79bc5fa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 08:42:37 GMT + Pragma: + - no-cache + RequestId: + - f321a687-6ce8-4ab9-b439-0caa65135fce + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:42:38 GMT + Pragma: + - no-cache + RequestId: + - 16908803-a714-479e-8237-78ce274d07be + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "bc71a1fd-3eae-4d78-ba7a-a506a79bc5fa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "faf16f95-9069-4539-b3b6-1640b6190a59", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '317' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:42:38 GMT + Pragma: + - no-cache + RequestId: + - 10171a2b-3c6a-48e9-a3ab-731de88ea3b1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/bc71a1fd-3eae-4d78-ba7a-a506a79bc5fa + response: + body: + string: '{"id": "bc71a1fd-3eae-4d78-ba7a-a506a79bc5fa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '173' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:42:39 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 7c81b6dd-f09e-43c8-a193-20e91d9e5af6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/bc71a1fd-3eae-4d78-ba7a-a506a79bc5fa/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:42:40 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6af17a28-d64c-4006-b288-409ac8e044ce + Pragma: + - no-cache + RequestId: + - 41aaaabc-2162-4322-9cb1-3a96126cef58 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 6af17a28-d64c-4006-b288-409ac8e044ce + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6af17a28-d64c-4006-b288-409ac8e044ce + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T08:42:41.0016731", + "lastUpdatedTimeUtc": "2026-03-31T08:42:42.1315437", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '131' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:01 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6af17a28-d64c-4006-b288-409ac8e044ce/result + Pragma: + - no-cache + RequestId: + - 06377037-9317-4fe2-a671-723aad1202a4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 6af17a28-d64c-4006-b288-409ac8e044ce + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6af17a28-d64c-4006-b288-409ac8e044ce/result + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiOTFlZDY0M2ItYWVhMS00M2M0LThjMzItYThmZDU5MmY4MTRlIg0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 08:43:02 GMT + Pragma: + - no-cache + RequestId: + - 75eceb0a-1f63-4019-be96-cdf8f2c33acd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:03 GMT + Pragma: + - no-cache + RequestId: + - 2ed37bd9-48bb-4c55-aa80-d3a77be3da6a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "bc71a1fd-3eae-4d78-ba7a-a506a79bc5fa", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "faf16f95-9069-4539-b3b6-1640b6190a59", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '317' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:04 GMT + Pragma: + - no-cache + RequestId: + - 3fc8fc2e-f23e-4694-8e15-70580816b8e5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/bc71a1fd-3eae-4d78-ba7a-a506a79bc5fa + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 08:43:04 GMT + Pragma: + - no-cache + RequestId: + - ca3b697e-07f8-4a59-bf41-7ad6f3325e56 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_home_directory_path_success[DigitalTwinBuilder-.json].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_home_directory_path_success[DigitalTwinBuilder-.json].yaml new file mode 100644 index 000000000..f75ea4161 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_home_directory_path_success[DigitalTwinBuilder-.json].yaml @@ -0,0 +1,888 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:06 GMT + Pragma: + - no-cache + RequestId: + - 93282a28-3a2c-4cc4-9f36-6f692cea42f2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '216' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:06 GMT + Pragma: + - no-cache + RequestId: + - 0c04d93f-d49d-44a9-baf1-b4cc05c8222c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '216' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:07 GMT + Pragma: + - no-cache + RequestId: + - 2803bafb-6bea-41cf-9a6a-c0bc58231267 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000001", "type": + "DigitalTwinBuilder", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '116' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/digitalTwinBuilders + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:09 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9f3f6266-1077-4bfa-8e03-6232f802eee7 + Pragma: + - no-cache + RequestId: + - abae5d6b-cc87-428a-932f-a9a7e75de1e4 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 9f3f6266-1077-4bfa-8e03-6232f802eee7 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9f3f6266-1077-4bfa-8e03-6232f802eee7 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T08:43:08.7777723", + "lastUpdatedTimeUtc": "2026-03-31T08:43:16.0710305", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:32 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9f3f6266-1077-4bfa-8e03-6232f802eee7/result + Pragma: + - no-cache + RequestId: + - 4a559ca9-03ae-481a-88de-1c78071252ca + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 9f3f6266-1077-4bfa-8e03-6232f802eee7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9f3f6266-1077-4bfa-8e03-6232f802eee7/result + response: + body: + string: '{"id": "c514b3c4-0ba5-405a-a778-cc3120aef65f", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 08:43:33 GMT + Pragma: + - no-cache + RequestId: + - bfed069f-6379-480d-b455-322d9d5c435c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:34 GMT + Pragma: + - no-cache + RequestId: + - 854d606e-6bbe-4301-97a0-82c844a329dd + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "104ec2d1-577a-4a8d-866f-3cb202416a60", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "c514b3c4-0ba5-405a-a778-cc3120aef65f", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "1f0613a2-5a58-40dc-8be0-91f4b75a805b", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "74fc8cce-a084-4653-90ec-e3cdd8f76941", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:35 GMT + Pragma: + - no-cache + RequestId: + - ed6452f7-c19f-4413-be77-9bdbcbefa9a7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/c514b3c4-0ba5-405a-a778-cc3120aef65f + response: + body: + string: '{"id": "c514b3c4-0ba5-405a-a778-cc3120aef65f", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '174' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:36 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - 7d4fb907-b4b0-4805-9c55-1c0b095c6e77 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/c514b3c4-0ba5-405a-a778-cc3120aef65f/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:43:39 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b2132771-d857-4c8a-b39a-c1baa21516b7 + Pragma: + - no-cache + RequestId: + - 6066fc51-080d-4008-b312-21adf636464f + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - b2132771-d857-4c8a-b39a-c1baa21516b7 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b2132771-d857-4c8a-b39a-c1baa21516b7 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T08:43:40.4790645", + "lastUpdatedTimeUtc": "2026-03-31T08:43:41.4796431", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:44:01 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b2132771-d857-4c8a-b39a-c1baa21516b7/result + Pragma: + - no-cache + RequestId: + - 1e015968-815d-45e7-8562-eced6449c0d6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - b2132771-d857-4c8a-b39a-c1baa21516b7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b2132771-d857-4c8a-b39a-c1baa21516b7/result + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiMWYwNjEzYTItNWE1OC00MGRjLThiZTAtOTFmNGI3NWE4MDViIg0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 08:44:01 GMT + Pragma: + - no-cache + RequestId: + - b399a4c6-14e9-44fa-8713-f6353e913a6f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:44:02 GMT + Pragma: + - no-cache + RequestId: + - 262e4cc2-e608-490a-9ba4-d5758bfd6b72 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:44:04 GMT + Pragma: + - no-cache + RequestId: + - 3c69951c-03fa-4c35-aebf-d3d0589050ed + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:44:05 GMT + Pragma: + - no-cache + RequestId: + - a15f5433-b85c-4afd-87be-a202ac2a8b82 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "104ec2d1-577a-4a8d-866f-3cb202416a60", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "c514b3c4-0ba5-405a-a778-cc3120aef65f", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "1f0613a2-5a58-40dc-8be0-91f4b75a805b", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "74fc8cce-a084-4653-90ec-e3cdd8f76941", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '383' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:44:05 GMT + Pragma: + - no-cache + RequestId: + - 81c2755d-e0bc-4883-8596-db03e7fe877f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/c514b3c4-0ba5-405a-a778-cc3120aef65f + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 08:44:06 GMT + Pragma: + - no-cache + RequestId: + - 17e9426f-90cf-4f9e-b9af-78ddc85332e0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_format_failure[DigitalTwinBuilder-.txt].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_format_failure[DigitalTwinBuilder-.txt].yaml new file mode 100644 index 000000000..63b0297a5 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_format_failure[DigitalTwinBuilder-.txt].yaml @@ -0,0 +1,568 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2049' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:58:18 GMT + Pragma: + - no-cache + RequestId: + - be44ca0f-bdbc-41c0-b18f-ff73a97c19de + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/15b3bb1d-bc81-482d-88a0-5a4445e53b2a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:58:19 GMT + Pragma: + - no-cache + RequestId: + - bf0e80aa-bd66-459e-b969-d4edd563b0db + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/15b3bb1d-bc81-482d-88a0-5a4445e53b2a/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:58:20 GMT + Pragma: + - no-cache + RequestId: + - ccb9933d-9c8d-4d52-92d0-0e3c350efd97 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000001", "type": + "DigitalTwinBuilder", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '116' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/15b3bb1d-bc81-482d-88a0-5a4445e53b2a/digitalTwinBuilders + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:58:22 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fc8217ca-a8ae-496e-b477-df5fd1b69d24 + Pragma: + - no-cache + RequestId: + - 7e27cb2c-e335-41ab-8425-47af7565b983 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - fc8217ca-a8ae-496e-b477-df5fd1b69d24 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fc8217ca-a8ae-496e-b477-df5fd1b69d24 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T08:58:21.5431464", + "lastUpdatedTimeUtc": "2026-03-31T08:58:29.9461567", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '131' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:58:44 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fc8217ca-a8ae-496e-b477-df5fd1b69d24/result + Pragma: + - no-cache + RequestId: + - b28666cd-0704-4f25-b96f-3faa5e2bae22 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - fc8217ca-a8ae-496e-b477-df5fd1b69d24 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fc8217ca-a8ae-496e-b477-df5fd1b69d24/result + response: + body: + string: '{"id": "08a04e20-09e4-4395-9e4c-e330b1c4e7c0", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "15b3bb1d-bc81-482d-88a0-5a4445e53b2a"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 08:58:45 GMT + Pragma: + - no-cache + RequestId: + - d1a9b51e-b365-4161-a703-9a3afbdad186 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2049' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:58:46 GMT + Pragma: + - no-cache + RequestId: + - f0687ea1-84cd-4801-85cf-914b54c39447 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/15b3bb1d-bc81-482d-88a0-5a4445e53b2a/items + response: + body: + string: '{"value": [{"id": "2d91d89b-aa25-4d74-8c35-03d7d618af68", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a"}, + {"id": "08a04e20-09e4-4395-9e4c-e330b1c4e7c0", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "15b3bb1d-bc81-482d-88a0-5a4445e53b2a"}, {"id": "0f6e2871-c72b-4c34-a4cd-1105dd4a577d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a"}, {"id": "839b2389-d2da-4155-99f0-f729f2e65573", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '317' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:58:47 GMT + Pragma: + - no-cache + RequestId: + - 504e73c6-a742-486e-a242-892180bd78eb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2049' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:58:47 GMT + Pragma: + - no-cache + RequestId: + - cf03f9fb-4d71-4dbd-93f3-de4919c1abdc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/15b3bb1d-bc81-482d-88a0-5a4445e53b2a/items + response: + body: + string: '{"value": [{"id": "2d91d89b-aa25-4d74-8c35-03d7d618af68", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a"}, + {"id": "08a04e20-09e4-4395-9e4c-e330b1c4e7c0", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "15b3bb1d-bc81-482d-88a0-5a4445e53b2a"}, {"id": "0f6e2871-c72b-4c34-a4cd-1105dd4a577d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a"}, {"id": "839b2389-d2da-4155-99f0-f729f2e65573", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "15b3bb1d-bc81-482d-88a0-5a4445e53b2a"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '317' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:58:48 GMT + Pragma: + - no-cache + RequestId: + - 816d5316-85ce-4adb-a248-424c3bbdf1ef + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/15b3bb1d-bc81-482d-88a0-5a4445e53b2a/items/08a04e20-09e4-4395-9e4c-e330b1c4e7c0 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 08:58:48 GMT + Pragma: + - no-cache + RequestId: + - ca78e57b-b604-4368-aefe-a203c7cfdc08 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[DigitalTwinBuilder].yaml new file mode 100644 index 000000000..e008de52a --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_invalid_output_path_failure[DigitalTwinBuilder].yaml @@ -0,0 +1,818 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:44:44 GMT + Pragma: + - no-cache + RequestId: + - 8a9da620-191b-4c32-836a-d51028723c88 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "104ec2d1-577a-4a8d-866f-3cb202416a60", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6eba4ee8-7e43-46ce-99a8-02bbb2e1d2e9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "1f0613a2-5a58-40dc-8be0-91f4b75a805b", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "e243971b-7b9d-4deb-95d6-2b152aaebed1", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '342' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:44:44 GMT + Pragma: + - no-cache + RequestId: + - 89e60163-5c34-4163-a9c0-5ad762ba3e5d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "104ec2d1-577a-4a8d-866f-3cb202416a60", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6eba4ee8-7e43-46ce-99a8-02bbb2e1d2e9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "1f0613a2-5a58-40dc-8be0-91f4b75a805b", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "e243971b-7b9d-4deb-95d6-2b152aaebed1", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '342' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:44:45 GMT + Pragma: + - no-cache + RequestId: + - 6e187138-6294-469c-8cce-b05401aa36bf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000001", "type": + "DigitalTwinBuilder", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '116' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/digitalTwinBuilders + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:44:47 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e52ce4-7e42-4d88-975d-74f79f47f08e + Pragma: + - no-cache + RequestId: + - 2e41cd49-f281-4933-acca-791b5f062615 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 05e52ce4-7e42-4d88-975d-74f79f47f08e + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e52ce4-7e42-4d88-975d-74f79f47f08e + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T08:44:46.1864657", + "lastUpdatedTimeUtc": "2026-03-31T08:44:52.717032", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '131' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:08 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e52ce4-7e42-4d88-975d-74f79f47f08e/result + Pragma: + - no-cache + RequestId: + - 9fad6aeb-be7e-4347-b104-0e9cf44db1ee + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 05e52ce4-7e42-4d88-975d-74f79f47f08e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e52ce4-7e42-4d88-975d-74f79f47f08e/result + response: + body: + string: '{"id": "6c1a1c21-dd7a-45c7-ae77-0192c2357013", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 08:45:09 GMT + Pragma: + - no-cache + RequestId: + - 3dde5bda-03a5-4c47-bc5c-60473859a5e4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:09 GMT + Pragma: + - no-cache + RequestId: + - 540dfe18-46f5-4a1d-9b65-39e336dbcd88 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "104ec2d1-577a-4a8d-866f-3cb202416a60", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6eba4ee8-7e43-46ce-99a8-02bbb2e1d2e9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6e2530ab-bc4a-45c7-b5ee-5934f6f2c827", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "1f0613a2-5a58-40dc-8be0-91f4b75a805b", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "e243971b-7b9d-4deb-95d6-2b152aaebed1", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6c1a1c21-dd7a-45c7-ae77-0192c2357013", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "20f180fc-9a62-47a0-ac3e-9ac9e293be4d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "b76dcefa-f991-4336-b18d-6517d585a6f9", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '502' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:10 GMT + Pragma: + - no-cache + RequestId: + - 69bb5b92-4a88-45aa-a56a-6cdecc8e0bb0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/6c1a1c21-dd7a-45c7-ae77-0192c2357013 + response: + body: + string: '{"id": "6c1a1c21-dd7a-45c7-ae77-0192c2357013", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '174' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:12 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - c381ba33-7353-47ff-a9a1-fbd186875303 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/6c1a1c21-dd7a-45c7-ae77-0192c2357013/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:12 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b75ed25-c5f8-4802-ae40-b2082453e76a + Pragma: + - no-cache + RequestId: + - 4d922bfa-5528-465d-a15b-1dc25a53e6f6 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 3b75ed25-c5f8-4802-ae40-b2082453e76a + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b75ed25-c5f8-4802-ae40-b2082453e76a + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T08:45:13.4681744", + "lastUpdatedTimeUtc": "2026-03-31T08:45:14.0135005", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '131' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:34 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b75ed25-c5f8-4802-ae40-b2082453e76a/result + Pragma: + - no-cache + RequestId: + - af82845e-f6f8-40af-b29b-438d43144d40 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 3b75ed25-c5f8-4802-ae40-b2082453e76a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b75ed25-c5f8-4802-ae40-b2082453e76a/result + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiMjBmMTgwZmMtOWE2Mi00N2EwLWFjM2UtOWFjOWUyOTNiZTRkIg0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 08:45:35 GMT + Pragma: + - no-cache + RequestId: + - f8720e49-ccda-43c5-82e3-37009dd8e500 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:35 GMT + Pragma: + - no-cache + RequestId: + - c6445116-fec7-4782-8255-6a8206a053b2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "104ec2d1-577a-4a8d-866f-3cb202416a60", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6eba4ee8-7e43-46ce-99a8-02bbb2e1d2e9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6e2530ab-bc4a-45c7-b5ee-5934f6f2c827", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "1f0613a2-5a58-40dc-8be0-91f4b75a805b", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "e243971b-7b9d-4deb-95d6-2b152aaebed1", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6c1a1c21-dd7a-45c7-ae77-0192c2357013", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "20f180fc-9a62-47a0-ac3e-9ac9e293be4d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "b76dcefa-f991-4336-b18d-6517d585a6f9", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '502' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:36 GMT + Pragma: + - no-cache + RequestId: + - d3df2dae-2e76-41bd-997e-1f9809f4e23a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/6c1a1c21-dd7a-45c7-ae77-0192c2357013 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 08:45:37 GMT + Pragma: + - no-cache + RequestId: + - 462248dc-11a4-480d-b05f-515b9fe8fa2a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_export/test_export_item_success[DigitalTwinBuilder-.json].yaml b/tests/test_commands/recordings/test_commands/test_export/test_export_item_success[DigitalTwinBuilder-.json].yaml new file mode 100644 index 000000000..57b76c70d --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_export/test_export_item_success[DigitalTwinBuilder-.json].yaml @@ -0,0 +1,834 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:38 GMT + Pragma: + - no-cache + RequestId: + - 9366e4ed-d2ce-494c-a109-aee867ca5888 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "104ec2d1-577a-4a8d-866f-3cb202416a60", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6eba4ee8-7e43-46ce-99a8-02bbb2e1d2e9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6e2530ab-bc4a-45c7-b5ee-5934f6f2c827", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "1f0613a2-5a58-40dc-8be0-91f4b75a805b", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "e243971b-7b9d-4deb-95d6-2b152aaebed1", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "20f180fc-9a62-47a0-ac3e-9ac9e293be4d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '401' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:39 GMT + Pragma: + - no-cache + RequestId: + - 2f6299e9-1f4a-4937-9fe7-fc68400ff5b3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "104ec2d1-577a-4a8d-866f-3cb202416a60", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6eba4ee8-7e43-46ce-99a8-02bbb2e1d2e9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6e2530ab-bc4a-45c7-b5ee-5934f6f2c827", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "1f0613a2-5a58-40dc-8be0-91f4b75a805b", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "e243971b-7b9d-4deb-95d6-2b152aaebed1", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "20f180fc-9a62-47a0-ac3e-9ac9e293be4d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '401' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:40 GMT + Pragma: + - no-cache + RequestId: + - 25b07f7c-923f-415b-9611-f5a361acf662 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000001", "type": + "DigitalTwinBuilder", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '116' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/digitalTwinBuilders + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:45:42 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/facc6e6e-734e-4e64-8b6b-7c8454a5b8e5 + Pragma: + - no-cache + RequestId: + - f8df2913-1582-45ef-9625-c8ddcc7da913 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - facc6e6e-734e-4e64-8b6b-7c8454a5b8e5 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/facc6e6e-734e-4e64-8b6b-7c8454a5b8e5 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T08:45:41.8927324", + "lastUpdatedTimeUtc": "2026-03-31T08:45:47.3713078", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '132' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:46:03 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/facc6e6e-734e-4e64-8b6b-7c8454a5b8e5/result + Pragma: + - no-cache + RequestId: + - 3da84b60-d62a-42be-a323-c1d1eaed8a41 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - facc6e6e-734e-4e64-8b6b-7c8454a5b8e5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/facc6e6e-734e-4e64-8b6b-7c8454a5b8e5/result + response: + body: + string: '{"id": "7fe996e9-d983-4534-b1e6-26d5103cb492", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 08:46:03 GMT + Pragma: + - no-cache + RequestId: + - 88953abb-9eae-4709-a8fb-b008c29b1515 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:46:05 GMT + Pragma: + - no-cache + RequestId: + - b4610e29-8672-4715-a55c-3969b39c9498 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "104ec2d1-577a-4a8d-866f-3cb202416a60", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6eba4ee8-7e43-46ce-99a8-02bbb2e1d2e9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6e2530ab-bc4a-45c7-b5ee-5934f6f2c827", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "4db05743-e643-4906-adcf-d4a59e9cbca9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "1f0613a2-5a58-40dc-8be0-91f4b75a805b", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "e243971b-7b9d-4deb-95d6-2b152aaebed1", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "20f180fc-9a62-47a0-ac3e-9ac9e293be4d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "7fe996e9-d983-4534-b1e6-26d5103cb492", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "9e14c105-11eb-44cc-a46b-283d816ce137", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "83622451-d3ec-4760-970b-17a869751fd3", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '561' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:46:06 GMT + Pragma: + - no-cache + RequestId: + - 005c6895-006b-4c0d-a0e6-7d50e9754ab2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/7fe996e9-d983-4534-b1e6-26d5103cb492 + response: + body: + string: '{"id": "7fe996e9-d983-4534-b1e6-26d5103cb492", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}' + headers: + Access-Control-Expose-Headers: + - RequestId,ETag + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '175' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:46:07 GMT + ETag: + - '""' + Pragma: + - no-cache + RequestId: + - ca9805b9-2deb-46b4-998e-340b86db41c2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/7fe996e9-d983-4534-b1e6-26d5103cb492/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:46:07 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0c9c01b0-7f6c-4f05-bd42-27c9764c3548 + Pragma: + - no-cache + RequestId: + - a9f50f98-05ca-4937-94e1-83816d3e16be + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - 0c9c01b0-7f6c-4f05-bd42-27c9764c3548 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0c9c01b0-7f6c-4f05-bd42-27c9764c3548 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T08:46:08.051678", + "lastUpdatedTimeUtc": "2026-03-31T08:46:08.5194602", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:46:29 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0c9c01b0-7f6c-4f05-bd42-27c9764c3548/result + Pragma: + - no-cache + RequestId: + - f8ea7c05-394f-4bde-825c-5a6e498f1c51 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - 0c9c01b0-7f6c-4f05-bd42-27c9764c3548 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0c9c01b0-7f6c-4f05-bd42-27c9764c3548/result + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiOWUxNGMxMDUtMTFlYi00NGNjLWE0NmItMjgzZDgxNmNlMTM3Ig0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 08:46:29 GMT + Pragma: + - no-cache + RequestId: + - e883bb8a-f1dd-4efe-af01-a38843bf835c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "85517e0b-3413-4c0e-83f4-0a0cce810940", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:46:30 GMT + Pragma: + - no-cache + RequestId: + - 8779c6b6-94e7-4049-a2f1-adfe21357449 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items + response: + body: + string: '{"value": [{"id": "ee183178-63de-4553-ad58-eccba223133b", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "104ec2d1-577a-4a8d-866f-3cb202416a60", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6eba4ee8-7e43-46ce-99a8-02bbb2e1d2e9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "6e2530ab-bc4a-45c7-b5ee-5934f6f2c827", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "4db05743-e643-4906-adcf-d4a59e9cbca9", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "91ed643b-aea1-43c4-8c32-a8fd592f814e", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "1f0613a2-5a58-40dc-8be0-91f4b75a805b", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "e243971b-7b9d-4deb-95d6-2b152aaebed1", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "20f180fc-9a62-47a0-ac3e-9ac9e293be4d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, + {"id": "7fe996e9-d983-4534-b1e6-26d5103cb492", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "9e14c105-11eb-44cc-a46b-283d816ce137", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}, {"id": "83622451-d3ec-4760-970b-17a869751fd3", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "85517e0b-3413-4c0e-83f4-0a0cce810940"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '561' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 08:46:31 GMT + Pragma: + - no-cache + RequestId: + - 13ab797d-7046-4f22-acb7-2858c02d7747 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/85517e0b-3413-4c0e-83f4-0a0cce810940/items/7fe996e9-d983-4534-b1e6-26d5103cb492 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 08:46:31 GMT + Pragma: + - no-cache + RequestId: + - 6d341c8e-21d7-419a-beb4-a3cfbe8d6c7a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_get/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_get/class_setup.yaml index 3c778c742..0e1515336 100644 --- a/tests/test_commands/recordings/test_commands/test_get/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_get/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:25:30 GMT + - Tue, 31 Mar 2026 09:16:55 GMT Pragma: - no-cache RequestId: - - 3031ea8b-c072-4d82-8b82-63c60e0205f6 + - c516a733-158a-4942-974d-b90fccc1d746 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:25:30 GMT + - Tue, 31 Mar 2026 09:16:56 GMT Pragma: - no-cache RequestId: - - 6e6ed81c-49e0-4e37-afb3-e1e6faa5f67f + - a59a0c3d-3d58-41c5-a91b-e6240c08c19c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '424' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:25:36 GMT + - Tue, 31 Mar 2026 09:17:02 GMT Pragma: - no-cache RequestId: - - fef59260-88db-4a30-8c35-d910313cb64d + - 43952895-714f-4ea5-b543-9c5caf7972f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "37abf4fb-c0ef-49b8-9581-838cc70da619", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "d0b69c55-ae53-4557-9246-b52f817dcd3d", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,13 +181,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:25:44 GMT + - Tue, 31 Mar 2026 09:17:11 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/37abf4fb-c0ef-49b8-9581-838cc70da619 + - https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d Pragma: - no-cache RequestId: - - 1f98bde9-7f66-4580-a4c0-559d61ddd551 + - 4090bd5a-ed70-48fd-adee-86e7ba5ecc2a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "37abf4fb-c0ef-49b8-9581-838cc70da619", + "My workspace", "description": "", "type": "Personal"}, {"id": "d0b69c55-ae53-4557-9246-b52f817dcd3d", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:26:17 GMT + - Tue, 31 Mar 2026 09:18:11 GMT Pragma: - no-cache RequestId: - - f56d803c-aec2-4c15-a572-bdf27be51be3 + - 90c0d5f1-35ce-4519-96f9-04193b90df3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,12 +264,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/37abf4fb-c0ef-49b8-9581-838cc70da619/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "e4218ab8-403f-43ea-8275-399ac122da90", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "d0b69c55-ae53-4557-9246-b52f817dcd3d"}, + {"id": "1a8767d1-40c2-4e2a-8db0-af383b272f66", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "d0b69c55-ae53-4557-9246-b52f817dcd3d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +281,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '217' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:26:18 GMT + - Tue, 31 Mar 2026 09:18:11 GMT Pragma: - no-cache RequestId: - - 86253fcd-bbae-4d26-9b48-ffb0af935af2 + - 045834c5-880c-4228-a4ee-a7c4f94adf5b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +317,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/37abf4fb-c0ef-49b8-9581-838cc70da619 + uri: https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d response: body: string: '' @@ -332,11 +335,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 17 Mar 2026 09:26:19 GMT + - Tue, 31 Mar 2026 09:18:12 GMT Pragma: - no-cache RequestId: - - 9ee41035-979b-42b5-bd3c-6e92e30df36c + - 0b18431f-c8aa-4db0-a9b6-dfbde821e0d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[DigitalTwinBuilder].yaml index 23a67fe94..75b8709fc 100644 --- a/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_get/test_get_item_query_all_success[DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "5b6cb64b-1e77-45f0-9485-db8db4aad44b", + "My workspace", "description": "", "type": "Personal"}, {"id": "d0b69c55-ae53-4557-9246-b52f817dcd3d", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2458' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 09:06:11 GMT + - Tue, 31 Mar 2026 09:17:10 GMT Pragma: - no-cache RequestId: - - 89a149de-7a86-4068-a407-ba1f702a0404 + - 846150ab-0b9f-4fed-9272-24e1650408e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,19 +62,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5b6cb64b-1e77-45f0-9485-db8db4aad44b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d/items response: body: - string: '{"value": [{"id": "e259adaa-0708-459e-b63b-8702430868c7", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "6b8030b8-a720-4ce7-b27c-86921638ece3", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "07eb9019-ae99-4783-84ec-f2b7962dc21b", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "e4c6a8ad-667c-4cda-ac9f-f1b3796dcbe7", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -83,15 +76,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '281' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 09:06:12 GMT + - Tue, 31 Mar 2026 09:17:12 GMT Pragma: - no-cache RequestId: - - 52d36671-bc53-4097-9b0b-560a7cc78ca2 + - 0c479831-ba14-4a67-8009-29501ac24a2a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -117,19 +110,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5b6cb64b-1e77-45f0-9485-db8db4aad44b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d/items response: body: - string: '{"value": [{"id": "e259adaa-0708-459e-b63b-8702430868c7", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "6b8030b8-a720-4ce7-b27c-86921638ece3", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "07eb9019-ae99-4783-84ec-f2b7962dc21b", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "e4c6a8ad-667c-4cda-ac9f-f1b3796dcbe7", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -138,15 +124,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '281' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 09:06:13 GMT + - Tue, 31 Mar 2026 09:17:12 GMT Pragma: - no-cache RequestId: - - befa5227-61aa-4a17-92d4-39a874b14928 + - 686fa936-994d-41cf-a296-dbc981dd3c85 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -175,9 +161,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/5b6cb64b-1e77-45f0-9485-db8db4aad44b/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d/digitalTwinBuilders response: body: string: 'null' @@ -193,15 +179,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 09:06:15 GMT + - Tue, 31 Mar 2026 09:17:15 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c7e7227e-e4dc-4784-af8b-9c7b48383712 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58b93d98-02cc-4aa1-9f54-8ee41a87e4f6 Pragma: - no-cache RequestId: - - 3159b070-261d-477d-b46e-b50e99ddec65 + - c93e6a25-70b9-4d0c-8376-a92e54515747 Retry-After: - '20' Strict-Transport-Security: @@ -215,7 +201,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c7e7227e-e4dc-4784-af8b-9c7b48383712 + - 58b93d98-02cc-4aa1-9f54-8ee41a87e4f6 status: code: 202 message: Accepted @@ -231,13 +217,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c7e7227e-e4dc-4784-af8b-9c7b48383712 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58b93d98-02cc-4aa1-9f54-8ee41a87e4f6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-03T09:06:14.7570428", - "lastUpdatedTimeUtc": "2026-02-03T09:06:21.2584818", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:17:14.0398107", + "lastUpdatedTimeUtc": "2026-03-31T09:17:23.7622884", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -251,13 +237,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 09:06:38 GMT + - Tue, 31 Mar 2026 09:17:36 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c7e7227e-e4dc-4784-af8b-9c7b48383712/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58b93d98-02cc-4aa1-9f54-8ee41a87e4f6/result Pragma: - no-cache RequestId: - - 26967ef3-c823-4953-9b3d-208af6da50e2 + - c5d458f7-b8ac-4686-a332-25622d9596a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,7 +251,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c7e7227e-e4dc-4784-af8b-9c7b48383712 + - 58b93d98-02cc-4aa1-9f54-8ee41a87e4f6 status: code: 200 message: OK @@ -281,14 +267,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c7e7227e-e4dc-4784-af8b-9c7b48383712/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58b93d98-02cc-4aa1-9f54-8ee41a87e4f6/result response: body: - string: '{"id": "cf2da059-95f1-4636-b454-89dd758f8065", "type": "DigitalTwinBuilder", + string: '{"id": "9c104cfb-0a7d-455e-9a2d-bc4dbef30d33", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}' + "d0b69c55-ae53-4557-9246-b52f817dcd3d"}' headers: Access-Control-Expose-Headers: - RequestId @@ -299,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 03 Feb 2026 09:06:38 GMT + - Tue, 31 Mar 2026 09:17:37 GMT Pragma: - no-cache RequestId: - - e3408cdd-8bef-4b28-bd33-fbf036bacb9c + - d6279145-9830-4a88-97c9-f9ad6628a285 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -327,13 +313,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "5b6cb64b-1e77-45f0-9485-db8db4aad44b", + "My workspace", "description": "", "type": "Personal"}, {"id": "d0b69c55-ae53-4557-9246-b52f817dcd3d", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -344,15 +330,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2458' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 09:06:39 GMT + - Tue, 31 Mar 2026 09:17:37 GMT Pragma: - no-cache RequestId: - - c37fa47a-7b9e-4699-8b8b-9387f9c41ed5 + - 5d1634d9-d17d-49e0-ac35-4ab0afcf1484 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -378,28 +364,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5b6cb64b-1e77-45f0-9485-db8db4aad44b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d/items response: body: - string: '{"value": [{"id": "e259adaa-0708-459e-b63b-8702430868c7", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "6b8030b8-a720-4ce7-b27c-86921638ece3", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "8a817864-b5d7-42fb-aa32-d0a907d1b790", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "07eb9019-ae99-4783-84ec-f2b7962dc21b", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "e4c6a8ad-667c-4cda-ac9f-f1b3796dcbe7", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "cf2da059-95f1-4636-b454-89dd758f8065", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "e4218ab8-403f-43ea-8275-399ac122da90", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "d0b69c55-ae53-4557-9246-b52f817dcd3d"}, + {"id": "9c104cfb-0a7d-455e-9a2d-bc4dbef30d33", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, {"id": "81efd2b3-44c8-47f6-b385-4c482b7e8427", + "d0b69c55-ae53-4557-9246-b52f817dcd3d"}, {"id": "1a8767d1-40c2-4e2a-8db0-af383b272f66", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, {"id": "7d4614b9-4035-41b2-b204-d34dc5653044", + "workspaceId": "d0b69c55-ae53-4557-9246-b52f817dcd3d"}, {"id": "fb2e46b6-169e-4fc1-be5b-5f59330c1c97", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}]}' + "", "workspaceId": "d0b69c55-ae53-4557-9246-b52f817dcd3d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -408,15 +386,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '443' + - '316' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 09:06:40 GMT + - Tue, 31 Mar 2026 09:17:39 GMT Pragma: - no-cache RequestId: - - 98a1c370-6076-4666-9e51-88ee19fe2779 + - bf9d093e-b35f-4d4b-bb47-31cdf9a155d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -442,14 +420,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5b6cb64b-1e77-45f0-9485-db8db4aad44b/digitalTwinBuilders/cf2da059-95f1-4636-b454-89dd758f8065 + uri: https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d/digitalTwinBuilders/9c104cfb-0a7d-455e-9a2d-bc4dbef30d33 response: body: - string: '{"id": "cf2da059-95f1-4636-b454-89dd758f8065", "type": "DigitalTwinBuilder", + string: '{"id": "9c104cfb-0a7d-455e-9a2d-bc4dbef30d33", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}' + "d0b69c55-ae53-4557-9246-b52f817dcd3d"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -458,17 +436,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 09:06:40 GMT + - Tue, 31 Mar 2026 09:17:41 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8b547994-85c9-4745-a3ab-da7b484fdaf3 + - 167ce305-c23e-4f60-895e-22d5cc9f6faf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -482,6 +460,158 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d/items/9c104cfb-0a7d-455e-9a2d-bc4dbef30d33/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:17:43 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fea596a6-e4a6-44bb-b922-274c6f953765 + Pragma: + - no-cache + RequestId: + - 9a964e0d-c57d-42a7-8935-a09e4e081111 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - fea596a6-e4a6-44bb-b922-274c6f953765 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fea596a6-e4a6-44bb-b922-274c6f953765 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:17:44.2512978", + "lastUpdatedTimeUtc": "2026-03-31T09:17:44.84019", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:18:04 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fea596a6-e4a6-44bb-b922-274c6f953765/result + Pragma: + - no-cache + RequestId: + - 0ee4c0ed-1864-43b1-b84d-9b13ad5e9ac7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - fea596a6-e4a6-44bb-b922-274c6f953765 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fea596a6-e4a6-44bb-b922-274c6f953765/result + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiMWE4NzY3ZDEtNDBjMi00ZTJhLThkYjAtYWYzODNiMjcyZjY2Ig0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 09:18:05 GMT + Pragma: + - no-cache + RequestId: + - 2300d1f1-fa82-487f-9ef1-ef64333d49b0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK - request: body: null headers: @@ -494,9 +624,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5b6cb64b-1e77-45f0-9485-db8db4aad44b/items/cf2da059-95f1-4636-b454-89dd758f8065/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d/items/9c104cfb-0a7d-455e-9a2d-bc4dbef30d33/connections response: body: string: '{"value": []}' @@ -512,11 +642,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 09:06:41 GMT + - Tue, 31 Mar 2026 09:18:06 GMT Pragma: - no-cache RequestId: - - b2877927-c6e9-4539-961d-8e3a8297732a + - 71461e76-1153-4d7c-9280-640705301fe1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -542,13 +672,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "5b6cb64b-1e77-45f0-9485-db8db4aad44b", + "My workspace", "description": "", "type": "Personal"}, {"id": "d0b69c55-ae53-4557-9246-b52f817dcd3d", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -559,15 +689,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2458' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 09:06:43 GMT + - Tue, 31 Mar 2026 09:18:08 GMT Pragma: - no-cache RequestId: - - 112a7532-dda7-4f31-882c-3adaad0e1829 + - 10c13a61-69d6-4fa5-af8a-1ff37640c676 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -593,28 +723,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/5b6cb64b-1e77-45f0-9485-db8db4aad44b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d/items response: body: - string: '{"value": [{"id": "e259adaa-0708-459e-b63b-8702430868c7", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "6b8030b8-a720-4ce7-b27c-86921638ece3", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "8a817864-b5d7-42fb-aa32-d0a907d1b790", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "07eb9019-ae99-4783-84ec-f2b7962dc21b", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "e4c6a8ad-667c-4cda-ac9f-f1b3796dcbe7", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, - {"id": "cf2da059-95f1-4636-b454-89dd758f8065", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "e4218ab8-403f-43ea-8275-399ac122da90", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "d0b69c55-ae53-4557-9246-b52f817dcd3d"}, + {"id": "9c104cfb-0a7d-455e-9a2d-bc4dbef30d33", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, {"id": "81efd2b3-44c8-47f6-b385-4c482b7e8427", + "d0b69c55-ae53-4557-9246-b52f817dcd3d"}, {"id": "1a8767d1-40c2-4e2a-8db0-af383b272f66", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}, {"id": "7d4614b9-4035-41b2-b204-d34dc5653044", + "workspaceId": "d0b69c55-ae53-4557-9246-b52f817dcd3d"}, {"id": "fb2e46b6-169e-4fc1-be5b-5f59330c1c97", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "5b6cb64b-1e77-45f0-9485-db8db4aad44b"}]}' + "", "workspaceId": "d0b69c55-ae53-4557-9246-b52f817dcd3d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -623,15 +745,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '443' + - '316' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 09:06:43 GMT + - Tue, 31 Mar 2026 09:18:09 GMT Pragma: - no-cache RequestId: - - de179b63-73df-48cd-98ea-658ab6bf466e + - c127ada3-09dc-4dc3-8d27-e7760a75f1f0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -659,9 +781,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/5b6cb64b-1e77-45f0-9485-db8db4aad44b/items/cf2da059-95f1-4636-b454-89dd758f8065 + uri: https://api.fabric.microsoft.com/v1/workspaces/d0b69c55-ae53-4557-9246-b52f817dcd3d/items/9c104cfb-0a7d-455e-9a2d-bc4dbef30d33 response: body: string: '' @@ -677,11 +799,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 03 Feb 2026 09:06:44 GMT + - Tue, 31 Mar 2026 09:18:10 GMT Pragma: - no-cache RequestId: - - 49d8b240-a110-4c02-a926-673887b343b5 + - ca0f8423-5717-4c6f-ad8d-a9ff3f5a27cd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml index 6d273981f..f3e2f585b 100644 --- a/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 11:59:45 GMT + - Tue, 31 Mar 2026 09:18:13 GMT Pragma: - no-cache RequestId: - - f5f41f72-12e2-4cf8-8c64-72bbdc157cd5 + - 0fdd9005-0aef-45d8-a46b-4ca7ef19fb2f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 11:59:46 GMT + - Tue, 31 Mar 2026 09:18:14 GMT Pragma: - no-cache RequestId: - - 39bd590c-23bc-4176-be0a-2da79aff0fa7 + - 95a7cf23-8b63-443b-a2d8-4027b7450d31 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '424' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 11:59:51 GMT + - Tue, 31 Mar 2026 09:18:19 GMT Pragma: - no-cache RequestId: - - 0e871324-bf10-4ae4-b2b7-0009f5c19e0b + - 7761d9a4-89a6-410a-bda8-8b98d241f3a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '190' + - '188' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 11:59:59 GMT + - Tue, 31 Mar 2026 09:18:28 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47 + - https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394 Pragma: - no-cache RequestId: - - 3b30c409-d385-4941-a55a-7db6477a7f31 + - 4f356575-432f-453d-ae5c-7518686556a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (ls; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (dir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:54 GMT + - Tue, 31 Mar 2026 09:21:30 GMT Pragma: - no-cache RequestId: - - 19d6abd5-bbad-42b5-8214-a4c0c8487e95 + - f3de0391-f025-4c19-bbf9-2d0415443c79 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,12 +264,31 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (ls; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (dir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b9715c66-4249-4d50-8729-995d10cf799b", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "a2d25b5b-4f99-425e-8f4c-ff11742c26f2", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +297,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '465' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:55 GMT + - Tue, 31 Mar 2026 09:21:31 GMT Pragma: - no-cache RequestId: - - 9c3c46e0-0b91-4f54-8460-0d522df10374 + - 98cf886d-d22e-4888-ae88-88ea732344f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +333,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (ls; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (dir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47 + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394 response: body: string: '' @@ -332,11 +351,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 17 Mar 2026 12:00:56 GMT + - Tue, 31 Mar 2026 09:21:32 GMT Pragma: - no-cache RequestId: - - 6b112a4f-05a9-4955-baa8-e6f678c882d5 + - 381d829c-38c4-4e4b-ada4-9ee156187cc7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[DigitalTwinBuilder].yaml index d142bac79..09b2c9129 100644 --- a/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:01:38 GMT + - Tue, 31 Mar 2026 09:18:30 GMT Pragma: - no-cache RequestId: - - 03c6d2b0-c2ab-4b32-bd86-4fb45c582f61 + - 732ad296-876c-48b1-91ab-c3db9b2d6a2b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,166 +62,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '249' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:01:40 GMT - Pragma: - - no-cache - RequestId: - - 3667e653-b10b-4533-8518-ee76242636b5 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:01:40 GMT - Pragma: - - no-cache - RequestId: - - be916a93-cdcf-4ed2-b482-33c2a88fbbaf - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:01:40 GMT - Pragma: - - no-cache - RequestId: - - cae8b57c-2886-4c66-b42b-f9dc986f9857 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -230,15 +76,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '249' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:01:41 GMT + - Tue, 31 Mar 2026 09:18:30 GMT Pragma: - no-cache RequestId: - - 22335196-a310-45dd-a86e-319b6781e654 + - 0495b167-ce15-48e9-b5df-78bd72c3482c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,13 +110,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -279,104 +124,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:01:42 GMT + - Tue, 31 Mar 2026 09:18:31 GMT Pragma: - no-cache RequestId: - - a14804c4-8da1-4435-b51a-0e34c2171420 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"requestId": "575d7278-d6af-4b7f-a183-e9288f6ef4b4", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/3/2026 10:02:26 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '189' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:01:43 GMT - RequestId: - - 575d7278-d6af-4b7f-a183-e9288f6ef4b4 - Retry-After: - - '43' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:02:30 GMT - Pragma: - - no-cache - RequestId: - - d6ea9d31-943e-4bbe-ad88-e764df77a57d + - d247ac93-f122-4573-9390-49c77455a706 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -405,9 +161,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/digitalTwinBuilders response: body: string: 'null' @@ -423,15 +179,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:02:33 GMT + - Tue, 31 Mar 2026 09:18:33 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5dd3e87-d259-4f1c-a606-b41bc5694730 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/60203a68-1e28-4af5-b418-844895fef90c Pragma: - no-cache RequestId: - - 7af020ca-cf32-4063-9fe2-31b562a5a1d4 + - b1c0bd94-b48c-46fb-9bc2-466027893435 Retry-After: - '20' Strict-Transport-Security: @@ -445,7 +201,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - f5dd3e87-d259-4f1c-a606-b41bc5694730 + - 60203a68-1e28-4af5-b418-844895fef90c status: code: 202 message: Accepted @@ -461,13 +217,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5dd3e87-d259-4f1c-a606-b41bc5694730 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/60203a68-1e28-4af5-b418-844895fef90c response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-03T10:02:31.7985941", - "lastUpdatedTimeUtc": "2026-02-03T10:02:41.8797029", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:18:32.287282", + "lastUpdatedTimeUtc": "2026-03-31T09:18:54.2631976", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -477,17 +233,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:02:55 GMT + - Tue, 31 Mar 2026 09:18:54 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5dd3e87-d259-4f1c-a606-b41bc5694730/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/60203a68-1e28-4af5-b418-844895fef90c/result Pragma: - no-cache RequestId: - - 7a00ab60-82c8-4504-9dd3-2594f5311228 + - 5a0972a4-19a1-47d5-8e65-d4de51a7c713 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -495,7 +251,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - f5dd3e87-d259-4f1c-a606-b41bc5694730 + - 60203a68-1e28-4af5-b418-844895fef90c status: code: 200 message: OK @@ -511,14 +267,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5dd3e87-d259-4f1c-a606-b41bc5694730/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/60203a68-1e28-4af5-b418-844895fef90c/result response: body: - string: '{"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", + string: '{"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}' + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}' headers: Access-Control-Expose-Headers: - RequestId @@ -529,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 03 Feb 2026 10:02:56 GMT + - Tue, 31 Mar 2026 09:18:55 GMT Pragma: - no-cache RequestId: - - bcf34116-2ab0-4a8e-a753-945311833e04 + - 55ddb4b1-a89e-45d0-9be5-91c2de4176af Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -557,13 +313,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -574,15 +330,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:02:57 GMT + - Tue, 31 Mar 2026 09:18:56 GMT Pragma: - no-cache RequestId: - - d1b5571b-e547-42a7-9393-69c17bf02de4 + - 6e99de35-8b59-496f-ab4b-c9c5d71687d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -608,25 +364,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -635,15 +384,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '419' + - '278' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:02:58 GMT + - Tue, 31 Mar 2026 09:18:57 GMT Pragma: - no-cache RequestId: - - d2012ec8-fcd7-4cb6-8132-a8146010b869 + - 9752ed25-ce51-47b4-beae-644719cfab33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -669,13 +418,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -684,15 +438,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '278' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:02:59 GMT + - Tue, 31 Mar 2026 09:18:57 GMT Pragma: - no-cache RequestId: - - ee229b2a-8e49-4bac-81e8-c10280364765 + - 780280e4-8a99-455d-83ab-441e14746995 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -707,7 +461,8 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"description": "Created by fab", "displayName": "fabcli000002", "type": + "DigitalTwinBuilder", "folderId": null}' headers: Accept: - '*/*' @@ -715,33 +470,40 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '116' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/digitalTwinBuilders response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: 'null' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Location,Retry-After,ETag,x-ms-operation-id Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '145' + - '24' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:02:59 GMT + - Tue, 31 Mar 2026 09:18:59 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae490cc2-44cd-4943-bdc3-b1aad56848e1 Pragma: - no-cache RequestId: - - 8850b7c1-fd35-4273-b784-76b1f969c248 + - bf597e30-5e43-44a1-84f3-07ddccaa2bff + Retry-After: + - '20' Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -752,1544 +514,11 @@ interactions: - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' + x-ms-operation-id: + - ae490cc2-44cd-4943-bdc3-b1aad56848e1 status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '419' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:00 GMT - Pragma: - - no-cache - RequestId: - - d62531f6-2070-4164-bea7-810a63571fcd - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:01 GMT - Pragma: - - no-cache - RequestId: - - 9267ccc5-d705-4f73-a885-3cef39bcb740 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:01 GMT - Pragma: - - no-cache - RequestId: - - e4179f52-69f0-43b6-a5fe-4e6417467eb8 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000002", "type": - "DigitalTwinBuilder", "folderId": null}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '116' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/digitalTwinBuilders - response: - body: - string: 'null' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '24' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:04 GMT - ETag: - - '""' - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0e968b94-aa47-4518-ac45-09b6b469fd4b - Pragma: - - no-cache - RequestId: - - 621b7b9e-6b23-4c1f-9d0a-ca439f1131ff - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-operation-id: - - 0e968b94-aa47-4518-ac45-09b6b469fd4b - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0e968b94-aa47-4518-ac45-09b6b469fd4b - response: - body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-03T10:03:03.3222316", - "lastUpdatedTimeUtc": "2026-02-03T10:03:10.6992148", "percentComplete": 100, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '130' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:26 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0e968b94-aa47-4518-ac45-09b6b469fd4b/result - Pragma: - - no-cache - RequestId: - - 51f4da8e-32ac-4f4b-b117-963d40c7c36e - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - 0e968b94-aa47-4518-ac45-09b6b469fd4b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0e968b94-aa47-4518-ac45-09b6b469fd4b/result - response: - body: - string: '{"id": "fb01dac4-accf-4cd0-9f65-19e20982277a", "type": "DigitalTwinBuilder", - "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 03 Feb 2026 10:03:27 GMT - Pragma: - - no-cache - RequestId: - - a6682f50-62a9-452c-891e-625551d176a5 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2457' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:28 GMT - Pragma: - - no-cache - RequestId: - - b493a2d7-53ca-4263-8d43-1304c823bad1 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "fb01dac4-accf-4cd0-9f65-19e20982277a", - "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": - "Created by fab", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "d277372a-16bf-4bc1-bad3-476f6dbedcb1", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '543' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:29 GMT - Pragma: - - no-cache - RequestId: - - 1bdbfba3-fc18-4685-a5fc-3927a61c4402 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:30 GMT - Pragma: - - no-cache - RequestId: - - 20129ce0-53f3-4df1-956f-fa9ade1a5155 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:30 GMT - Pragma: - - no-cache - RequestId: - - f809a837-18e7-4437-beae-33fd91c105be - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "fb01dac4-accf-4cd0-9f65-19e20982277a", - "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": - "Created by fab", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "d277372a-16bf-4bc1-bad3-476f6dbedcb1", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '543' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:31 GMT - Pragma: - - no-cache - RequestId: - - 15cbc978-b6e5-4718-84df-8013c39c650f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:32 GMT - Pragma: - - no-cache - RequestId: - - c69524e0-777c-4e64-883c-541165af75ae - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:32 GMT - Pragma: - - no-cache - RequestId: - - 8aaa0c41-cf0f-41e0-adc4-8f2f8557acc1 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000003", "type": - "DigitalTwinBuilder", "folderId": null}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '116' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/digitalTwinBuilders - response: - body: - string: 'null' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '24' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:35 GMT - ETag: - - '""' - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce592edd-af81-4f61-9938-b187f18c9a5b - Pragma: - - no-cache - RequestId: - - 1108e1ac-2f70-4f60-a1d1-7a026ab67f9e - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-operation-id: - - ce592edd-af81-4f61-9938-b187f18c9a5b - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce592edd-af81-4f61-9938-b187f18c9a5b - response: - body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-03T10:03:34.3766588", - "lastUpdatedTimeUtc": "2026-02-03T10:03:42.4869695", "percentComplete": 100, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '132' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:57 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce592edd-af81-4f61-9938-b187f18c9a5b/result - Pragma: - - no-cache - RequestId: - - b4776730-d876-4a4a-80ef-84b3fb80bcb3 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - ce592edd-af81-4f61-9938-b187f18c9a5b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce592edd-af81-4f61-9938-b187f18c9a5b/result - response: - body: - string: '{"id": "07be57a6-e839-45b4-a1fd-b65924787b01", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 03 Feb 2026 10:03:59 GMT - Pragma: - - no-cache - RequestId: - - cd26873c-100b-404f-a725-d36893608421 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2457' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:03:59 GMT - Pragma: - - no-cache - RequestId: - - 12fefa38-399d-406d-8d7f-ceb2489ffd12 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "fb01dac4-accf-4cd0-9f65-19e20982277a", - "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": - "Created by fab", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "d277372a-16bf-4bc1-bad3-476f6dbedcb1", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "07be57a6-e839-45b4-a1fd-b65924787b01", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", - "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "4b8bb820-0fd7-45d0-a257-a7af22693740", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '661' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:04:00 GMT - Pragma: - - no-cache - RequestId: - - 21c75c88-b8e4-4a7e-8a5f-212a35a65884 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:04:01 GMT - Pragma: - - no-cache - RequestId: - - a4612f5d-c0ce-498c-a1ac-563660308b74 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:04:03 GMT - Pragma: - - no-cache - RequestId: - - 5eaa5e29-84bc-4d06-b24c-c0c7d1aed88d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:04:03 GMT - Pragma: - - no-cache - RequestId: - - 7ca649d1-73b4-4955-baff-7b441fc442f7 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2457' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:04:03 GMT - Pragma: - - no-cache - RequestId: - - ac859451-2411-443d-8a6e-7f4506a8e525 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "fb01dac4-accf-4cd0-9f65-19e20982277a", - "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": - "Created by fab", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "d277372a-16bf-4bc1-bad3-476f6dbedcb1", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "07be57a6-e839-45b4-a1fd-b65924787b01", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", - "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "4b8bb820-0fd7-45d0-a257-a7af22693740", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '661' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:04:04 GMT - Pragma: - - no-cache - RequestId: - - fa320a41-5a4d-4aec-86d5-5651bf97263d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:04:05 GMT - Pragma: - - no-cache - RequestId: - - c7c266c8-e91f-4d06-9225-1f993f764417 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:04:05 GMT - Pragma: - - no-cache - RequestId: - - 496a9bce-73c5-4b7f-8fbd-b0cd942725d3 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:04:06 GMT - Pragma: - - no-cache - RequestId: - - 8fc378fb-a1cc-48d9-a0cd-e4f1af496459 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2457' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:04:06 GMT - Pragma: - - no-cache - RequestId: - - 75a12baf-fbab-4a51-b1b0-312a3fe0cf74 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "fb01dac4-accf-4cd0-9f65-19e20982277a", - "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": - "Created by fab", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "d277372a-16bf-4bc1-bad3-476f6dbedcb1", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "07be57a6-e839-45b4-a1fd-b65924787b01", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", - "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "4b8bb820-0fd7-45d0-a257-a7af22693740", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '661' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:04:07 GMT - Pragma: - - no-cache - RequestId: - - 84703f5a-35d6-4d82-b02b-4addb2aa80ff - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2302,40 +531,41 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae490cc2-44cd-4943-bdc3-b1aad56848e1 response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:18:59.4374465", + "lastUpdatedTimeUtc": "2026-03-31T09:19:05.8264488", "percentComplete": 100, + "error": null}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Location,x-ms-operation-id Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '145' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:08 GMT + - Tue, 31 Mar 2026 09:19:20 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae490cc2-44cd-4943-bdc3-b1aad56848e1/result Pragma: - no-cache RequestId: - - 765dc615-27de-4e7b-9cb2-3f6e6921534e + - 338d5842-ca54-4484-8261-1f70c63275f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: - nosniff X-Frame-Options: - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' + x-ms-operation-id: + - ae490cc2-44cd-4943-bdc3-b1aad56848e1 status: code: 200 message: OK @@ -2351,34 +581,40 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae490cc2-44cd-4943-bdc3-b1aad56848e1/result response: body: - string: '{"requestId": "907b05bf-ff46-496b-bbcb-07fbbcef1af9", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/3/2026 10:04:31 AM (UTC)", "isRetriable": true}' + string: '{"id": "a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f", "type": "DigitalTwinBuilder", + "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}' headers: - Content-Length: - - '189' + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Tue, 03 Feb 2026 10:04:09 GMT + - Tue, 31 Mar 2026 09:19:22 GMT + Pragma: + - no-cache RequestId: - - 907b05bf-ff46-496b-bbcb-07fbbcef1af9 - Retry-After: - - '22' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked + - 2d70540c-1833-47aa-80b6-28e50f960fde + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny status: - code: 429 - message: '' + code: 200 + message: OK - request: body: null headers: @@ -2391,13 +627,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2406,15 +644,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:33 GMT + - Tue, 31 Mar 2026 09:19:23 GMT Pragma: - no-cache RequestId: - - 460439bf-8ad5-4f71-bc34-03e408048ddf + - 72997946-ad26-418f-9fce-a73d4f1303b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2440,13 +678,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f", + "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": + "Created by fab", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b2cf3c58-8c07-4c35-9484-de2aa08cb6c8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2455,15 +708,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '440' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:34 GMT + - Tue, 31 Mar 2026 09:19:24 GMT Pragma: - no-cache RequestId: - - 85dee7fd-e737-4631-85ce-d948500d7c98 + - 3c94ca9e-ac3f-47db-babe-c7589f13e1e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2489,15 +742,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f", + "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": + "Created by fab", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b2cf3c58-8c07-4c35-9484-de2aa08cb6c8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2506,15 +772,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '440' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:34 GMT + - Tue, 31 Mar 2026 09:19:25 GMT Pragma: - no-cache RequestId: - - f853c843-8d61-4227-8d9e-87b7bcacc85b + - 0605c3ec-be51-4de7-a5f1-fe9e4d96d738 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2529,7 +795,8 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"description": "Created by fab", "displayName": "fabcli000003", "type": + "DigitalTwinBuilder", "folderId": null}' headers: Accept: - '*/*' @@ -2537,62 +804,40 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '116' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/digitalTwinBuilders response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "fb01dac4-accf-4cd0-9f65-19e20982277a", - "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": - "Created by fab", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "d277372a-16bf-4bc1-bad3-476f6dbedcb1", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "07be57a6-e839-45b4-a1fd-b65924787b01", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", - "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "4b8bb820-0fd7-45d0-a257-a7af22693740", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: 'null' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Location,Retry-After,ETag,x-ms-operation-id Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '661' + - '24' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:35 GMT + - Tue, 31 Mar 2026 09:19:27 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9d7cfaf6-26b5-4280-aa95-3e8451f5c472 Pragma: - no-cache RequestId: - - 3f9dea1f-021c-41ce-9c3a-0f0cd2568aa6 + - 2d3ac3ff-d0a6-41b3-ac8e-71e3bbcd3261 + Retry-After: + - '20' Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2603,9 +848,11 @@ interactions: - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' + x-ms-operation-id: + - 9d7cfaf6-26b5-4280-aa95-3e8451f5c472 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2618,40 +865,41 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9d7cfaf6-26b5-4280-aa95-3e8451f5c472 response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:19:26.1381517", + "lastUpdatedTimeUtc": "2026-03-31T09:19:32.3351073", "percentComplete": 100, + "error": null}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Location,x-ms-operation-id Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - gzip Content-Length: - - '145' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:36 GMT + - Tue, 31 Mar 2026 09:19:48 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9d7cfaf6-26b5-4280-aa95-3e8451f5c472/result Pragma: - no-cache RequestId: - - 554eae9c-9d20-456f-bd50-924420067a19 + - 9ca3fead-4d93-4faa-a22f-59a37b5b1943 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: - nosniff X-Frame-Options: - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' + x-ms-operation-id: + - 9d7cfaf6-26b5-4280-aa95-3e8451f5c472 status: code: 200 message: OK @@ -2667,13 +915,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9d7cfaf6-26b5-4280-aa95-3e8451f5c472/result response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"id": "38b5977f-2587-4875-9030-1c72d60af6ee", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2681,26 +930,22 @@ interactions: - no-store, must-revalidate, no-cache Content-Encoding: - gzip - Content-Length: - - '145' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Tue, 03 Feb 2026 10:04:37 GMT + - Tue, 31 Mar 2026 09:19:49 GMT Pragma: - no-cache RequestId: - - feebe11e-1497-4ea1-bc37-a14d0ff1b180 + - dd67cbf3-da4e-4d26-9409-e863708f2cef Strict-Transport-Security: - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' status: code: 200 message: OK @@ -2716,13 +961,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2731,15 +978,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:37 GMT + - Tue, 31 Mar 2026 09:19:50 GMT Pragma: - no-cache RequestId: - - 951bf039-7d08-4abd-8953-33db3fc3a906 + - 6cba8ed9-c3f6-4808-86e8-7cbbf5fe6295 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2765,15 +1012,37 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f", + "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": + "Created by fab", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b2cf3c58-8c07-4c35-9484-de2aa08cb6c8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "38b5977f-2587-4875-9030-1c72d60af6ee", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", + "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "3310bbdb-7b95-4aa2-b66e-df64af120722", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2782,15 +1051,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:38 GMT + - Tue, 31 Mar 2026 09:19:51 GMT Pragma: - no-cache RequestId: - - 857c397d-26b4-42a7-a76a-c6e4da13193c + - ba1bf5cf-60c5-493d-bd46-5d7ac498ac52 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2816,42 +1085,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "fb01dac4-accf-4cd0-9f65-19e20982277a", - "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": - "Created by fab", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "d277372a-16bf-4bc1-bad3-476f6dbedcb1", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "07be57a6-e839-45b4-a1fd-b65924787b01", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", - "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "4b8bb820-0fd7-45d0-a257-a7af22693740", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -2860,15 +1099,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '661' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:40 GMT + - Tue, 31 Mar 2026 09:19:51 GMT Pragma: - no-cache RequestId: - - 3767ac43-504b-4472-abb9-9b86737703cb + - d11e627a-51df-47e1-b717-1e7a3bb3a444 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2894,13 +1133,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2909,15 +1150,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:40 GMT + - Tue, 31 Mar 2026 09:19:52 GMT Pragma: - no-cache RequestId: - - baabda09-8bdd-42f5-b7dd-c7312d7bebe3 + - 37cbffcb-df39-45e3-ba59-499c4d313f74 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2943,13 +1184,37 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f", + "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": + "Created by fab", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b2cf3c58-8c07-4c35-9484-de2aa08cb6c8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "38b5977f-2587-4875-9030-1c72d60af6ee", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", + "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "3310bbdb-7b95-4aa2-b66e-df64af120722", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2958,15 +1223,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:41 GMT + - Tue, 31 Mar 2026 09:19:53 GMT Pragma: - no-cache RequestId: - - 6d1008cd-98e2-40d2-91b7-71058a602f9e + - 307734c9-1965-4652-be78-73efb824a4cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2992,13 +1257,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -3007,15 +1271,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:42 GMT + - Tue, 31 Mar 2026 09:19:53 GMT Pragma: - no-cache RequestId: - - af038be8-207b-4dc7-afa9-744cd8da3da0 + - 4ff8cad7-7651-41a7-9db5-c65684e0c242 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3041,13 +1305,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -3058,15 +1322,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:42 GMT + - Tue, 31 Mar 2026 09:19:55 GMT Pragma: - no-cache RequestId: - - 69bcd099-c01f-4b32-9bfa-ef1a172d2de3 + - 1ede3dd2-841a-4459-a14d-813bdf79da84 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3092,42 +1356,37 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "fb01dac4-accf-4cd0-9f65-19e20982277a", + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f", "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": - "Created by fab", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "d277372a-16bf-4bc1-bad3-476f6dbedcb1", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "07be57a6-e839-45b4-a1fd-b65924787b01", "type": "DigitalTwinBuilder", + "Created by fab", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b2cf3c58-8c07-4c35-9484-de2aa08cb6c8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "38b5977f-2587-4875-9030-1c72d60af6ee", "type": "DigitalTwinBuilder", "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "4b8bb820-0fd7-45d0-a257-a7af22693740", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "3310bbdb-7b95-4aa2-b66e-df64af120722", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3136,15 +1395,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '661' + - '563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:43 GMT + - Tue, 31 Mar 2026 09:19:55 GMT Pragma: - no-cache RequestId: - - a7e07be0-8bef-4d86-b2d1-39af52d6bff8 + - 38d1284f-b95f-4a8d-86b9-b97c84d2ac1b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3170,13 +1429,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -3185,15 +1443,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:44 GMT + - Tue, 31 Mar 2026 09:19:56 GMT Pragma: - no-cache RequestId: - - cc542664-7647-4a67-9411-97183487bf34 + - 3ced170f-b530-4b65-b719-7243b8d9e233 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3219,13 +1477,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3234,15 +1494,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:45 GMT + - Tue, 31 Mar 2026 09:19:57 GMT Pragma: - no-cache RequestId: - - eab62dcc-363f-4968-a5a5-b9a9d6bca3d4 + - 182b7d14-357a-4fde-8e4f-1208ad663028 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3268,34 +1528,67 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"requestId": "72c56c0d-a327-4b95-92d9-059265d8197b", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/3/2026 10:05:34 AM (UTC)", "isRetriable": true}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f", + "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": + "Created by fab", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b2cf3c58-8c07-4c35-9484-de2aa08cb6c8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "38b5977f-2587-4875-9030-1c72d60af6ee", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", + "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "3310bbdb-7b95-4aa2-b66e-df64af120722", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip Content-Length: - - '189' + - '563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:04:45 GMT + - Tue, 31 Mar 2026 09:19:58 GMT + Pragma: + - no-cache RequestId: - - 72c56c0d-a327-4b95-92d9-059265d8197b - Retry-After: - - '49' + - 427d5c6f-e3fa-49c4-96ef-604d36603f95 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny home-cluster-uri: - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' - x-ms-public-api-error-code: - - RequestBlocked status: - code: 429 - message: '' + code: 200 + message: OK - request: body: null headers: @@ -3308,13 +1601,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -3323,15 +1615,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:39 GMT + - Tue, 31 Mar 2026 09:20:00 GMT Pragma: - no-cache RequestId: - - c319a17d-3ab6-4dad-8e44-7e10894c5885 + - e8664825-7939-410d-98c9-5c2ba4fbcdc1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3357,13 +1649,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -3374,15 +1666,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:39 GMT + - Tue, 31 Mar 2026 09:20:01 GMT Pragma: - no-cache RequestId: - - 6438ab0a-60c5-46b9-b3b5-1533f669cb34 + - bf90e7b0-a195-4dbb-a7f9-84079c4cb24d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3408,42 +1700,37 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "fb01dac4-accf-4cd0-9f65-19e20982277a", + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f", "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": - "Created by fab", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "d277372a-16bf-4bc1-bad3-476f6dbedcb1", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "07be57a6-e839-45b4-a1fd-b65924787b01", "type": "DigitalTwinBuilder", + "Created by fab", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b2cf3c58-8c07-4c35-9484-de2aa08cb6c8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "38b5977f-2587-4875-9030-1c72d60af6ee", "type": "DigitalTwinBuilder", "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "4b8bb820-0fd7-45d0-a257-a7af22693740", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "3310bbdb-7b95-4aa2-b66e-df64af120722", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3452,15 +1739,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '661' + - '563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:40 GMT + - Tue, 31 Mar 2026 09:20:02 GMT Pragma: - no-cache RequestId: - - 95c0d170-37fd-42e6-b50a-caa29ec67d52 + - 3ded15ac-cce8-4308-a689-080962d0873b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3486,13 +1773,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -3501,15 +1787,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:41 GMT + - Tue, 31 Mar 2026 09:20:03 GMT Pragma: - no-cache RequestId: - - 9d632c33-f239-45b7-9a74-aaef475beb8f + - 5c8e0ee6-0ad1-4c19-b792-5c5e42113e9a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3535,13 +1821,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3550,15 +1838,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:42 GMT + - Tue, 31 Mar 2026 09:20:04 GMT Pragma: - no-cache RequestId: - - 7007ffb0-e84c-447e-946f-50e01867c64f + - f0664219-285b-4d4a-b4e0-d6b4f48b7222 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3581,17 +1869,40 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items/07be57a6-e839-45b4-a1fd-b65924787b01 + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f", + "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": + "Created by fab", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b2cf3c58-8c07-4c35-9484-de2aa08cb6c8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "38b5977f-2587-4875-9030-1c72d60af6ee", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", + "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "3310bbdb-7b95-4aa2-b66e-df64af120722", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3600,15 +1911,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '0' + - '563' Content-Type: - - application/octet-stream + - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:43 GMT + - Tue, 31 Mar 2026 09:20:04 GMT Pragma: - no-cache RequestId: - - 19444edf-9648-4e1e-a2ed-6cb95c76f43c + - ef80c150-2b2f-4f20-8c6c-cd4da1d7e03e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3634,15 +1945,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -3651,15 +1959,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:43 GMT + - Tue, 31 Mar 2026 09:20:05 GMT Pragma: - no-cache RequestId: - - c9823164-6838-4eb8-adc3-c4ed224c530c + - 27d5c07c-210e-4217-8dfe-4fb9ca08fdd1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3685,37 +1993,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "fb01dac4-accf-4cd0-9f65-19e20982277a", - "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": - "Created by fab", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "d277372a-16bf-4bc1-bad3-476f6dbedcb1", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3724,15 +2010,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '605' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:44 GMT + - Tue, 31 Mar 2026 09:20:06 GMT Pragma: - no-cache RequestId: - - 6e32629c-6ceb-484f-9b20-0dc45f58b637 + - 731ab525-51f8-4a41-afc3-e9765b0ccda8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3758,13 +2044,37 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f", + "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": + "Created by fab", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b2cf3c58-8c07-4c35-9484-de2aa08cb6c8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "38b5977f-2587-4875-9030-1c72d60af6ee", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", + "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "3310bbdb-7b95-4aa2-b66e-df64af120722", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3773,15 +2083,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '563' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:46 GMT + - Tue, 31 Mar 2026 09:20:08 GMT Pragma: - no-cache RequestId: - - bb57444f-e3c6-4296-bb63-1d207af03f8b + - fac29ca0-96ed-48c6-8bf0-fd3c8518a369 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3804,16 +2114,17 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items/38b5977f-2587-4875-9030-1c72d60af6ee response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '' headers: Access-Control-Expose-Headers: - RequestId @@ -3822,15 +2133,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '0' Content-Type: - - application/json; charset=utf-8 + - application/octet-stream Date: - - Tue, 03 Feb 2026 10:05:46 GMT + - Tue, 31 Mar 2026 09:20:08 GMT Pragma: - no-cache RequestId: - - a6afefb6-2765-42dc-b4ad-42e308d0b134 + - 8b6efeec-6f0b-437a-b955-f776a5f10eee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3853,17 +2164,18 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items/fb01dac4-accf-4cd0-9f65-19e20982277a + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3872,15 +2184,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '0' + - '2053' Content-Type: - - application/octet-stream + - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:47 GMT + - Tue, 31 Mar 2026 09:20:09 GMT Pragma: - no-cache RequestId: - - f7d02f2a-0baf-4006-9430-f1411d1d5204 + - 9e611c27-9311-4b6a-af42-b0e65b4c3367 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3906,15 +2218,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f", + "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": + "Created by fab", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b2cf3c58-8c07-4c35-9484-de2aa08cb6c8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000002OnDemand", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3923,15 +2252,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '504' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:48 GMT + - Tue, 31 Mar 2026 09:20:10 GMT Pragma: - no-cache RequestId: - - 46b6a7e7-e9fb-4126-8fec-f7314e41728b + - 356745d9-d11f-45c2-a5df-b999710dcb85 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3954,36 +2283,17 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items/a6dc3ba8-ed1b-48aa-b439-d4c0a9492e6f response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "35153d16-63da-483f-a912-81ef467000f2", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "6d46d703-f27e-4ce1-a66e-e21f543af494", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "af233451-72a2-4b11-8941-12dc062f81ae", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", - "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '' headers: Access-Control-Expose-Headers: - RequestId @@ -3992,15 +2302,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '544' + - '0' Content-Type: - - application/json; charset=utf-8 + - application/octet-stream Date: - - Tue, 03 Feb 2026 10:05:49 GMT + - Tue, 31 Mar 2026 09:20:11 GMT Pragma: - no-cache RequestId: - - 1e29cd22-35cb-4c8c-a7cb-1840a725297b + - 63850793-83fe-48ec-9ea5-bdc023acb913 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4026,13 +2336,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4041,15 +2353,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:49 GMT + - Tue, 31 Mar 2026 09:20:11 GMT Pragma: - no-cache RequestId: - - 19ffb437-8bd8-4289-99e8-76d3427137a8 + - 5b99faf6-1576-4749-bcb5-15d5a4d07a3a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4075,13 +2387,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "01580b14-05b6-4920-bf11-1624952bab81", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "30d94173-ee04-481d-a339-2aeedba01d53", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", + "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", + "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4090,15 +2417,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '444' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:05:50 GMT + - Tue, 31 Mar 2026 09:20:12 GMT Pragma: - no-cache RequestId: - - ae4500e1-4df4-4553-beb2-952be3ae0988 + - 2e01a8c0-d5ff-419b-8b13-9ae72aec4b34 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4126,9 +2453,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items/35153d16-63da-483f-a912-81ef467000f2 + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items/01580b14-05b6-4920-bf11-1624952bab81 response: body: string: '' @@ -4144,11 +2471,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 03 Feb 2026 10:05:51 GMT + - Tue, 31 Mar 2026 09:20:13 GMT Pragma: - no-cache RequestId: - - e3110377-9843-4052-a1f4-380b785687d2 + - 19dfdcbe-af60-4c2b-a9ed-56d0e5c3887f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-DigitalTwinBuilder].yaml index 9122e7ff5..76ba129e1 100644 --- a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:21:49 GMT + - Tue, 31 Mar 2026 09:20:53 GMT Pragma: - no-cache RequestId: - - f312b1aa-4e14-42e7-8f39-69d7b033c5f8 + - f6aee00e-3795-42f2-ab4b-564521433cc0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,32 +62,27 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -96,15 +91,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '500' + - '403' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:21:50 GMT + - Tue, 31 Mar 2026 09:20:55 GMT Pragma: - no-cache RequestId: - - d83fd742-d4ad-467e-a041-21faefeb48f3 + - 31a9cb98-4d24-41b9-bd83-68c6f441a2fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -130,13 +125,27 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -145,230 +154,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '403' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:21:51 GMT + - Tue, 31 Mar 2026 09:20:55 GMT Pragma: - no-cache RequestId: - - d537eb6d-8ad3-4bcc-822f-50624a844641 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:21:52 GMT - Pragma: - - no-cache - RequestId: - - c4c1e8cb-087e-4cca-ad9b-b8f21da75d36 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '500' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:21:53 GMT - Pragma: - - no-cache - RequestId: - - 21420e75-8236-4ef8-9700-3cfc9c2523e7 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:21:53 GMT - Pragma: - - no-cache - RequestId: - - 5fefd281-321e-480a-954e-135d0389443f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:21:54 GMT - Pragma: - - no-cache - RequestId: - - dc313420-6972-487c-bb4d-9b1aab5c2c1e + - 63df335c-6936-4ca1-acb2-576a2a4bf0c1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -397,9 +191,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/digitalTwinBuilders response: body: string: 'null' @@ -415,15 +209,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:21:58 GMT + - Tue, 31 Mar 2026 09:20:57 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0a2250f0-cbf7-4b79-93b8-8c29fc073e4b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d3fbedcd-8588-4692-a3de-735900cb5968 Pragma: - no-cache RequestId: - - 7927f887-0ca2-49e5-84ec-3decfd4861cc + - 3f5b6e4a-a083-4bb9-808e-6383f635b2ef Retry-After: - '20' Strict-Transport-Security: @@ -437,7 +231,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 0a2250f0-cbf7-4b79-93b8-8c29fc073e4b + - d3fbedcd-8588-4692-a3de-735900cb5968 status: code: 202 message: Accepted @@ -453,13 +247,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0a2250f0-cbf7-4b79-93b8-8c29fc073e4b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d3fbedcd-8588-4692-a3de-735900cb5968 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-03T10:21:55.6243339", - "lastUpdatedTimeUtc": "2026-02-03T10:22:05.5340673", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:20:57.0491545", + "lastUpdatedTimeUtc": "2026-03-31T09:21:04.1865909", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -469,17 +263,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:19 GMT + - Tue, 31 Mar 2026 09:21:20 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0a2250f0-cbf7-4b79-93b8-8c29fc073e4b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d3fbedcd-8588-4692-a3de-735900cb5968/result Pragma: - no-cache RequestId: - - bf2a5bc0-1937-4dbd-ada9-5c1f6c985a0c + - 28368806-8744-498b-9acb-f6dc3bdf9505 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -487,7 +281,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 0a2250f0-cbf7-4b79-93b8-8c29fc073e4b + - d3fbedcd-8588-4692-a3de-735900cb5968 status: code: 200 message: OK @@ -503,14 +297,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0a2250f0-cbf7-4b79-93b8-8c29fc073e4b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d3fbedcd-8588-4692-a3de-735900cb5968/result response: body: - string: '{"id": "506d54bb-8328-4d40-affd-d9a4466bbb0d", "type": "DigitalTwinBuilder", + string: '{"id": "04d09bd8-e15e-443b-bb6f-8c7562a580ef", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}' + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}' headers: Access-Control-Expose-Headers: - RequestId @@ -521,11 +315,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 03 Feb 2026 10:22:21 GMT + - Tue, 31 Mar 2026 09:21:21 GMT Pragma: - no-cache RequestId: - - 2226880b-f2e6-44d0-9203-58216fb97fad + - 3d4f3663-f65d-46ff-8547-10419badf02a Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -549,13 +343,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -566,15 +360,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:22 GMT + - Tue, 31 Mar 2026 09:21:21 GMT Pragma: - no-cache RequestId: - - c6884216-d91b-4201-adad-c419f0542827 + - 8a628413-db57-4337-b3be-4f65d9a734bc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -600,41 +394,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "021a38a9-3e04-40a8-acdf-71e1adbaa99d", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "506d54bb-8328-4d40-affd-d9a4466bbb0d", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b9715c66-4249-4d50-8729-995d10cf799b", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "04d09bd8-e15e-443b-bb6f-8c7562a580ef", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a296eb4e-0107-4dd2-9a48-34606255cbfe", + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a2d25b5b-4f99-425e-8f4c-ff11742c26f2", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a0a93cda-52c7-4379-aa3a-438f65260a3a", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "901bc6b8-a52d-4ac2-89b4-c557d607dd4a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -643,15 +432,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '666' + - '569' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:22 GMT + - Tue, 31 Mar 2026 09:21:23 GMT Pragma: - no-cache RequestId: - - c2516871-6de2-4807-8ff2-95014cdbba58 + - ccd5ee78-2442-49a7-a1d2-c1dba94ce3fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -677,13 +466,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -692,15 +480,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:23 GMT + - Tue, 31 Mar 2026 09:21:23 GMT Pragma: - no-cache RequestId: - - a87e718a-762b-437b-953c-12ef21b9ead2 + - a790cc96-8bed-4e84-9eb8-86db8ea222ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -726,13 +514,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -741,15 +531,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:24 GMT + - Tue, 31 Mar 2026 09:21:23 GMT Pragma: - no-cache RequestId: - - d3e9a23d-f38c-4ecc-b2c9-ab8777a0fd9e + - 5acb0686-fd02-4db6-a033-ca223f9b936e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -775,13 +565,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b9715c66-4249-4d50-8729-995d10cf799b", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "04d09bd8-e15e-443b-bb6f-8c7562a580ef", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a2d25b5b-4f99-425e-8f4c-ff11742c26f2", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "901bc6b8-a52d-4ac2-89b4-c557d607dd4a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -790,15 +603,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '569' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:24 GMT + - Tue, 31 Mar 2026 09:21:24 GMT Pragma: - no-cache RequestId: - - 198fc3cf-674a-42e3-89b4-93185f3df4db + - 8b8fc036-59e2-4e26-b7fe-8a9c88a23be1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -824,15 +637,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -841,15 +651,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:26 GMT + - Tue, 31 Mar 2026 09:21:25 GMT Pragma: - no-cache RequestId: - - c441ed7b-91f6-466e-a9d3-562abb889cc0 + - ce6c2674-b154-4798-8322-0b79cb9f42a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -875,41 +685,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "021a38a9-3e04-40a8-acdf-71e1adbaa99d", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "506d54bb-8328-4d40-affd-d9a4466bbb0d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a296eb4e-0107-4dd2-9a48-34606255cbfe", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a0a93cda-52c7-4379-aa3a-438f65260a3a", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -918,15 +702,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '666' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:27 GMT + - Tue, 31 Mar 2026 09:21:25 GMT Pragma: - no-cache RequestId: - - bb576308-f2f7-4a59-b933-5c2c4c8e9a08 + - 90eddf28-5a51-4e71-9b16-4b02813b5e2f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -952,13 +736,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b9715c66-4249-4d50-8729-995d10cf799b", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "04d09bd8-e15e-443b-bb6f-8c7562a580ef", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a2d25b5b-4f99-425e-8f4c-ff11742c26f2", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "901bc6b8-a52d-4ac2-89b4-c557d607dd4a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -967,15 +774,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '569' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:27 GMT + - Tue, 31 Mar 2026 09:21:26 GMT Pragma: - no-cache RequestId: - - a9cb3b19-af35-45cf-a4dd-c8db68c76f14 + - c2a5c84e-4774-4394-8330-41aee72cf4a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1001,13 +808,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -1016,15 +822,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:28 GMT + - Tue, 31 Mar 2026 09:21:26 GMT Pragma: - no-cache RequestId: - - 30ea3ab4-60fd-44a7-8535-055ccc0c086b + - 82b01dfc-a3af-4486-af5b-0149c9bec3bd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1050,53 +856,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"requestId": "d2aa172b-5950-41e4-a853-21621620551a", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/3/2026 10:22:48 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '189' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:22:29 GMT - RequestId: - - d2aa172b-5950-41e4-a853-21621620551a - Retry-After: - - '19' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1105,15 +873,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:50 GMT + - Tue, 31 Mar 2026 09:21:26 GMT Pragma: - no-cache RequestId: - - 1a95b24e-c6c5-450f-9b30-397f0f7b9043 + - fd50db45-3b9a-464f-9afe-a0a5042858b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1139,15 +907,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b9715c66-4249-4d50-8729-995d10cf799b", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "04d09bd8-e15e-443b-bb6f-8c7562a580ef", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a2d25b5b-4f99-425e-8f4c-ff11742c26f2", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "901bc6b8-a52d-4ac2-89b4-c557d607dd4a", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1156,15 +945,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '569' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:51 GMT + - Tue, 31 Mar 2026 09:21:27 GMT Pragma: - no-cache RequestId: - - 425a7449-97fc-4477-bf59-9d56cc5e130f + - 1e31680c-fdda-4e59-929b-fb5253abfe0b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1190,41 +979,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "021a38a9-3e04-40a8-acdf-71e1adbaa99d", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "506d54bb-8328-4d40-affd-d9a4466bbb0d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a296eb4e-0107-4dd2-9a48-34606255cbfe", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a0a93cda-52c7-4379-aa3a-438f65260a3a", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -1233,15 +993,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '666' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:52 GMT + - Tue, 31 Mar 2026 09:21:27 GMT Pragma: - no-cache RequestId: - - f1bce227-3121-458b-a6b3-7c7c92964d11 + - 2e727bd4-45b5-47a1-b0b6-d27e82949f13 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1267,13 +1027,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1282,15 +1044,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:22:52 GMT + - Tue, 31 Mar 2026 09:21:28 GMT Pragma: - no-cache RequestId: - - 5e0abdee-0f1e-4e81-8613-33641acab3c9 + - d6dfb5f5-cada-41ff-920e-b1bc62745eb3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1316,563 +1078,36 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:22:53 GMT - Pragma: - - no-cache - RequestId: - - 7b598afe-dad2-480a-80d0-12f49de3dc99 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:22:54 GMT - Pragma: - - no-cache - RequestId: - - 9d07e7fe-2cf9-4c47-9406-648ab5ffc34f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2457' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:22:55 GMT - Pragma: - - no-cache - RequestId: - - a2115a73-9f40-46e2-8209-01f1d1eecba3 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "021a38a9-3e04-40a8-acdf-71e1adbaa99d", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "506d54bb-8328-4d40-affd-d9a4466bbb0d", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "b9715c66-4249-4d50-8729-995d10cf799b", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "04d09bd8-e15e-443b-bb6f-8c7562a580ef", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a296eb4e-0107-4dd2-9a48-34606255cbfe", + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "a2d25b5b-4f99-425e-8f4c-ff11742c26f2", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a0a93cda-52c7-4379-aa3a-438f65260a3a", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "901bc6b8-a52d-4ac2-89b4-c557d607dd4a", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '666' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:22:56 GMT - Pragma: - - no-cache - RequestId: - - c19310a2-0cb0-4fab-b23c-d13f5ab7bf2b - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:22:57 GMT - Pragma: - - no-cache - RequestId: - - ad568806-4353-4d3c-9277-ef8ee6cd5f51 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:22:57 GMT - Pragma: - - no-cache - RequestId: - - ac1fd16f-44b0-4bce-9215-b182dafec900 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:22:58 GMT - Pragma: - - no-cache - RequestId: - - 25a77637-7fdc-4805-b53f-42c37a481778 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2457' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:22:58 GMT - Pragma: - - no-cache - RequestId: - - fdbd38e4-bfcd-45eb-ad50-8a2f38c06115 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "021a38a9-3e04-40a8-acdf-71e1adbaa99d", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "506d54bb-8328-4d40-affd-d9a4466bbb0d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a296eb4e-0107-4dd2-9a48-34606255cbfe", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "a0a93cda-52c7-4379-aa3a-438f65260a3a", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '666' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:22:59 GMT - Pragma: - - no-cache - RequestId: - - 98f3b5e9-f929-4d8e-a20b-21db9de71e97 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:22:59 GMT - Pragma: - - no-cache - RequestId: - - 90216821-525d-4e72-a05d-b1f17328ad4f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1881,15 +1116,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '569' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:23:01 GMT + - Tue, 31 Mar 2026 09:21:28 GMT Pragma: - no-cache RequestId: - - 6cf35a5d-3e7f-4c13-8388-3da1002a0654 + - 89d671cb-94d0-49e2-838b-0d0fc6c3f4f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1917,9 +1152,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items/506d54bb-8328-4d40-affd-d9a4466bbb0d + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items/04d09bd8-e15e-443b-bb6f-8c7562a580ef response: body: string: '' @@ -1935,11 +1170,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 03 Feb 2026 10:23:00 GMT + - Tue, 31 Mar 2026 09:21:30 GMT Pragma: - no-cache RequestId: - - d0af9439-5a65-445f-950b-148ab4e7c4a8 + - 39b242d1-889b-4dd9-a1d7-d81f3c5345db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-DigitalTwinBuilder].yaml index e96d5e2db..e8093244f 100644 --- a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:13:24 GMT + - Tue, 31 Mar 2026 09:20:14 GMT Pragma: - no-cache RequestId: - - 58543e8e-a260-4390-9414-c220dd6b8f95 + - 255fe822-655e-4674-af9a-2a6d1ac37fc7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,28 +62,23 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -92,15 +87,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '441' + - '340' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:13:25 GMT + - Tue, 31 Mar 2026 09:20:15 GMT Pragma: - no-cache RequestId: - - 3f5a6a67-11fe-4917-b10b-aa75be59b4f1 + - d8c532d4-5978-4c41-a389-3119864ce4a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -126,13 +121,23 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -141,266 +146,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '340' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:13:25 GMT + - Tue, 31 Mar 2026 09:20:15 GMT Pragma: - no-cache RequestId: - - 4b8053d3-ec26-4ce0-9a6d-8ae4047e189c - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"requestId": "8d8dd86f-0176-4792-9440-1fbe704ca3cb", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/3/2026 10:14:12 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '189' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:13:25 GMT - RequestId: - - 8d8dd86f-0176-4792-9440-1fbe704ca3cb - Retry-After: - - '46' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:14:15 GMT - Pragma: - - no-cache - RequestId: - - 2165189f-047d-4c8e-9594-551c327e54d3 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '441' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:14:17 GMT - Pragma: - - no-cache - RequestId: - - 3c26118a-024a-4aaf-9418-2fb22a2c45d9 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:14:17 GMT - Pragma: - - no-cache - RequestId: - - 504754da-a7d8-415e-85b2-c312db1c9540 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:14:18 GMT - Pragma: - - no-cache - RequestId: - - 463a41de-798a-4395-b84c-46fe0971c08c + - 81d3ffba-3f16-4725-b9db-6bacbe7ed342 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -429,9 +183,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/digitalTwinBuilders response: body: string: 'null' @@ -447,15 +201,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:21 GMT + - Tue, 31 Mar 2026 09:20:17 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/650aed76-01b2-4253-bc2e-4b3eb1ded4ff + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/20a91c0c-62f2-4f87-a96b-adafcfbf5156 Pragma: - no-cache RequestId: - - 11d23d6d-a02b-40a8-a5b5-2b83a21e22d8 + - 01a27483-8790-4afe-91e4-c730a2f1855b Retry-After: - '20' Strict-Transport-Security: @@ -469,7 +223,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 650aed76-01b2-4253-bc2e-4b3eb1ded4ff + - 20a91c0c-62f2-4f87-a96b-adafcfbf5156 status: code: 202 message: Accepted @@ -485,13 +239,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/650aed76-01b2-4253-bc2e-4b3eb1ded4ff + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/20a91c0c-62f2-4f87-a96b-adafcfbf5156 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-03T10:14:19.8373755", - "lastUpdatedTimeUtc": "2026-02-03T10:14:29.0428963", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:20:17.0516056", + "lastUpdatedTimeUtc": "2026-03-31T09:20:24.3130122", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -501,17 +255,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:43 GMT + - Tue, 31 Mar 2026 09:20:39 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/650aed76-01b2-4253-bc2e-4b3eb1ded4ff/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/20a91c0c-62f2-4f87-a96b-adafcfbf5156/result Pragma: - no-cache RequestId: - - b7d03f26-3d83-4984-8954-7d5a6d54e2db + - 5c15c9aa-b690-4b1a-8c0c-7f49fb4c9b2b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,7 +273,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 650aed76-01b2-4253-bc2e-4b3eb1ded4ff + - 20a91c0c-62f2-4f87-a96b-adafcfbf5156 status: code: 200 message: OK @@ -535,14 +289,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/650aed76-01b2-4253-bc2e-4b3eb1ded4ff/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/20a91c0c-62f2-4f87-a96b-adafcfbf5156/result response: body: - string: '{"id": "88f97527-7698-48c0-82ec-130f4826ab77", "type": "DigitalTwinBuilder", + string: '{"id": "9826ffa7-962e-47d8-9d6b-271fe0b97eef", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}' + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}' headers: Access-Control-Expose-Headers: - RequestId @@ -553,11 +307,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 03 Feb 2026 10:14:44 GMT + - Tue, 31 Mar 2026 09:20:39 GMT Pragma: - no-cache RequestId: - - 6fa71e30-001d-472b-a0f9-813eef802bd4 + - 29124f4f-2a06-4fd1-acda-6e497c7cc902 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -581,13 +335,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -598,15 +352,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:44 GMT + - Tue, 31 Mar 2026 09:20:40 GMT Pragma: - no-cache RequestId: - - 00d778e5-60cf-480f-b67e-a91758d3df6a + - f2c9a570-d1c8-456f-8680-bbfc5a835c93 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -632,37 +386,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "88f97527-7698-48c0-82ec-130f4826ab77", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "9826ffa7-962e-47d8-9d6b-271fe0b97eef", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "5240e7e0-f025-4824-a47a-f28ae7b0f85b", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "04b4ad7a-3999-4416-8b9f-4435f9bb272f", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -671,15 +420,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '602' + - '503' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:46 GMT + - Tue, 31 Mar 2026 09:20:41 GMT Pragma: - no-cache RequestId: - - ba936636-9f60-4962-b468-81b2398589c0 + - c3dbc7ca-96f5-4ad6-94c4-9f5c92fcb402 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -705,13 +454,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -720,15 +468,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:46 GMT + - Tue, 31 Mar 2026 09:20:41 GMT Pragma: - no-cache RequestId: - - 81b4012a-e456-4214-8f38-29dfdf522023 + - 88bbcedd-0e2b-4b39-99b8-88ed0eb92218 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -754,13 +502,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -769,15 +519,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:47 GMT + - Tue, 31 Mar 2026 09:20:44 GMT Pragma: - no-cache RequestId: - - a227983e-a41a-429a-baf8-dfa77f42d6c5 + - 06cb7fab-5c51-4992-bde0-f6174a8d768b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -803,13 +553,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "9826ffa7-962e-47d8-9d6b-271fe0b97eef", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "04b4ad7a-3999-4416-8b9f-4435f9bb272f", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -818,15 +587,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '503' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:48 GMT + - Tue, 31 Mar 2026 09:20:45 GMT Pragma: - no-cache RequestId: - - 2804328b-ce5a-402b-9369-0aa18c114d3b + - 5a0d7e0d-f2c7-4d6a-96a7-d7fb4219de03 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -852,15 +621,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -869,15 +635,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:49 GMT + - Tue, 31 Mar 2026 09:20:47 GMT Pragma: - no-cache RequestId: - - 87e248bf-bab4-4ef9-a34d-bcab54598bb9 + - 3ffe1082-7bf9-47a7-a19a-69fb6ccf1292 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -903,37 +669,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "88f97527-7698-48c0-82ec-130f4826ab77", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "5240e7e0-f025-4824-a47a-f28ae7b0f85b", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -942,15 +686,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '602' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:50 GMT + - Tue, 31 Mar 2026 09:20:48 GMT Pragma: - no-cache RequestId: - - 926254f7-6365-40bd-8327-bf6a53d05873 + - bd87341f-76d2-4641-9670-ff05bfecb154 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -976,13 +720,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "9826ffa7-962e-47d8-9d6b-271fe0b97eef", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "04b4ad7a-3999-4416-8b9f-4435f9bb272f", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -991,15 +754,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '503' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:49 GMT + - Tue, 31 Mar 2026 09:20:47 GMT Pragma: - no-cache RequestId: - - 84d5e472-6a1f-4e17-b37f-74d26c89e458 + - f0267d7e-cb25-4953-8e90-8f4bd8dff62f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1025,13 +788,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -1040,15 +802,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:51 GMT + - Tue, 31 Mar 2026 09:20:48 GMT Pragma: - no-cache RequestId: - - c2db3582-84c4-48d2-8389-f7e3b01aaff0 + - 99799a95-1788-4991-ad55-f6996cd19884 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1074,13 +836,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1089,15 +853,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:51 GMT + - Tue, 31 Mar 2026 09:20:50 GMT Pragma: - no-cache RequestId: - - 2bd24a8a-4897-494b-acd7-838a24d11e99 + - 5992b8fc-5f69-4419-bc0d-ac0927474c5d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1123,15 +887,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "9826ffa7-962e-47d8-9d6b-271fe0b97eef", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "04b4ad7a-3999-4416-8b9f-4435f9bb272f", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1140,15 +921,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2457' + - '503' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:52 GMT + - Tue, 31 Mar 2026 09:20:50 GMT Pragma: - no-cache RequestId: - - 24862d69-d629-4826-942f-9d1363e752e5 + - 8f8211b0-b522-4d1a-8dfa-8150f1e6db98 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1174,37 +955,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/folders?recursive=True response: body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "88f97527-7698-48c0-82ec-130f4826ab77", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "5240e7e0-f025-4824-a47a-f28ae7b0f85b", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -1213,15 +969,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '602' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:53 GMT + - Tue, 31 Mar 2026 09:20:51 GMT Pragma: - no-cache RequestId: - - 15f4ba63-ab6c-418d-ae8e-2f71353f57aa + - acd81a9f-d646-451c-9555-dee9545eb583 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1247,13 +1003,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1262,15 +1020,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '2053' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:14:53 GMT + - Tue, 31 Mar 2026 09:20:51 GMT Pragma: - no-cache RequestId: - - 5b8a19f9-8f80-406d-a69b-12442e7f1d35 + - d9c66633-eeb8-441b-92b2-b1496175e7de Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1296,595 +1054,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items response: body: - string: '{"requestId": "e639358d-0293-43a4-9d7d-1aa2afe4dba7", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/3/2026 10:15:17 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '189' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:14:54 GMT - RequestId: - - e639358d-0293-43a4-9d7d-1aa2afe4dba7 - Retry-After: - - '22' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:15:19 GMT - Pragma: - - no-cache - RequestId: - - 5acbc914-da45-4ee1-84d5-afc7141d810d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:15:20 GMT - Pragma: - - no-cache - RequestId: - - fa9e699a-095c-47b4-afef-17537edbdd48 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2457' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:15:21 GMT - Pragma: - - no-cache - RequestId: - - 6b66d043-ae85-4ac0-972d-5879639350b0 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "88f97527-7698-48c0-82ec-130f4826ab77", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "5240e7e0-f025-4824-a47a-f28ae7b0f85b", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '602' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:15:21 GMT - Pragma: - - no-cache - RequestId: - - bcdd4d11-b145-4cee-a163-8b63a24fd04f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:15:21 GMT - Pragma: - - no-cache - RequestId: - - fef83cb4-b9c0-4879-8bde-de116001dfdc - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:15:22 GMT - Pragma: - - no-cache - RequestId: - - 5c61187a-8b42-4809-95c9-89885b4aee1f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:15:23 GMT - Pragma: - - no-cache - RequestId: - - fe143b82-d8f8-4434-bb5d-f0fec8555959 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2457' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:15:24 GMT - Pragma: - - no-cache - RequestId: - - 76c3f511-e90c-4574-bff2-2bd3fe14fb5e - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items - response: - body: - string: '{"value": [{"id": "07ddbef4-51a4-4f68-b867-dee484fee4db", "type": "SQLEndpoint", - "displayName": "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", - "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, {"id": "174ed7b9-b0bf-4d7b-b2c0-d723c5ad0a90", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "52ad477f-c60f-47c5-ab07-daa8e1afdbcd", - "type": "SQLEndpoint", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "21ba9137-da9e-4275-add7-463bb8d5a0c4", - "type": "SQLEndpoint", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "b127c547-c419-4c69-8ab1-6863c64c6f3f", - "type": "SQLEndpoint", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "e7d29f13-3952-426c-b1d8-a06ca0a8728d", - "type": "Lakehouse", "displayName": "fabcli000002dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448", "folderId": "7f1398f8-ce3e-458d-8d7d-64cc12323360"}, - {"id": "b20ff5d8-0b8e-42be-94f0-678ab162c845", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "af233451-72a2-4b11-8941-12dc062f81ae", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "a259893c-e442-48c7-b2fb-489bf8248d3b", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, - {"id": "88f97527-7698-48c0-82ec-130f4826ab77", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": + "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, + {"id": "9826ffa7-962e-47d8-9d6b-271fe0b97eef", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "331f91cd-963f-49c9-aeb6-67f8d7ab4df1", + "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}, {"id": "5240e7e0-f025-4824-a47a-f28ae7b0f85b", + "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, {"id": "04b4ad7a-3999-4416-8b9f-4435f9bb272f", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '602' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:15:24 GMT - Pragma: - - no-cache - RequestId: - - d024a8d0-91fb-4a76-a63d-c49f1cfe9c4a - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 03 Feb 2026 10:15:25 GMT - Pragma: - - no-cache - RequestId: - - 274abfdb-bf0d-4fa8-9e51-09d5e1c37738 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7f1398f8-ce3e-458d-8d7d-64cc12323360", "displayName": - "fabcli000001", "workspaceId": "d4491e7b-5a69-4ba5-bedf-3d0b9560a448"}]}' + "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1893,15 +1088,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '503' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 10:15:25 GMT + - Tue, 31 Mar 2026 09:20:52 GMT Pragma: - no-cache RequestId: - - 9553aabf-94c8-4e72-afb5-51576d23567f + - 318d965b-1cf9-40ac-a1c3-8b1c48ed22ee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1929,9 +1124,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d4491e7b-5a69-4ba5-bedf-3d0b9560a448/items/88f97527-7698-48c0-82ec-130f4826ab77 + uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items/9826ffa7-962e-47d8-9d6b-271fe0b97eef response: body: string: '' @@ -1947,11 +1142,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 03 Feb 2026 10:15:26 GMT + - Tue, 31 Mar 2026 09:20:53 GMT Pragma: - no-cache RequestId: - - 76a120c5-27bd-450c-a826-0bb00a1a0c48 + - 1a4a10b7-b726-4845-8b54-25fb5bf68706 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_mkdir/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_mkdir/class_setup.yaml index 08fb7976d..d40536665 100644 --- a/tests/test_commands/recordings/test_commands/test_mkdir/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_mkdir/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (ls; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (dir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:27:06 GMT + - Tue, 31 Mar 2026 09:21:33 GMT Pragma: - no-cache RequestId: - - 8eb9df2b-fb9e-4a5f-9c14-117ac35ee9aa + - 9fec4725-c98e-406a-8d8c-e32b2ed630e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (ls; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (dir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:27:07 GMT + - Tue, 31 Mar 2026 09:21:33 GMT Pragma: - no-cache RequestId: - - b9b12356-71e2-4af3-a575-5037942156d3 + - cd7cfc8f-8ac5-48ff-913c-c0a1dcf9927c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (ls; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (dir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '429' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:27:12 GMT + - Tue, 31 Mar 2026 09:21:37 GMT Pragma: - no-cache RequestId: - - 08e7039e-d787-4ed6-b5f7-b52d1d14d940 + - 5aef16dd-89bd-44d0-ba1e-a0aed3b53fba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (ls; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (dir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "c882c8dd-02e8-4990-9af2-b7831c36a5ee", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,13 +181,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:27:19 GMT + - Tue, 31 Mar 2026 09:21:45 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/c882c8dd-02e8-4990-9af2-b7831c36a5ee + - https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735 Pragma: - no-cache RequestId: - - 3339a758-fbd7-49b0-9e80-6aa72a3e0fd2 + - 175739bd-7e8e-43eb-8a8b-42741a1d2cc6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (mkdir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (mkdir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c882c8dd-02e8-4990-9af2-b7831c36a5ee", + "My workspace", "description": "", "type": "Personal"}, {"id": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1593' + - '2051' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:28:20 GMT + - Tue, 31 Mar 2026 09:23:15 GMT Pragma: - no-cache RequestId: - - 5c53d683-e700-4458-9bcc-5f6809738a5a + - bf3487db-0055-4c0f-99db-0565e9e49dfc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,12 +264,19 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (mkdir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (mkdir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c882c8dd-02e8-4990-9af2-b7831c36a5ee/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "d6980240-9285-4e2b-9b0d-3a848d231301", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "ac9bd5ee-7588-4766-a094-ac73db118e5c", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "44282885-2475-41fa-8858-864258dede0a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "22648db5-bfdf-4835-bd5a-7631bcf88f99", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +285,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '282' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 09:28:20 GMT + - Tue, 31 Mar 2026 09:23:15 GMT Pragma: - no-cache RequestId: - - 57bb68a8-9935-44b2-9187-478e24111b5e + - 75f9826a-5f02-40eb-8fc0-d0185844c5d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +321,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (mkdir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (mkdir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/c882c8dd-02e8-4990-9af2-b7831c36a5ee + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735 response: body: string: '' @@ -332,11 +339,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 17 Mar 2026 09:28:21 GMT + - Tue, 31 Mar 2026 09:23:17 GMT Pragma: - no-cache RequestId: - - 28543d90-ee7a-4afb-92c1-41aa4d1a2eeb + - 47694707-3130-4de9-9748-447efe67fdae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_name_already_exists_failure[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_name_already_exists_failure[DigitalTwinBuilder].yaml index 0e1a815a6..0fdbeb01f 100644 --- a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_name_already_exists_failure[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_name_already_exists_failure[DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6", + "My workspace", "description": "", "type": "Personal"}, {"id": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2458' + - '2051' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:10 GMT + - Tue, 31 Mar 2026 09:21:45 GMT Pragma: - no-cache RequestId: - - 686bcc7f-a073-4471-9d13-1751f6d7e549 + - 619b0e60-dc07-4941-b9d7-6dadc2ce4b31 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,15 +62,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items response: body: - string: '{"value": [{"id": "0dc4b3df-f86f-4b10-b667-d35cb521404d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, - {"id": "b73e7096-ca36-4a3c-9329-78910f950e61", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -79,15 +76,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '218' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:11 GMT + - Tue, 31 Mar 2026 09:21:45 GMT Pragma: - no-cache RequestId: - - 4d57f735-8c16-4083-8706-f8b0a56c8736 + - 4afe13c4-3cb3-49d8-a59e-23cba5d4f9d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -113,15 +110,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items response: body: - string: '{"value": [{"id": "0dc4b3df-f86f-4b10-b667-d35cb521404d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, - {"id": "b73e7096-ca36-4a3c-9329-78910f950e61", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -130,15 +124,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '218' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:11 GMT + - Tue, 31 Mar 2026 09:21:46 GMT Pragma: - no-cache RequestId: - - 9176ef63-85d7-48f9-b2a7-8248fcbe0180 + - a7f2a39e-a111-4087-a2a8-dbac2b50f105 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -167,9 +161,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/digitalTwinBuilders response: body: string: 'null' @@ -185,15 +179,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:14 GMT + - Tue, 31 Mar 2026 09:21:49 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/690d5dca-eca0-4cfc-a78a-29f3c0d1ecff + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b317d991-1d76-4cc3-afa9-b1f91ec5adce Pragma: - no-cache RequestId: - - bf3f2cd7-9773-4f29-a74a-9723831b968d + - 0600ea56-d409-4bea-b4f3-009f94267fbb Retry-After: - '20' Strict-Transport-Security: @@ -207,7 +201,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 690d5dca-eca0-4cfc-a78a-29f3c0d1ecff + - b317d991-1d76-4cc3-afa9-b1f91ec5adce status: code: 202 message: Accepted @@ -223,13 +217,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/690d5dca-eca0-4cfc-a78a-29f3c0d1ecff + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b317d991-1d76-4cc3-afa9-b1f91ec5adce response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-03T12:46:13.5009411", - "lastUpdatedTimeUtc": "2026-02-03T12:46:20.7054558", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:21:48.2330503", + "lastUpdatedTimeUtc": "2026-03-31T09:21:56.292013", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -243,13 +237,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:35 GMT + - Tue, 31 Mar 2026 09:22:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/690d5dca-eca0-4cfc-a78a-29f3c0d1ecff/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b317d991-1d76-4cc3-afa9-b1f91ec5adce/result Pragma: - no-cache RequestId: - - 9f90c9a6-abd3-4dfb-9ef7-c4d40f927b61 + - 1153b4fe-90a2-4677-bf6c-88609b4aef3d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -257,7 +251,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 690d5dca-eca0-4cfc-a78a-29f3c0d1ecff + - b317d991-1d76-4cc3-afa9-b1f91ec5adce status: code: 200 message: OK @@ -273,14 +267,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/690d5dca-eca0-4cfc-a78a-29f3c0d1ecff/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b317d991-1d76-4cc3-afa9-b1f91ec5adce/result response: body: - string: '{"id": "43623640-4350-40e2-af15-5b4d58c9cc5f", "type": "DigitalTwinBuilder", + string: '{"id": "c742b351-0393-42f3-bfdc-c10fe8b4ee1a", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}' + "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}' headers: Access-Control-Expose-Headers: - RequestId @@ -291,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 03 Feb 2026 12:46:35 GMT + - Tue, 31 Mar 2026 09:22:11 GMT Pragma: - no-cache RequestId: - - a92603a4-7873-4c83-bb88-56807d7c38e0 + - 232c0021-900d-4f12-aae2-e3ae8f26e81a Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -319,13 +313,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6", + "My workspace", "description": "", "type": "Personal"}, {"id": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -336,15 +330,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2458' + - '2051' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:36 GMT + - Tue, 31 Mar 2026 09:22:12 GMT Pragma: - no-cache RequestId: - - f2f6681b-d549-4c89-8ef3-7c0e3f018ac8 + - 73a82e5f-3fc2-4d32-9e78-a457e3f109f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -370,24 +364,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items response: body: - string: '{"value": [{"id": "0dc4b3df-f86f-4b10-b667-d35cb521404d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, - {"id": "bd355473-8031-4dfd-b491-8b4db8f73416", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, - {"id": "b73e7096-ca36-4a3c-9329-78910f950e61", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, - {"id": "43623640-4350-40e2-af15-5b4d58c9cc5f", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "d6980240-9285-4e2b-9b0d-3a848d231301", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "c742b351-0393-42f3-bfdc-c10fe8b4ee1a", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, {"id": "2d536924-c8ad-4ac3-9152-6ff82b940b49", + "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, {"id": "44282885-2475-41fa-8858-864258dede0a", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, {"id": "586346dc-cf70-4d59-b895-efc78c9a63bf", + "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, {"id": "aee83f66-f667-4f67-81fa-1c93f7395a23", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}]}' + "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -396,15 +386,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '382' + - '316' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:38 GMT + - Tue, 31 Mar 2026 09:22:12 GMT Pragma: - no-cache RequestId: - - 5db8f4c4-ef9e-49f4-9c55-9b0eb07d727e + - 943d8750-5084-4d0f-a429-f36d6f006c5a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -430,13 +420,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6", + "My workspace", "description": "", "type": "Personal"}, {"id": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -447,15 +437,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2458' + - '2051' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:38 GMT + - Tue, 31 Mar 2026 09:22:13 GMT Pragma: - no-cache RequestId: - - f227b654-1a3d-4238-b4b1-a4a4d12b03d0 + - d3fdbec6-d31b-4286-9e12-233f1357ac8e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -481,24 +471,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items response: body: - string: '{"value": [{"id": "0dc4b3df-f86f-4b10-b667-d35cb521404d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, - {"id": "bd355473-8031-4dfd-b491-8b4db8f73416", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, - {"id": "b73e7096-ca36-4a3c-9329-78910f950e61", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, - {"id": "43623640-4350-40e2-af15-5b4d58c9cc5f", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "d6980240-9285-4e2b-9b0d-3a848d231301", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "c742b351-0393-42f3-bfdc-c10fe8b4ee1a", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, {"id": "2d536924-c8ad-4ac3-9152-6ff82b940b49", + "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, {"id": "44282885-2475-41fa-8858-864258dede0a", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, {"id": "586346dc-cf70-4d59-b895-efc78c9a63bf", + "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, {"id": "aee83f66-f667-4f67-81fa-1c93f7395a23", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}]}' + "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -507,15 +493,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '382' + - '316' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:39 GMT + - Tue, 31 Mar 2026 09:22:14 GMT Pragma: - no-cache RequestId: - - 81dc1ee8-b154-4b50-8c6d-b661876f570e + - 52a4e37e-43ae-4021-89e2-124bb152544d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -543,9 +529,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/items/43623640-4350-40e2-af15-5b4d58c9cc5f + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items/c742b351-0393-42f3-bfdc-c10fe8b4ee1a response: body: string: '' @@ -561,11 +547,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 03 Feb 2026 12:46:40 GMT + - Tue, 31 Mar 2026 09:22:15 GMT Pragma: - no-cache RequestId: - - 396e6763-7a85-47eb-b963-f01ca616264b + - 445e3a4e-15ec-4d92-b5d3-e4c8e9a1d222 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[DigitalTwinBuilder].yaml index c6e2d7c6e..e25801c2f 100644 --- a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_item_success[DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6", + "My workspace", "description": "", "type": "Personal"}, {"id": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2458' + - '2051' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:45:36 GMT + - Tue, 31 Mar 2026 09:22:16 GMT Pragma: - no-cache RequestId: - - f10a03d2-2528-45e5-a09c-64882344ad94 + - f3486d95-1b92-4125-9005-78be1f510652 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,12 +62,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "d6980240-9285-4e2b-9b0d-3a848d231301", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "44282885-2475-41fa-8858-864258dede0a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -76,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '217' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:45:37 GMT + - Tue, 31 Mar 2026 09:22:17 GMT Pragma: - no-cache RequestId: - - 35c55fb9-ebd9-4f3d-a288-1ceca18dbfa3 + - f36e41aa-d8b2-469d-a6cc-5914dc685f69 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,12 +113,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "d6980240-9285-4e2b-9b0d-3a848d231301", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "44282885-2475-41fa-8858-864258dede0a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -124,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '217' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:45:39 GMT + - Tue, 31 Mar 2026 09:22:17 GMT Pragma: - no-cache RequestId: - - a909d47f-1912-4119-b053-548f7b532810 + - a414a59b-59aa-4b24-a52c-d4bf51aaa134 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,9 +167,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/digitalTwinBuilders response: body: string: 'null' @@ -179,15 +185,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:45:41 GMT + - Tue, 31 Mar 2026 09:22:20 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9362b7c1-2f42-449d-b9d3-92932c8facef + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55aa31ca-d27b-4eed-aed6-59a4e517b475 Pragma: - no-cache RequestId: - - d2c2ecdf-d798-480e-8905-0eff9d9d1f46 + - 3f78e987-0f2b-41da-86a8-057008838094 Retry-After: - '20' Strict-Transport-Security: @@ -201,7 +207,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 9362b7c1-2f42-449d-b9d3-92932c8facef + - 55aa31ca-d27b-4eed-aed6-59a4e517b475 status: code: 202 message: Accepted @@ -217,13 +223,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9362b7c1-2f42-449d-b9d3-92932c8facef + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55aa31ca-d27b-4eed-aed6-59a4e517b475 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-03T12:45:40.2860099", - "lastUpdatedTimeUtc": "2026-02-03T12:45:48.3651323", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:22:19.5345584", + "lastUpdatedTimeUtc": "2026-03-31T09:22:26.3203623", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -237,13 +243,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:01 GMT + - Tue, 31 Mar 2026 09:22:41 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9362b7c1-2f42-449d-b9d3-92932c8facef/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55aa31ca-d27b-4eed-aed6-59a4e517b475/result Pragma: - no-cache RequestId: - - 6100e333-b1ec-4cb5-ba7b-6f6c1fe4e6ea + - 15066a5b-fb97-4828-aca4-320fc6aba921 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -251,7 +257,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 9362b7c1-2f42-449d-b9d3-92932c8facef + - 55aa31ca-d27b-4eed-aed6-59a4e517b475 status: code: 200 message: OK @@ -267,14 +273,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9362b7c1-2f42-449d-b9d3-92932c8facef/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55aa31ca-d27b-4eed-aed6-59a4e517b475/result response: body: - string: '{"id": "0c939edf-16bf-470d-af2a-957c05713c89", "type": "DigitalTwinBuilder", + string: '{"id": "0518c29c-5fec-4b60-a4cb-142f979f89ae", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}' + "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}' headers: Access-Control-Expose-Headers: - RequestId @@ -285,11 +291,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 03 Feb 2026 12:46:02 GMT + - Tue, 31 Mar 2026 09:22:42 GMT Pragma: - no-cache RequestId: - - 0cbedb70-0f77-4a04-a641-e10bbe53f735 + - 34842689-677e-4961-ad31-5533b23ae45c Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -313,13 +319,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6", + "My workspace", "description": "", "type": "Personal"}, {"id": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -330,15 +336,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2458' + - '2051' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:03 GMT + - Tue, 31 Mar 2026 09:22:43 GMT Pragma: - no-cache RequestId: - - 08c8e236-1f59-452e-97e3-591aea5eed02 + - 06ddb306-5bd1-44ee-8bde-ed6662cce907 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,20 +370,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items response: body: - string: '{"value": [{"id": "0dc4b3df-f86f-4b10-b667-d35cb521404d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, - {"id": "0c939edf-16bf-470d-af2a-957c05713c89", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "d6980240-9285-4e2b-9b0d-3a848d231301", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "ac9bd5ee-7588-4766-a094-ac73db118e5c", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "44282885-2475-41fa-8858-864258dede0a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "0518c29c-5fec-4b60-a4cb-142f979f89ae", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, {"id": "b73e7096-ca36-4a3c-9329-78910f950e61", + "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, {"id": "22648db5-bfdf-4835-bd5a-7631bcf88f99", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, {"id": "ef351095-15d7-4a97-947d-c28ccfb5a04b", + "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, {"id": "0bbe80c9-4c0c-4db2-aeae-8a82ad3f7aee", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}]}' + "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -386,15 +396,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '317' + - '382' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:04 GMT + - Tue, 31 Mar 2026 09:22:46 GMT Pragma: - no-cache RequestId: - - 61d70554-d042-4c0e-bc62-ef1b0d8f7ee8 + - 6b710aaf-30f4-4ea2-9ca4-bd55f60d9c11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -420,14 +430,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/digitalTwinBuilders/0c939edf-16bf-470d-af2a-957c05713c89 + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/digitalTwinBuilders/0518c29c-5fec-4b60-a4cb-142f979f89ae response: body: - string: '{"id": "0c939edf-16bf-470d-af2a-957c05713c89", "type": "DigitalTwinBuilder", + string: '{"id": "0518c29c-5fec-4b60-a4cb-142f979f89ae", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}' + "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -436,17 +446,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '174' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:05 GMT + - Tue, 31 Mar 2026 09:22:47 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c7f70f1f-a1fb-4ff2-91ab-a31b17ff4ba9 + - f4b8efea-ecc4-4288-89dd-e8f3f277d526 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -460,6 +470,158 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items/0518c29c-5fec-4b60-a4cb-142f979f89ae/getDefinition + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:22:48 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/be77c41e-db15-472f-9488-fef6c070fd7c + Pragma: + - no-cache + RequestId: + - 80d44d41-9892-4e0f-924a-b954c7f3882d + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - be77c41e-db15-472f-9488-fef6c070fd7c + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/be77c41e-db15-472f-9488-fef6c070fd7c + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:22:49.1781233", + "lastUpdatedTimeUtc": "2026-03-31T09:22:50.2173267", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '132' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 09:23:09 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/be77c41e-db15-472f-9488-fef6c070fd7c/result + Pragma: + - no-cache + RequestId: + - 90022397-00e2-4356-a66e-68b798951eef + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - be77c41e-db15-472f-9488-fef6c070fd7c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/be77c41e-db15-472f-9488-fef6c070fd7c/result + response: + body: + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiMjI2NDhkYjUtYmZkZi00ODM1LWJkNWEtNzYzMWJjZjg4Zjk5Ig0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 09:23:10 GMT + Pragma: + - no-cache + RequestId: + - c68e566e-9971-476d-8858-91967e3f44aa + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK - request: body: null headers: @@ -472,9 +634,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/items/0c939edf-16bf-470d-af2a-957c05713c89/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items/0518c29c-5fec-4b60-a4cb-142f979f89ae/connections response: body: string: '{"value": []}' @@ -490,11 +652,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:06 GMT + - Tue, 31 Mar 2026 09:23:11 GMT Pragma: - no-cache RequestId: - - 8b58cab8-f197-4832-b2c5-458b6922c63b + - 86d4bd34-0542-4979-8013-7c4906e25bdd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,13 +682,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6", + "My workspace", "description": "", "type": "Personal"}, {"id": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -537,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2458' + - '2051' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:07 GMT + - Tue, 31 Mar 2026 09:23:12 GMT Pragma: - no-cache RequestId: - - d2f1434a-7778-411f-8b17-0378ce6bdb93 + - a7be2704-d0e9-4d35-9191-11282fe22e6e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -571,20 +733,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items response: body: - string: '{"value": [{"id": "0dc4b3df-f86f-4b10-b667-d35cb521404d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, - {"id": "0c939edf-16bf-470d-af2a-957c05713c89", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "d6980240-9285-4e2b-9b0d-3a848d231301", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "ac9bd5ee-7588-4766-a094-ac73db118e5c", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "44282885-2475-41fa-8858-864258dede0a", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, + {"id": "0518c29c-5fec-4b60-a4cb-142f979f89ae", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, {"id": "b73e7096-ca36-4a3c-9329-78910f950e61", + "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, {"id": "22648db5-bfdf-4835-bd5a-7631bcf88f99", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}, {"id": "ef351095-15d7-4a97-947d-c28ccfb5a04b", + "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}, {"id": "0bbe80c9-4c0c-4db2-aeae-8a82ad3f7aee", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6"}]}' + "", "workspaceId": "3a5b896a-c24a-4a6b-ab4e-443e95f1f735"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -593,15 +759,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '317' + - '382' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 12:46:08 GMT + - Tue, 31 Mar 2026 09:23:13 GMT Pragma: - no-cache RequestId: - - 7a311c44-0010-49b8-a898-5552bd3d139c + - 3cf52f73-9b30-4f9c-853a-e2737e047481 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -629,9 +795,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/fcf5d32e-da97-4ce7-bd0b-bfbd2c9a7ba6/items/0c939edf-16bf-470d-af2a-957c05713c89 + uri: https://api.fabric.microsoft.com/v1/workspaces/3a5b896a-c24a-4a6b-ab4e-443e95f1f735/items/0518c29c-5fec-4b60-a4cb-142f979f89ae response: body: string: '' @@ -647,11 +813,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 03 Feb 2026 12:46:09 GMT + - Tue, 31 Mar 2026 09:23:14 GMT Pragma: - no-cache RequestId: - - 3f5cd7be-131c-4fed-9621-7d918adeda3d + - 2c419c64-ae9a-4729-a649-48b91d4d9e45 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_mv/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_mv/class_setup.yaml index 25350993d..2484806a0 100644 --- a/tests/test_commands/recordings/test_commands/test_mv/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_mv/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1596' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:20:42 GMT + - Tue, 31 Mar 2026 13:05:43 GMT Pragma: - no-cache RequestId: - - c08ebbd8-43b1-4762-aa92-6ae0e3c617c5 + - 52756f37-3d8a-4c67-9a28-1e14385ad115 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1596' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:20:42 GMT + - Tue, 31 Mar 2026 13:05:44 GMT Pragma: - no-cache RequestId: - - 683cbf81-ea42-4877-bdb2-51b69ab90f48 + - bd1b137f-f5bc-45f6-aae6-d8766970aaec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '429' + - '427' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:20:48 GMT + - Tue, 31 Mar 2026 13:05:50 GMT Pragma: - no-cache RequestId: - - 7c7c4965-9247-425c-a6bc-e259e5328da4 + - a67517c6-decf-44e3-8662-7b14410ae3d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,13 +181,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:20:56 GMT + - Tue, 31 Mar 2026 13:05:58 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/98a13383-ab9f-4d0d-ade6-cee53b5df502 + - https://api.fabric.microsoft.com/v1/workspaces/f973da1e-1ce0-42d2-b2fa-e34df76a89d9 Pragma: - no-cache RequestId: - - c23bc98f-a276-4d72-b84e-8048939eb1a2 + - 7d158bd7-fc9c-4e72-95e8-85c587fc4980 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1627' + - '2048' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:23:54 GMT + - Tue, 31 Mar 2026 13:07:09 GMT Pragma: - no-cache RequestId: - - 8c4c45cf-1a55-4d5e-8c68-2c58bf14752f + - f359a958-3f7c-49aa-9086-a8322eeb7d5c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,9 +264,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/98a13383-ab9f-4d0d-ade6-cee53b5df502/items + uri: https://api.fabric.microsoft.com/v1/workspaces/f973da1e-1ce0-42d2-b2fa-e34df76a89d9/items response: body: string: '{"value": []}' @@ -282,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:23:54 GMT + - Tue, 31 Mar 2026 13:07:10 GMT Pragma: - no-cache RequestId: - - 7987238e-01d2-4a35-8282-35420be41dae + - e2b08dd3-8191-45e5-84c1-f7955a245eaf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +314,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/98a13383-ab9f-4d0d-ade6-cee53b5df502 + uri: https://api.fabric.microsoft.com/v1/workspaces/f973da1e-1ce0-42d2-b2fa-e34df76a89d9 response: body: string: '' @@ -332,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:23:55 GMT + - Tue, 31 Mar 2026 13:07:10 GMT Pragma: - no-cache RequestId: - - 61935c1f-a1a2-475e-9305-3b292d556944 + - 85d34716-c9b0-4e0d-bc8d-5e00e4fe0bab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_unsupported_failure[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_unsupported_failure[DigitalTwinBuilder].yaml new file mode 100644 index 000000000..c44477408 --- /dev/null +++ b/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_unsupported_failure[DigitalTwinBuilder].yaml @@ -0,0 +1,1454 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:05:59 GMT + Pragma: + - no-cache + RequestId: + - ea0a1939-9d5b-4143-a4df-2c9135b319cc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2048' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:03 GMT + Pragma: + - no-cache + RequestId: + - e3132626-4a6d-47b7-a4be-561c997527d8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/capacities + response: + body: + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '427' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:06 GMT + Pragma: + - no-cache + RequestId: + - 6f315978-4ffd-4a7a-a44e-4ec4a48b90de + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000001", "capacityId": + "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '167' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:13 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db + Pragma: + - no-cache + RequestId: + - 60572045-1253-4f25-902b-479aae5b492f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2085' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:13 GMT + Pragma: + - no-cache + RequestId: + - f755809d-3bfb-4b61-ad13-f76b6c069dec + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2085' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:14 GMT + Pragma: + - no-cache + RequestId: + - 9a055c08-f2e1-4c83-a55a-aa5ee55df3f3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/capacities + response: + body: + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '425' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:17 GMT + Pragma: + - no-cache + RequestId: + - dad0e069-0c7e-48e2-a4b7-1018af98f3f8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000002", "capacityId": + "00000000-0000-0000-0000-000000000004"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '164' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:27 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/a5d9df2d-25ca-4457-8007-5c690d851940 + Pragma: + - no-cache + RequestId: + - dd75e49e-00a1-4d3d-890a-1b62bca1b350 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2119' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:27 GMT + Pragma: + - no-cache + RequestId: + - efea2248-daad-4570-abaa-714e5497227b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:29 GMT + Pragma: + - no-cache + RequestId: + - a84c6a7c-6788-4eaa-9306-e951dea43668 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:29 GMT + Pragma: + - no-cache + RequestId: + - 73e65636-ae81-486d-b141-24e1c3f82a29 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"description": "Created by fab", "displayName": "fabcli000003", "type": + "DigitalTwinBuilder", "folderId": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '116' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/digitalTwinBuilders + response: + body: + string: 'null' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,Retry-After,ETag,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '24' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:33 GMT + ETag: + - '""' + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10 + Pragma: + - no-cache + RequestId: + - af7a2b17-0756-47e7-9da4-278b0811af58 + Retry-After: + - '20' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + x-ms-operation-id: + - f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10 + response: + body: + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T13:06:30.332662", + "lastUpdatedTimeUtc": "2026-03-31T13:06:42.2909341", "percentComplete": 100, + "error": null}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location,x-ms-operation-id + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:54 GMT + Location: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10/result + Pragma: + - no-cache + RequestId: + - 226aab26-0731-402e-8365-c171cfbb1264 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + x-ms-operation-id: + - f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10/result + response: + body: + string: '{"id": "f9668212-e5bf-4457-afd2-838163f374cb", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "3129b19a-b443-49ce-a2ab-7708efd1f3db"}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 31 Mar 2026 13:06:56 GMT + Pragma: + - no-cache + RequestId: + - 2088aebf-e757-48d6-b10e-b1bca7f2bce4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2119' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:58 GMT + Pragma: + - no-cache + RequestId: + - 72ef76e3-1a0a-40fb-a229-a416092b286e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items + response: + body: + string: '{"value": [{"id": "95dadc2a-a889-43f0-b45a-c8433aae290f", "type": "SQLEndpoint", + "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, + {"id": "f9668212-e5bf-4457-afd2-838163f374cb", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, {"id": "79bcbbbb-cf05-460f-913b-e6a2967defbb", + "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", + "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, {"id": "f25c90a3-c19b-45c6-9208-6da1126c0a65", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": + "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '315' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:06:59 GMT + Pragma: + - no-cache + RequestId: + - 15ebfe6c-341b-49bf-bc11-39d91d3fe754 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2119' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:07:00 GMT + Pragma: + - no-cache + RequestId: + - f43bbe83-12ad-4563-bf69-3041932fcace + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a5d9df2d-25ca-4457-8007-5c690d851940/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:07:01 GMT + Pragma: + - no-cache + RequestId: + - 5e5c0175-9797-45f7-b3e8-132520c7f4bc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a5d9df2d-25ca-4457-8007-5c690d851940/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:07:01 GMT + Pragma: + - no-cache + RequestId: + - dfdcff46-b758-436b-9538-7deed72c7651 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2119' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:07:03 GMT + Pragma: + - no-cache + RequestId: + - d728ff77-93ac-427c-b8b7-738d75aced01 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items + response: + body: + string: '{"value": [{"id": "95dadc2a-a889-43f0-b45a-c8433aae290f", "type": "SQLEndpoint", + "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, + {"id": "f9668212-e5bf-4457-afd2-838163f374cb", "type": "DigitalTwinBuilder", + "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": + "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, {"id": "79bcbbbb-cf05-460f-913b-e6a2967defbb", + "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", + "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, {"id": "f25c90a3-c19b-45c6-9208-6da1126c0a65", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": + "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '315' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:07:04 GMT + Pragma: + - no-cache + RequestId: + - 7b10b5f9-2ae7-49ad-b313-35fadf09fb5e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items/f9668212-e5bf-4457-afd2-838163f374cb + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 13:07:05 GMT + Pragma: + - no-cache + RequestId: + - db658a55-85c9-493a-a05c-e7cb5075108f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2119' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:07:05 GMT + Pragma: + - no-cache + RequestId: + - 8b3b422f-8f86-4151-be63-97ea41e4daf1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items + response: + body: + string: '{"value": [{"id": "95dadc2a-a889-43f0-b45a-c8433aae290f", "type": "SQLEndpoint", + "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, + {"id": "79bcbbbb-cf05-460f-913b-e6a2967defbb", "type": "Lakehouse", "displayName": + "fabcli000003dtdm", "description": "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '216' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:07:05 GMT + Pragma: + - no-cache + RequestId: + - de6f69e6-80dd-4487-beaa-b59fae771b00 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 13:07:07 GMT + Pragma: + - no-cache + RequestId: + - 53b22734-cdc9-4e56-8e00-1aafeee696e3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces + response: + body: + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created + by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", + "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '2084' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:07:07 GMT + Pragma: + - no-cache + RequestId: + - b86845ac-f26e-4c57-ac34-63c8c7a11670 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/a5d9df2d-25ca-4457-8007-5c690d851940/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 31 Mar 2026 13:07:08 GMT + Pragma: + - no-cache + RequestId: + - 5bc91b78-9ff5-42bb-96bc-496ddf2c4813 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: DELETE + uri: https://api.fabric.microsoft.com/v1/workspaces/a5d9df2d-25ca-4457-8007-5c690d851940 + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Tue, 31 Mar 2026 13:07:08 GMT + Pragma: + - no-cache + RequestId: + - 04cd28ca-e19b-454c-9f5b-5267e4538cab + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml index 431b78dc3..c4ec80325 100644 --- a/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 14:16:08 GMT + - Tue, 31 Mar 2026 09:27:36 GMT Pragma: - no-cache RequestId: - - ddf7feb7-5a53-46c4-b916-4cad277ffaca + - 47d20dc1-0699-4153-a5a1-ed806141293b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 14:16:09 GMT + - Tue, 31 Mar 2026 09:27:37 GMT Pragma: - no-cache RequestId: - - df2c97f9-ae5b-409e-8d1e-6d5d96ae0b2a + - 5b22d521-52c1-4cc8-bd8f-0bac087ec6d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -129,11 +129,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 14:16:13 GMT + - Tue, 31 Mar 2026 09:27:40 GMT Pragma: - no-cache RequestId: - - 8cc58479-fe9b-478a-8e20-7a7c76919bba + - 156efe2a-558e-40ba-8322-8c9c84f8adf3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "86d7595d-4dd5-4a5a-80bd-988b108bd8e0", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "48be342b-90a5-4d43-bd10-9484b96aab52", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,13 +181,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 14:16:22 GMT + - Tue, 31 Mar 2026 09:27:49 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/86d7595d-4dd5-4a5a-80bd-988b108bd8e0 + - https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52 Pragma: - no-cache RequestId: - - 63258735-1c02-4244-a725-2e48395e746d + - 041e9553-b18d-4a7c-ac72-863700c70a9f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "86d7595d-4dd5-4a5a-80bd-988b108bd8e0", + "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1590' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 14:16:34 GMT + - Tue, 31 Mar 2026 09:29:22 GMT Pragma: - no-cache RequestId: - - 1ca50d62-24f8-4d2f-aca1-f48f8b2a4592 + - 19637de4-8148-4c27-b5d5-c5a6a385ea9a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,12 +264,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/86d7595d-4dd5-4a5a-80bd-988b108bd8e0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "26f080bf-3ec8-4ff6-9ea3-a34a85d16cba", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "2a3be8a2-c218-4f69-908e-bff1075e7782", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +294,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '446' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 14:16:35 GMT + - Tue, 31 Mar 2026 09:29:22 GMT Pragma: - no-cache RequestId: - - 3d994c50-0b5d-4578-b860-f8f427c36bfc + - 7ae50fb7-2bbf-4f98-97c7-da3cc807ae46 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +330,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/86d7595d-4dd5-4a5a-80bd-988b108bd8e0 + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52 response: body: string: '' @@ -332,11 +348,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 17 Mar 2026 14:16:36 GMT + - Tue, 31 Mar 2026 09:29:23 GMT Pragma: - no-cache RequestId: - - 9217913a-fc1d-4539-a06a-c2106ff5c181 + - b3999a24-c64b-4b17-8498-c85478f3b00d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_success[DigitalTwinBuilder].yaml index 86aedf5f2..0e672c4a8 100644 --- a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_success[DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "9e6cfa9e-3138-4cf8-aac7-27b97282beab", + "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2803' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:39:07 GMT + - Tue, 31 Mar 2026 09:27:50 GMT Pragma: - no-cache RequestId: - - c301d356-2a9a-4c66-bbd8-4bf5d7e211fa + - 9d0c2d5b-d760-4897-859b-d5d06c8a9f14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9e6cfa9e-3138-4cf8-aac7-27b97282beab/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: string: '{"value": []}' @@ -80,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:39:07 GMT + - Tue, 31 Mar 2026 09:27:50 GMT Pragma: - no-cache RequestId: - - 244cfb47-e0f2-4367-869d-c0f71b5a718a + - eda54c73-cf71-441b-8b38-6b582c01bcea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9e6cfa9e-3138-4cf8-aac7-27b97282beab/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: string: '{"value": []}' @@ -128,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:39:09 GMT + - Tue, 31 Mar 2026 09:27:52 GMT Pragma: - no-cache RequestId: - - b7d0ffaf-306a-4962-a4e0-0fe7595a47b2 + - 46d9ebad-828a-46db-b8c1-4c581bd861ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,9 +161,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/9e6cfa9e-3138-4cf8-aac7-27b97282beab/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/digitalTwinBuilders response: body: string: 'null' @@ -179,15 +179,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:39:12 GMT + - Tue, 31 Mar 2026 09:27:54 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b627cef-775e-492b-b522-98227a0cfe7b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/122d7ad4-4ded-4a45-bf90-7e81a68d9aa1 Pragma: - no-cache RequestId: - - d398e3d8-a38f-4671-b97a-d842f1e4887c + - 374f3266-e2ad-45bb-bf29-303dab4f3476 Retry-After: - '20' Strict-Transport-Security: @@ -201,7 +201,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 3b627cef-775e-492b-b522-98227a0cfe7b + - 122d7ad4-4ded-4a45-bf90-7e81a68d9aa1 status: code: 202 message: Accepted @@ -217,13 +217,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b627cef-775e-492b-b522-98227a0cfe7b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/122d7ad4-4ded-4a45-bf90-7e81a68d9aa1 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-05T07:39:10.0484678", - "lastUpdatedTimeUtc": "2026-02-05T07:39:21.3471383", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:27:52.7443438", + "lastUpdatedTimeUtc": "2026-03-31T09:28:01.0623949", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -233,17 +233,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:39:33 GMT + - Tue, 31 Mar 2026 09:28:16 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b627cef-775e-492b-b522-98227a0cfe7b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/122d7ad4-4ded-4a45-bf90-7e81a68d9aa1/result Pragma: - no-cache RequestId: - - 57a55420-74f6-47b3-a1e4-fafa07774aa0 + - 05d9dae6-16a0-48ed-9c11-c64a19d9954b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -251,7 +251,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 3b627cef-775e-492b-b522-98227a0cfe7b + - 122d7ad4-4ded-4a45-bf90-7e81a68d9aa1 status: code: 200 message: OK @@ -267,14 +267,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3b627cef-775e-492b-b522-98227a0cfe7b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/122d7ad4-4ded-4a45-bf90-7e81a68d9aa1/result response: body: - string: '{"id": "1a8033ed-91c1-43cd-b66d-6cd6ec50700f", "type": "DigitalTwinBuilder", + string: '{"id": "c3c0c023-70f0-4bf2-a2b9-6e22afcd302b", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "9e6cfa9e-3138-4cf8-aac7-27b97282beab"}' + "48be342b-90a5-4d43-bd10-9484b96aab52"}' headers: Access-Control-Expose-Headers: - RequestId @@ -285,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 05 Feb 2026 07:39:34 GMT + - Tue, 31 Mar 2026 09:28:17 GMT Pragma: - no-cache RequestId: - - 25e469b0-1e8e-4302-8272-7279ff133a0c + - ec2bcc77-afdc-4383-bbf9-9af4fd7a2c38 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -313,13 +313,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "9e6cfa9e-3138-4cf8-aac7-27b97282beab", + "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -330,15 +330,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2803' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:39:35 GMT + - Tue, 31 Mar 2026 09:28:17 GMT Pragma: - no-cache RequestId: - - e1eb2ab1-513d-4108-91a1-217add521c32 + - c58be674-03af-41cc-9ab7-523a30094022 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,20 +364,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9e6cfa9e-3138-4cf8-aac7-27b97282beab/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": [{"id": "49bb5c98-a0b3-403d-8412-9eeead3e8891", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9e6cfa9e-3138-4cf8-aac7-27b97282beab"}, - {"id": "1a8033ed-91c1-43cd-b66d-6cd6ec50700f", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "c3c0c023-70f0-4bf2-a2b9-6e22afcd302b", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "9e6cfa9e-3138-4cf8-aac7-27b97282beab"}, {"id": "2cd82c89-0041-434c-8330-a5d786bed9eb", + "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "9e6cfa9e-3138-4cf8-aac7-27b97282beab"}, {"id": "62265ece-5715-4d19-852a-30ff33c75e08", + "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "80300596-76fe-46eb-af0c-86f31d9b56c2", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "9e6cfa9e-3138-4cf8-aac7-27b97282beab"}]}' + "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -386,15 +386,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '319' + - '321' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:39:36 GMT + - Tue, 31 Mar 2026 09:28:18 GMT Pragma: - no-cache RequestId: - - 5c275035-d16d-4ce2-876a-644a8043d3ab + - 9cb3fa11-7fa6-4260-b80d-2b9b921083e7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -422,9 +422,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/9e6cfa9e-3138-4cf8-aac7-27b97282beab/items/1a8033ed-91c1-43cd-b66d-6cd6ec50700f + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items/c3c0c023-70f0-4bf2-a2b9-6e22afcd302b response: body: string: '' @@ -440,11 +440,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 05 Feb 2026 07:39:36 GMT + - Tue, 31 Mar 2026 09:28:19 GMT Pragma: - no-cache RequestId: - - 3b6237b4-8227-40a5-89d7-a9bc74748f02 + - 03b7e701-6177-4330-8510-12e130afcd76 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -470,13 +470,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "9e6cfa9e-3138-4cf8-aac7-27b97282beab", + "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -487,15 +487,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2803' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:39:37 GMT + - Tue, 31 Mar 2026 09:28:20 GMT Pragma: - no-cache RequestId: - - 75042858-4abf-4de0-ada3-3279aecd745d + - b58e1e4b-6b14-4516-a716-e2f27b5bf405 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -521,15 +521,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9e6cfa9e-3138-4cf8-aac7-27b97282beab/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": [{"id": "49bb5c98-a0b3-403d-8412-9eeead3e8891", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9e6cfa9e-3138-4cf8-aac7-27b97282beab"}, - {"id": "2cd82c89-0041-434c-8330-a5d786bed9eb", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9e6cfa9e-3138-4cf8-aac7-27b97282beab"}]}' + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -538,15 +538,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '215' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:39:38 GMT + - Tue, 31 Mar 2026 09:28:20 GMT Pragma: - no-cache RequestId: - - 5a0e71ee-2607-4ee8-a90b-bdf075c9388a + - 5a7e1572-bc5f-4e6d-b3e1-bf2219960f6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -572,15 +572,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9e6cfa9e-3138-4cf8-aac7-27b97282beab/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": [{"id": "49bb5c98-a0b3-403d-8412-9eeead3e8891", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9e6cfa9e-3138-4cf8-aac7-27b97282beab"}, - {"id": "2cd82c89-0041-434c-8330-a5d786bed9eb", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9e6cfa9e-3138-4cf8-aac7-27b97282beab"}]}' + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -589,15 +589,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '215' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:39:38 GMT + - Tue, 31 Mar 2026 09:28:21 GMT Pragma: - no-cache RequestId: - - c7577a49-61f0-40a4-947f-a905f1e1ba47 + - aff5dd07-7f8c-476e-976d-9e50185e6510 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_cancel_operation_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_cancel_operation_success[DigitalTwinBuilder].yaml index 4ca3402d1..40923f004 100644 --- a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_cancel_operation_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_cancel_operation_success[DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20e4c8f8-f961-49fd-947f-28f477f881fb", + "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2460' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 13:07:22 GMT + - Tue, 31 Mar 2026 09:28:21 GMT Pragma: - no-cache RequestId: - - 3d12ea73-f727-410d-89a1-d1aa22a594e6 + - 30d1c112-5fc4-4cd2-99d4-77f681e01c2c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,15 +62,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20e4c8f8-f961-49fd-947f-28f477f881fb/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": [{"id": "58b90332-8f80-43e4-b2bb-ef3986a3a85e", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "20e4c8f8-f961-49fd-947f-28f477f881fb"}, - {"id": "9d0b70c5-f3a8-4a74-86d3-29fa9a218e7c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "20e4c8f8-f961-49fd-947f-28f477f881fb"}]}' + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -79,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '218' + - '215' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 13:07:23 GMT + - Tue, 31 Mar 2026 09:28:23 GMT Pragma: - no-cache RequestId: - - 2e42c016-8b01-4bc1-9122-bb80b30db414 + - 3e105479-8539-4dbd-aaae-0bb445678855 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -113,15 +113,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20e4c8f8-f961-49fd-947f-28f477f881fb/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": [{"id": "58b90332-8f80-43e4-b2bb-ef3986a3a85e", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "20e4c8f8-f961-49fd-947f-28f477f881fb"}, - {"id": "9d0b70c5-f3a8-4a74-86d3-29fa9a218e7c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "20e4c8f8-f961-49fd-947f-28f477f881fb"}]}' + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -130,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '218' + - '215' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 13:07:23 GMT + - Tue, 31 Mar 2026 09:28:23 GMT Pragma: - no-cache RequestId: - - 1d717432-7517-46fe-a63b-384d2b13b284 + - efec9688-648b-45e6-8e6f-c4c1cac837c7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -167,9 +167,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/20e4c8f8-f961-49fd-947f-28f477f881fb/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/digitalTwinBuilders response: body: string: 'null' @@ -185,15 +185,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 13:07:26 GMT + - Tue, 31 Mar 2026 09:28:25 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c07c220f-7710-46c6-9742-f125bf2bbe3d + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9a19466f-67c2-4347-9e42-5065fa37df18 Pragma: - no-cache RequestId: - - 2c7d5777-e439-4bef-ab24-713823a30378 + - c08309ec-6391-4a12-8eab-98e8eb3c60b3 Retry-After: - '20' Strict-Transport-Security: @@ -207,7 +207,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c07c220f-7710-46c6-9742-f125bf2bbe3d + - 9a19466f-67c2-4347-9e42-5065fa37df18 status: code: 202 message: Accepted @@ -223,13 +223,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c07c220f-7710-46c6-9742-f125bf2bbe3d + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9a19466f-67c2-4347-9e42-5065fa37df18 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-03T13:07:25.2629877", - "lastUpdatedTimeUtc": "2026-02-03T13:07:32.4976605", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:28:24.257043", + "lastUpdatedTimeUtc": "2026-03-31T09:28:30.9219553", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -239,17 +239,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 13:07:47 GMT + - Tue, 31 Mar 2026 09:28:45 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c07c220f-7710-46c6-9742-f125bf2bbe3d/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9a19466f-67c2-4347-9e42-5065fa37df18/result Pragma: - no-cache RequestId: - - 3a5e26da-bee6-4fbe-84b2-d28c9c44e106 + - c1b84831-7c29-4e03-ade4-847415492c97 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -257,7 +257,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c07c220f-7710-46c6-9742-f125bf2bbe3d + - 9a19466f-67c2-4347-9e42-5065fa37df18 status: code: 200 message: OK @@ -273,14 +273,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c07c220f-7710-46c6-9742-f125bf2bbe3d/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9a19466f-67c2-4347-9e42-5065fa37df18/result response: body: - string: '{"id": "5947c048-e82e-4d9d-8050-9784d7a1ee8f", "type": "DigitalTwinBuilder", + string: '{"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20e4c8f8-f961-49fd-947f-28f477f881fb"}' + "48be342b-90a5-4d43-bd10-9484b96aab52"}' headers: Access-Control-Expose-Headers: - RequestId @@ -291,11 +291,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 03 Feb 2026 13:07:48 GMT + - Tue, 31 Mar 2026 09:28:47 GMT Pragma: - no-cache RequestId: - - bdbfe349-ad93-480c-a9bf-2bc018e8837e + - ab302921-d9ba-4855-8e6f-be01368190f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -319,13 +319,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20e4c8f8-f961-49fd-947f-28f477f881fb", + "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -336,15 +336,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2460' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 13:07:49 GMT + - Tue, 31 Mar 2026 09:28:48 GMT Pragma: - no-cache RequestId: - - a32f598c-6eb2-47d2-8d37-7bf5115f0dde + - e9d4506d-e75b-4572-b58d-529aa8779eec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -370,24 +370,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20e4c8f8-f961-49fd-947f-28f477f881fb/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": [{"id": "58b90332-8f80-43e4-b2bb-ef3986a3a85e", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "20e4c8f8-f961-49fd-947f-28f477f881fb"}, - {"id": "fa36ad95-cc47-4107-93e5-07acdf481a96", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "20e4c8f8-f961-49fd-947f-28f477f881fb"}, - {"id": "9d0b70c5-f3a8-4a74-86d3-29fa9a218e7c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "20e4c8f8-f961-49fd-947f-28f477f881fb"}, - {"id": "5947c048-e82e-4d9d-8050-9784d7a1ee8f", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20e4c8f8-f961-49fd-947f-28f477f881fb"}, {"id": "6bf98cf6-6c84-490c-8737-eaa4901fe6ec", + "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "20e4c8f8-f961-49fd-947f-28f477f881fb"}, {"id": "ab1ef74a-0d46-4cb6-9b0a-d87992b43278", + "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "20e4c8f8-f961-49fd-947f-28f477f881fb"}]}' + "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -396,15 +396,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '381' + - '383' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 03 Feb 2026 13:07:50 GMT + - Tue, 31 Mar 2026 09:28:48 GMT Pragma: - no-cache RequestId: - - 48a49c3e-0a5d-4e19-804f-c08fa6e768e0 + - d264b415-fbe4-4fdf-8cbd-cc453ff13a2c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[DigitalTwinBuilder].yaml index d4002561f..e291e5ef7 100644 --- a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "adb8fb8e-54a1-4e39-927a-c4d65c660745", + "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2803' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:48:39 GMT + - Tue, 31 Mar 2026 09:28:49 GMT Pragma: - no-cache RequestId: - - 92c7f988-eb19-4d42-8f57-38222d2cfc5f + - a14afa83-915c-41e8-99c1-78b6750b9e9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,21 +62,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/adb8fb8e-54a1-4e39-927a-c4d65c660745/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": [{"id": "3ae126fe-eac8-4a53-a751-2fa6d72e643a", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "ea1fce42-491b-433f-8692-3d237d4acc11", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260205074746", "description": "", "workspaceId": - "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, {"id": "0f48811d-f17e-4011-adf2-3967c717102e", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260205074758", - "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "40f22982-bb05-4403-9ffc-a76e8a7e3051", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260205074746", "description": "", "workspaceId": - "adb8fb8e-54a1-4e39-927a-c4d65c660745"}]}' + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -85,15 +88,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '328' + - '383' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:48:40 GMT + - Tue, 31 Mar 2026 09:28:50 GMT Pragma: - no-cache RequestId: - - 3bc38af3-74b7-49a6-817e-a103e6c7d0e3 + - eb095cfe-109d-4fcd-b66d-655d90fca900 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -119,21 +122,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/adb8fb8e-54a1-4e39-927a-c4d65c660745/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": [{"id": "3ae126fe-eac8-4a53-a751-2fa6d72e643a", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "ea1fce42-491b-433f-8692-3d237d4acc11", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260205074746", "description": "", "workspaceId": - "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, {"id": "0f48811d-f17e-4011-adf2-3967c717102e", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260205074758", - "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "40f22982-bb05-4403-9ffc-a76e8a7e3051", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260205074746", "description": "", "workspaceId": - "adb8fb8e-54a1-4e39-927a-c4d65c660745"}]}' + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -142,15 +148,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '328' + - '383' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:48:40 GMT + - Tue, 31 Mar 2026 09:28:51 GMT Pragma: - no-cache RequestId: - - 1ae2b1ef-60c8-477a-84e7-2b8c4bd4bb5e + - aafe43a8-3c1d-41b6-a74e-66a85e5952f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -179,9 +185,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/adb8fb8e-54a1-4e39-927a-c4d65c660745/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/digitalTwinBuilders response: body: string: 'null' @@ -197,15 +203,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:48:42 GMT + - Tue, 31 Mar 2026 09:28:53 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c62b9d9-2a8d-4483-be14-45e4bcf4d841 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1a839da-0ec8-4595-9492-1bfd9dd0bb0d Pragma: - no-cache RequestId: - - ff03bd50-14a6-4505-82eb-6e11ad82fe9e + - 03fad66d-64ad-4740-9ff5-779ab2df5f76 Retry-After: - '20' Strict-Transport-Security: @@ -219,7 +225,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 7c62b9d9-2a8d-4483-be14-45e4bcf4d841 + - d1a839da-0ec8-4595-9492-1bfd9dd0bb0d status: code: 202 message: Accepted @@ -235,13 +241,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c62b9d9-2a8d-4483-be14-45e4bcf4d841 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1a839da-0ec8-4595-9492-1bfd9dd0bb0d response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-05T07:48:41.714649", - "lastUpdatedTimeUtc": "2026-02-05T07:48:49.2939636", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:28:52.5933013", + "lastUpdatedTimeUtc": "2026-03-31T09:28:58.9863347", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -255,13 +261,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:49:04 GMT + - Tue, 31 Mar 2026 09:29:13 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c62b9d9-2a8d-4483-be14-45e4bcf4d841/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1a839da-0ec8-4595-9492-1bfd9dd0bb0d/result Pragma: - no-cache RequestId: - - 050b4839-3901-4769-ba03-64fa7a22ac92 + - c3207774-5d6e-4a42-abce-16848a873207 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -269,7 +275,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 7c62b9d9-2a8d-4483-be14-45e4bcf4d841 + - d1a839da-0ec8-4595-9492-1bfd9dd0bb0d status: code: 200 message: OK @@ -285,14 +291,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c62b9d9-2a8d-4483-be14-45e4bcf4d841/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1a839da-0ec8-4595-9492-1bfd9dd0bb0d/result response: body: - string: '{"id": "105c402a-7cfa-4934-a04d-308547892e1f", "type": "DigitalTwinBuilder", + string: '{"id": "152a6d3d-e88a-4b4d-a210-9bcc31435dea", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "adb8fb8e-54a1-4e39-927a-c4d65c660745"}' + "48be342b-90a5-4d43-bd10-9484b96aab52"}' headers: Access-Control-Expose-Headers: - RequestId @@ -303,11 +309,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 05 Feb 2026 07:49:04 GMT + - Tue, 31 Mar 2026 09:29:15 GMT Pragma: - no-cache RequestId: - - ff0cc985-3f22-4159-9264-f56520740e8c + - 3217fa73-0ff7-4346-a992-1a0af418ae5d Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -331,13 +337,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "adb8fb8e-54a1-4e39-927a-c4d65c660745", + "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -348,15 +354,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2803' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:49:06 GMT + - Tue, 31 Mar 2026 09:29:16 GMT Pragma: - no-cache RequestId: - - ebf9c549-8602-486c-b5e1-acb4423cc070 + - 8e43e427-eb5c-43d2-948c-2b08fc5395cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -382,29 +388,32 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/adb8fb8e-54a1-4e39-927a-c4d65c660745/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": [{"id": "3ae126fe-eac8-4a53-a751-2fa6d72e643a", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "ea1fce42-491b-433f-8692-3d237d4acc11", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260205074746", "description": "", "workspaceId": - "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, {"id": "0f48811d-f17e-4011-adf2-3967c717102e", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260205074758", - "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "16ea9fac-9ed5-4675-a3aa-5268964d04cb", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "40f22982-bb05-4403-9ffc-a76e8a7e3051", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260205074746", "description": "", "workspaceId": - "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, {"id": "105c402a-7cfa-4934-a04d-308547892e1f", + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "26f080bf-3ec8-4ff6-9ea3-a34a85d16cba", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "152a6d3d-e88a-4b4d-a210-9bcc31435dea", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": - "Created by fab", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "52276d4b-247c-4865-852b-e93a0b4339da", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "27825e9a-cc93-47d0-9ee6-fcb60a1ecabd", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}]}' + "Created by fab", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "2a3be8a2-c218-4f69-908e-bff1075e7782", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "ca79e31f-4236-4969-8c8d-f56afef4b4c7", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -413,15 +422,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '496' + - '504' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:49:06 GMT + - Tue, 31 Mar 2026 09:29:17 GMT Pragma: - no-cache RequestId: - - 5d60c1c7-5dc0-4d52-b2b7-1eed85970012 + - f5a2d292-3393-42d0-95f1-22488d9c62c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -449,9 +458,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/adb8fb8e-54a1-4e39-927a-c4d65c660745/items/105c402a-7cfa-4934-a04d-308547892e1f + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items/152a6d3d-e88a-4b4d-a210-9bcc31435dea response: body: string: '' @@ -467,11 +476,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 05 Feb 2026 07:49:07 GMT + - Tue, 31 Mar 2026 09:29:18 GMT Pragma: - no-cache RequestId: - - 5330e58e-b14f-49dc-8874-d65f90a0f308 + - bff137a0-8507-4733-ab4d-d17c757154dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -497,13 +506,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "adb8fb8e-54a1-4e39-927a-c4d65c660745", + "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -514,15 +523,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2803' + - '2049' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:49:08 GMT + - Tue, 31 Mar 2026 09:29:18 GMT Pragma: - no-cache RequestId: - - 6348912d-66c5-45a5-b5cf-7e697955ee86 + - 61542dc9-776a-4c97-a24f-b4738e7fc14d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -548,25 +557,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/adb8fb8e-54a1-4e39-927a-c4d65c660745/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": [{"id": "3ae126fe-eac8-4a53-a751-2fa6d72e643a", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "ea1fce42-491b-433f-8692-3d237d4acc11", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260205074746", "description": "", "workspaceId": - "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, {"id": "0f48811d-f17e-4011-adf2-3967c717102e", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260205074758", - "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "16ea9fac-9ed5-4675-a3aa-5268964d04cb", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "40f22982-bb05-4403-9ffc-a76e8a7e3051", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260205074746", "description": "", "workspaceId": - "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, {"id": "52276d4b-247c-4865-852b-e93a0b4339da", + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "26f080bf-3ec8-4ff6-9ea3-a34a85d16cba", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "2a3be8a2-c218-4f69-908e-bff1075e7782", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}]}' + "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -575,15 +587,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '399' + - '446' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:49:08 GMT + - Tue, 31 Mar 2026 09:29:20 GMT Pragma: - no-cache RequestId: - - f0537389-8f7e-44cd-8ab0-90e3386a49fe + - 22cc6b62-ecdb-4688-b6e8-409d31281df8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -609,25 +621,28 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/adb8fb8e-54a1-4e39-927a-c4d65c660745/items + uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items response: body: - string: '{"value": [{"id": "3ae126fe-eac8-4a53-a751-2fa6d72e643a", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "ea1fce42-491b-433f-8692-3d237d4acc11", "type": "SQLEndpoint", "displayName": - "StagingLakehouseForDataflows_20260205074746", "description": "", "workspaceId": - "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, {"id": "0f48811d-f17e-4011-adf2-3967c717102e", - "type": "Warehouse", "displayName": "StagingWarehouseForDataflows_20260205074758", - "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "16ea9fac-9ed5-4675-a3aa-5268964d04cb", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, - {"id": "40f22982-bb05-4403-9ffc-a76e8a7e3051", "type": "Lakehouse", "displayName": - "StagingLakehouseForDataflows_20260205074746", "description": "", "workspaceId": - "adb8fb8e-54a1-4e39-927a-c4d65c660745"}, {"id": "52276d4b-247c-4865-852b-e93a0b4339da", + string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "26f080bf-3ec8-4ff6-9ea3-a34a85d16cba", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, + {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": + "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", + "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", + "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", + "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": + "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "2a3be8a2-c218-4f69-908e-bff1075e7782", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "adb8fb8e-54a1-4e39-927a-c4d65c660745"}]}' + "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -636,15 +651,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '399' + - '446' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 05 Feb 2026 07:49:09 GMT + - Tue, 31 Mar 2026 09:29:21 GMT Pragma: - no-cache RequestId: - - 0e2d4e03-6275-452c-91f4-90076c9e2e0b + - b8065435-4011-47fa-abc3-7a9f4a63ba27 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml index f2b0bb1d3..d238932e7 100644 --- a/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:32 GMT + - Tue, 31 Mar 2026 09:29:24 GMT Pragma: - no-cache RequestId: - - b1640bbf-6aee-4361-8af3-108de100a514 + - c0ad49e8-efdf-4ac0-a985-606a72d7edef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1559' + - '2016' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:34 GMT + - Tue, 31 Mar 2026 09:29:25 GMT Pragma: - no-cache RequestId: - - 34448225-7f9b-4d68-b1fc-631f4becba2d + - e0f590a6-392f-40f1-8f5c-5126d45d7861 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -129,11 +129,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:40 GMT + - Tue, 31 Mar 2026 09:29:31 GMT Pragma: - no-cache RequestId: - - 03c19ec0-fd71-4399-9ade-f4b0c2cbdcab + - 399bd799-ea30-48c5-9f66-53f6e440284b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "7f856733-0681-4bf0-b46f-fe3a6240864b", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,13 +181,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:49 GMT + - Tue, 31 Mar 2026 09:29:39 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b + - https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c Pragma: - no-cache RequestId: - - 5e644f8c-6535-4aee-a02d-a9cf15ed1e4b + - b10807f5-fd9e-4ea5-9a3d-1b808ad590ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (set; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (set; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "7f856733-0681-4bf0-b46f-fe3a6240864b", + "My workspace", "description": "", "type": "Personal"}, {"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2047' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:21 GMT + - Tue, 31 Mar 2026 09:30:56 GMT Pragma: - no-cache RequestId: - - 6fe6ff34-fb89-4599-86e0-ab4ab5e57b55 + - 7778ea1c-bc9d-4991-91a5-111c4cb8e461 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,12 +264,19 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (set; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (set; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +285,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '278' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:21 GMT + - Tue, 31 Mar 2026 09:30:56 GMT Pragma: - no-cache RequestId: - - 872077fd-3d4c-431f-8f70-9c10bcb964fe + - 9bf700bb-1848-42ab-8b30-038d926d24f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +321,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.4.0 (set; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (set; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c response: body: string: '' @@ -332,11 +339,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:05:22 GMT + - Tue, 31 Mar 2026 09:30:58 GMT Pragma: - no-cache RequestId: - - a3c50e3d-ec15-4bce-9002-b0987ec50d74 + - c3e0e109-9db7-404e-8460-78235dece80d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DigitalTwinBuilder].yaml index e9efa2dc5..083f6b04f 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", + "My workspace", "description": "", "type": "Personal"}, {"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2047' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:22:32 GMT + - Tue, 31 Mar 2026 09:29:39 GMT Pragma: - no-cache RequestId: - - 5251f095-478a-411e-b89f-2eea989bff9a + - 072c7fe7-2cef-420c-97b7-dba4d61f4bd4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: string: '{"value": []}' @@ -80,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:22:33 GMT + - Tue, 31 Mar 2026 09:29:39 GMT Pragma: - no-cache RequestId: - - 2fa61825-0962-4d56-84d2-6f6d48682c4d + - 41851d8f-7afe-45d7-af68-ad6f34a6803e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: string: '{"value": []}' @@ -128,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:22:35 GMT + - Tue, 31 Mar 2026 09:29:40 GMT Pragma: - no-cache RequestId: - - 9fc36912-0a12-44c4-b1cb-73deb1a567f7 + - 43798f49-3255-4722-b729-a142b4d8de49 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,9 +161,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders response: body: string: 'null' @@ -179,15 +179,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:22:38 GMT + - Tue, 31 Mar 2026 09:29:43 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b22dc00b-9d26-4bd7-8919-7fc9215a0570 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7affb468-3b29-402f-9f26-3091a5a2e2f7 Pragma: - no-cache RequestId: - - c88cd5de-5b01-4a41-81ee-b43d58ee0a82 + - 61f2fd43-0c59-431a-8851-111649a83050 Retry-After: - '20' Strict-Transport-Security: @@ -201,7 +201,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - b22dc00b-9d26-4bd7-8919-7fc9215a0570 + - 7affb468-3b29-402f-9f26-3091a5a2e2f7 status: code: 202 message: Accepted @@ -217,13 +217,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b22dc00b-9d26-4bd7-8919-7fc9215a0570 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7affb468-3b29-402f-9f26-3091a5a2e2f7 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-04T07:22:36.0360279", - "lastUpdatedTimeUtc": "2026-02-04T07:22:47.5850079", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:29:41.7996365", + "lastUpdatedTimeUtc": "2026-03-31T09:29:49.9546908", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -237,13 +237,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:22:59 GMT + - Tue, 31 Mar 2026 09:30:04 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b22dc00b-9d26-4bd7-8919-7fc9215a0570/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7affb468-3b29-402f-9f26-3091a5a2e2f7/result Pragma: - no-cache RequestId: - - f30777a3-a651-4f6a-bb26-c268541468dd + - a94e2e55-e988-42a5-8bae-c535bdbabc6d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -251,7 +251,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - b22dc00b-9d26-4bd7-8919-7fc9215a0570 + - 7affb468-3b29-402f-9f26-3091a5a2e2f7 status: code: 200 message: OK @@ -267,14 +267,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b22dc00b-9d26-4bd7-8919-7fc9215a0570/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7affb468-3b29-402f-9f26-3091a5a2e2f7/result response: body: - string: '{"id": "8fee51bc-d7f8-4645-b5a0-16a48e09fbd3", "type": "DigitalTwinBuilder", + string: '{"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' headers: Access-Control-Expose-Headers: - RequestId @@ -285,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 04 Feb 2026 07:22:59 GMT + - Tue, 31 Mar 2026 09:30:05 GMT Pragma: - no-cache RequestId: - - 3fc10251-a1c2-4952-88b7-0c31c554b9a1 + - ad3b59dc-01e2-4009-b347-41467aca80f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -313,13 +313,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", + "My workspace", "description": "", "type": "Personal"}, {"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -330,15 +330,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2047' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:01 GMT + - Tue, 31 Mar 2026 09:30:06 GMT Pragma: - no-cache RequestId: - - 78c932eb-30a0-4f20-aa5a-80b25b1ae214 + - d2bb6527-47ca-4b37-9123-d293ce7aefb6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,20 +364,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "8fee51bc-d7f8-4645-b5a0-16a48e09fbd3", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "7086153e-054a-432b-a441-c8e396b498a1", + "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "bfa2dd9c-7425-4067-b098-b87cfefd81ba", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -390,11 +390,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:02 GMT + - Tue, 31 Mar 2026 09:30:06 GMT Pragma: - no-cache RequestId: - - 603e2db5-a601-4de9-aae2-651298ddcefb + - 84786823-89b6-43b8-8172-b05c94b301ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -420,14 +420,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/digitalTwinBuilders/8fee51bc-d7f8-4645-b5a0-16a48e09fbd3 + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6ca92fb9-0f1c-486d-bf7a-9eb783c7d813 response: body: - string: '{"id": "8fee51bc-d7f8-4645-b5a0-16a48e09fbd3", "type": "DigitalTwinBuilder", + string: '{"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -436,17 +436,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:02 GMT + - Tue, 31 Mar 2026 09:30:08 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 56558416-1fa4-45a9-85eb-027185d74d77 + - 99ecf2d3-8426-4430-9fbb-67a890997f9f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -474,14 +474,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/digitalTwinBuilders/8fee51bc-d7f8-4645-b5a0-16a48e09fbd3 + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6ca92fb9-0f1c-486d-bf7a-9eb783c7d813 response: body: - string: '{"id": "8fee51bc-d7f8-4645-b5a0-16a48e09fbd3", "type": "DigitalTwinBuilder", + string: '{"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -490,17 +490,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:04 GMT + - Tue, 31 Mar 2026 09:30:09 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 9e4bb70e-555a-4990-a997-2e0c097d05a4 + - f82054f2-9c80-43a7-b59d-0ece1546c5eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -526,13 +526,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", + "My workspace", "description": "", "type": "Personal"}, {"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -543,15 +543,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2047' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:04 GMT + - Tue, 31 Mar 2026 09:30:10 GMT Pragma: - no-cache RequestId: - - 6b79d666-dd2d-45c0-9918-12ebe70488fa + - 90ad34c3-09d4-4707-ba4d-6e7e1ec19cc7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -577,20 +577,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "8fee51bc-d7f8-4645-b5a0-16a48e09fbd3", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "7086153e-054a-432b-a441-c8e396b498a1", + "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "bfa2dd9c-7425-4067-b098-b87cfefd81ba", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -599,15 +599,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '319' + - '318' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:06 GMT + - Tue, 31 Mar 2026 09:30:10 GMT Pragma: - no-cache RequestId: - - 70bc7968-dd13-4806-a292-7cc5acb054c5 + - 24ca7b9d-7958-408c-a6be-81d8511be742 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -633,14 +633,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/digitalTwinBuilders/8fee51bc-d7f8-4645-b5a0-16a48e09fbd3 + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6ca92fb9-0f1c-486d-bf7a-9eb783c7d813 response: body: - string: '{"id": "8fee51bc-d7f8-4645-b5a0-16a48e09fbd3", "type": "DigitalTwinBuilder", + string: '{"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -649,17 +649,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:07 GMT + - Tue, 31 Mar 2026 09:30:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0be08ab7-5854-4aae-866c-70a716900c18 + - 57d95bde-1180-4b82-be70-adb44aaa97c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -685,9 +685,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/8fee51bc-d7f8-4645-b5a0-16a48e09fbd3/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items/6ca92fb9-0f1c-486d-bf7a-9eb783c7d813/connections response: body: string: '{"value": []}' @@ -703,11 +703,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:07 GMT + - Tue, 31 Mar 2026 09:30:12 GMT Pragma: - no-cache RequestId: - - d1ef9cd2-ec8f-4605-b3d6-41b25ca1931a + - fe27873f-87da-4358-8af5-62f51894114b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -733,13 +733,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", + "My workspace", "description": "", "type": "Personal"}, {"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -750,15 +750,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2047' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:08 GMT + - Tue, 31 Mar 2026 09:30:13 GMT Pragma: - no-cache RequestId: - - 2c505cf5-5dda-44ca-bb0b-1df057a47d85 + - a20a33dc-cbb6-4d0d-9b74-fea93a2f5f9c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -784,20 +784,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "8fee51bc-d7f8-4645-b5a0-16a48e09fbd3", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "7086153e-054a-432b-a441-c8e396b498a1", + "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "bfa2dd9c-7425-4067-b098-b87cfefd81ba", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -806,15 +806,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '319' + - '318' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:09 GMT + - Tue, 31 Mar 2026 09:30:14 GMT Pragma: - no-cache RequestId: - - f26f774b-6af6-4ffa-92dd-62c3cd78e073 + - 70331bc4-0e94-4d2d-9107-1205fadb45b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -842,9 +842,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/8fee51bc-d7f8-4645-b5a0-16a48e09fbd3 + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items/6ca92fb9-0f1c-486d-bf7a-9eb783c7d813 response: body: string: '' @@ -860,11 +860,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 04 Feb 2026 07:23:09 GMT + - Tue, 31 Mar 2026 09:30:14 GMT Pragma: - no-cache RequestId: - - 880ccfc0-6d56-48b1-a4ec-1879cd47d6b3 + - 75abea99-7c87-4dce-a6ea-bb76e70833e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DigitalTwinBuilder].yaml index dd6d30fe4..c28542386 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DigitalTwinBuilder].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", + "My workspace", "description": "", "type": "Personal"}, {"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2047' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:56 GMT + - Tue, 31 Mar 2026 09:30:15 GMT Pragma: - no-cache RequestId: - - 6d1c876f-b919-44a8-b6ab-ddf8ad5067ee + - b836b611-fcd5-4041-b706-87a28d65161f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,15 +62,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -83,11 +83,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:56 GMT + - Tue, 31 Mar 2026 09:30:15 GMT Pragma: - no-cache RequestId: - - 770a2434-764a-44d3-a9bc-9844ead613db + - d69ec8ca-560b-441d-8c4c-f3834a07c384 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -113,15 +113,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -134,11 +134,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:58 GMT + - Tue, 31 Mar 2026 09:30:17 GMT Pragma: - no-cache RequestId: - - fb21209b-bc5b-46ea-8ed5-9390303a92f8 + - a386d8ee-4a4f-4a27-9408-df83f41efac6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -167,9 +167,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders response: body: string: 'null' @@ -185,15 +185,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:00 GMT + - Tue, 31 Mar 2026 09:30:18 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5bfa8af4-8fd3-467a-830c-665f7f2408f8 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b06518f-c4d8-4367-9979-5d70c3de9609 Pragma: - no-cache RequestId: - - 53f75ff5-528e-4361-b3df-4247b277eb82 + - 6b969800-4fc4-416f-a487-95cac5ee4767 Retry-After: - '20' Strict-Transport-Security: @@ -207,7 +207,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 5bfa8af4-8fd3-467a-830c-665f7f2408f8 + - 2b06518f-c4d8-4367-9979-5d70c3de9609 status: code: 202 message: Accepted @@ -223,13 +223,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5bfa8af4-8fd3-467a-830c-665f7f2408f8 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b06518f-c4d8-4367-9979-5d70c3de9609 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-04T07:23:58.4939828", - "lastUpdatedTimeUtc": "2026-02-04T07:24:07.0732166", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:30:17.6116207", + "lastUpdatedTimeUtc": "2026-03-31T09:30:24.1871393", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -239,17 +239,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:21 GMT + - Tue, 31 Mar 2026 09:30:39 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5bfa8af4-8fd3-467a-830c-665f7f2408f8/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b06518f-c4d8-4367-9979-5d70c3de9609/result Pragma: - no-cache RequestId: - - 334ec5d2-70e0-48a4-8ad3-395f7017937e + - 68c60c34-e552-4083-961c-f827f8d344e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -257,7 +257,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 5bfa8af4-8fd3-467a-830c-665f7f2408f8 + - 2b06518f-c4d8-4367-9979-5d70c3de9609 status: code: 200 message: OK @@ -273,14 +273,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5bfa8af4-8fd3-467a-830c-665f7f2408f8/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b06518f-c4d8-4367-9979-5d70c3de9609/result response: body: - string: '{"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' headers: Access-Control-Expose-Headers: - RequestId @@ -291,11 +291,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 04 Feb 2026 07:24:21 GMT + - Tue, 31 Mar 2026 09:30:41 GMT Pragma: - no-cache RequestId: - - 6d496638-05ec-4d63-9aa2-081475213ada + - 1ce9480e-c36e-4544-9ef0-0ec70b2d7faf Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -319,13 +319,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", + "My workspace", "description": "", "type": "Personal"}, {"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -336,15 +336,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2047' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:23 GMT + - Tue, 31 Mar 2026 09:30:42 GMT Pragma: - no-cache RequestId: - - 3f257a93-fb43-42cf-bcf0-12bca13a268c + - 512c8034-9926-41df-aab9-ea6bc130c236 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -370,24 +370,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35558427-c7f1-44d9-bb4a-6c4dc57b9626", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "ac4fcde4-68f2-4ab1-8506-6335e3bef15f", + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "b17b7e9e-3b65-4ef3-bc2d-b48160028615", + "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -396,15 +396,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '382' + - '381' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:24 GMT + - Tue, 31 Mar 2026 09:30:42 GMT Pragma: - no-cache RequestId: - - 4bec3e83-6bb2-4015-9233-d82dafdf6839 + - cd2fa251-a449-4797-a248-698138e8255c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -430,14 +430,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/digitalTwinBuilders/0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 response: body: - string: '{"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -446,17 +446,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:25 GMT + - Tue, 31 Mar 2026 09:30:42 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f8c65c91-6ef9-4b33-9cd2-d63300226605 + - 853edf90-8a6f-4c0c-87ef-af234611455d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -484,14 +484,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/digitalTwinBuilders/0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 response: body: - string: '{"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -500,17 +500,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:26 GMT + - Tue, 31 Mar 2026 09:30:44 GMT ETag: - '""' Pragma: - no-cache RequestId: - - aba18d3c-ab67-4df0-8efe-ab8ae36246be + - b9c6e369-8a64-4c14-bf2f-eb8c22d463b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -536,13 +536,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", + "My workspace", "description": "", "type": "Personal"}, {"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -553,15 +553,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2047' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:26 GMT + - Tue, 31 Mar 2026 09:30:45 GMT Pragma: - no-cache RequestId: - - 3a2acb23-2d75-4b4e-a2ef-e374ee693e3c + - 1199d5e4-48ce-48be-a370-79ada6830528 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -587,24 +587,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35558427-c7f1-44d9-bb4a-6c4dc57b9626", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "ac4fcde4-68f2-4ab1-8506-6335e3bef15f", + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "b17b7e9e-3b65-4ef3-bc2d-b48160028615", + "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -613,15 +613,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '390' + - '388' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:27 GMT + - Tue, 31 Mar 2026 09:30:45 GMT Pragma: - no-cache RequestId: - - 5632bae6-edad-4d47-ac9a-218385175b21 + - d394d193-e4fd-498c-9a07-50d9f6d84bd0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -647,24 +647,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35558427-c7f1-44d9-bb4a-6c4dc57b9626", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "ac4fcde4-68f2-4ab1-8506-6335e3bef15f", + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "b17b7e9e-3b65-4ef3-bc2d-b48160028615", + "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -673,15 +673,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '390' + - '388' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:28 GMT + - Tue, 31 Mar 2026 09:30:46 GMT Pragma: - no-cache RequestId: - - 413d5e42-8952-4879-964f-90f4c5fb40ff + - 078e260b-0c4d-41e4-adfb-b458f26e035a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -707,13 +707,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", + "My workspace", "description": "", "type": "Personal"}, {"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -724,15 +724,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2047' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:29 GMT + - Tue, 31 Mar 2026 09:30:47 GMT Pragma: - no-cache RequestId: - - 63a73c15-ddf4-46fe-b6a0-73a697da4a27 + - fe7c13cd-bf5d-436d-a48c-fe5118e5fb34 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -758,24 +758,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35558427-c7f1-44d9-bb4a-6c4dc57b9626", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "ac4fcde4-68f2-4ab1-8506-6335e3bef15f", + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "b17b7e9e-3b65-4ef3-bc2d-b48160028615", + "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -784,15 +784,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '390' + - '388' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:31 GMT + - Tue, 31 Mar 2026 09:30:48 GMT Pragma: - no-cache RequestId: - - 7cd0469a-5b06-4b45-900c-1627aba5f98c + - bb2e22ac-2c87-4365-84dd-5616532963f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -818,14 +818,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/digitalTwinBuilders/0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 response: body: - string: '{"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -834,17 +834,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:31 GMT + - Tue, 31 Mar 2026 09:30:49 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b61f1ef6-5a79-4f3c-8753-00b47503b7c5 + - 15b136b3-b9b5-4dda-acac-4ee255184d43 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -870,9 +870,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items/6b3592c7-97a3-4330-8ce8-bb2e393d65b4/connections response: body: string: '{"value": []}' @@ -888,11 +888,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:32 GMT + - Tue, 31 Mar 2026 09:30:50 GMT Pragma: - no-cache RequestId: - - 01b593fa-0cf3-4207-99ed-2ac6c776c601 + - 3b0aa9a7-dab6-4658-be71-4aea673f36c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -918,13 +918,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", + "My workspace", "description": "", "type": "Personal"}, {"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -935,15 +935,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2047' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:32 GMT + - Tue, 31 Mar 2026 09:30:52 GMT Pragma: - no-cache RequestId: - - 897b0fc1-0039-4a8d-ab88-d095e91751e0 + - 0b1f01c9-9363-439c-a5b7-bf3450bd913a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -969,24 +969,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35558427-c7f1-44d9-bb4a-6c4dc57b9626", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "ac4fcde4-68f2-4ab1-8506-6335e3bef15f", + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "b17b7e9e-3b65-4ef3-bc2d-b48160028615", + "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -995,15 +995,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '390' + - '388' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:34 GMT + - Tue, 31 Mar 2026 09:30:53 GMT Pragma: - no-cache RequestId: - - 306da140-3df8-4bb5-bd50-d21c539af8ea + - 457a5a9e-d324-4e99-bd3b-ec0511b4e9ef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1029,14 +1029,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/digitalTwinBuilders/0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 response: body: - string: '{"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1045,17 +1045,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:34 GMT + - Tue, 31 Mar 2026 09:30:53 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3cbda3c7-3d7f-465d-8830-e9e20a899399 + - 20258e42-d500-4410-b958-80a0b8255527 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1083,14 +1083,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/digitalTwinBuilders/0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 response: body: - string: '{"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1099,17 +1099,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:36 GMT + - Tue, 31 Mar 2026 09:30:54 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 6a28ca4d-3574-4390-a867-24dc05df42bd + - eccae75d-f0e6-43d5-a78e-b43c251eb90a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1135,13 +1135,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", + "My workspace", "description": "", "type": "Personal"}, {"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1152,15 +1152,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2047' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:37 GMT + - Tue, 31 Mar 2026 09:30:55 GMT Pragma: - no-cache RequestId: - - 5cee4c43-3d44-427d-bc81-da94deadf395 + - 7c41d3f1-73f6-463c-ac4e-dd9ad0ec4556 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1186,24 +1186,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35558427-c7f1-44d9-bb4a-6c4dc57b9626", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, + {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "ac4fcde4-68f2-4ab1-8506-6335e3bef15f", + "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, {"id": "b17b7e9e-3b65-4ef3-bc2d-b48160028615", + "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1212,15 +1212,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '382' + - '381' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:24:37 GMT + - Tue, 31 Mar 2026 09:30:54 GMT Pragma: - no-cache RequestId: - - be114c3d-a24d-46e8-9d19-165c713732d2 + - dd6d105c-1325-48c2-8cd7-781b5e87e786 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1248,9 +1248,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/0c201db3-3cbe-49b5-a4b8-8edf6e2cb4dc + uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 response: body: string: '' @@ -1266,11 +1266,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 04 Feb 2026 07:24:39 GMT + - Tue, 31 Mar 2026 09:30:55 GMT Pragma: - no-cache RequestId: - - f3c30f9b-0f59-4eb2-942e-a0815de90e9a + - 3164c7c7-9978-473d-8742-386ef78633e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/test_export.py b/tests/test_commands/test_export.py index a6f64163e..42e8fc69a 100644 --- a/tests/test_commands/test_export.py +++ b/tests/test_commands/test_export.py @@ -285,7 +285,8 @@ def test_export_item_invalid_format_failure( ItemType.MIRRORED_DATABASE: "Invalid format. No formats are supported", ItemType.COSMOS_DB_DATABASE: "Invalid format. No formats are supported", ItemType.USER_DATA_FUNCTION: "Invalid format. No formats are supported", - ItemType.GRAPH_QUERY_SET: "Invalid format. No formats are supported" + ItemType.GRAPH_QUERY_SET: "Invalid format. No formats are supported", + ItemType.DIGITAL_TWIN_BUILDER: "Invalid format. No formats are supported" } # Assert From 51de0f94890440affffffe117b5f6346e11ee2f2 Mon Sep 17 00:00:00 2001 From: Alon Yeshurun Date: Thu, 9 Apr 2026 11:41:30 +0000 Subject: [PATCH 05/11] revert --- .changes/unreleased/new-items-20260331-075150.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changes/unreleased/new-items-20260331-075150.yaml b/.changes/unreleased/new-items-20260331-075150.yaml index 70419b4a1..e425b517f 100644 --- a/.changes/unreleased/new-items-20260331-075150.yaml +++ b/.changes/unreleased/new-items-20260331-075150.yaml @@ -1,5 +1,5 @@ kind: new-items -body: Add definition support (export, import, cp, mv) for DigitalTwinBuilder item type +body: Add definition support (export, import) for DigitalTwinBuilder item type time: 2026-03-31T07:51:50.000000000Z custom: Author: ayeshurun From d15bf119a000a6782972b6c9ddf9d082b520b636 Mon Sep 17 00:00:00 2001 From: Alon Yeshurun Date: Thu, 9 Apr 2026 11:43:26 +0000 Subject: [PATCH 06/11] Update message --- .changes/unreleased/new-items-20260331-075150.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changes/unreleased/new-items-20260331-075150.yaml b/.changes/unreleased/new-items-20260331-075150.yaml index e425b517f..9480ef863 100644 --- a/.changes/unreleased/new-items-20260331-075150.yaml +++ b/.changes/unreleased/new-items-20260331-075150.yaml @@ -1,5 +1,5 @@ kind: new-items -body: Add definition support (export, import) for DigitalTwinBuilder item type +body: Add export, import and cp commands support for DigitalTwinBuilder item type time: 2026-03-31T07:51:50.000000000Z custom: Author: ayeshurun From ed5dd4a315241e3fa34e7f7bd82e3b5c279c2aa6 Mon Sep 17 00:00:00 2001 From: Alon Yeshurun Date: Tue, 14 Apr 2026 13:08:12 +0000 Subject: [PATCH 07/11] record tests --- .../test_commands/test_cp/class_setup.yaml | 54 +- ...tem_types_success[DigitalTwinBuilder].yaml | 1126 ++++++++--------- .../test_commands/test_ls/class_setup.yaml | 83 +- .../test_ls_query_filter_success[Map].yaml | 680 +++++++--- ...t_ls_workspace_items_success[dir-Map].yaml | 360 ++++-- ...st_ls_workspace_items_success[ls-Map].yaml | 350 +++-- .../test_commands/test_mv/class_setup.yaml | 48 +- .../test_mv_item_to_item_success[Map].yaml | 538 ++++---- ..._within_workspace_rename_success[Map].yaml | 392 +++--- .../test_commands/test_rm/class_setup.yaml | 79 +- ...out_force_success[DigitalTwinBuilder].yaml | 200 +-- 11 files changed, 2256 insertions(+), 1654 deletions(-) diff --git a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml index 3c1970a26..47501183a 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2016' + - '2096' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:00:35 GMT + - Tue, 14 Apr 2026 12:51:42 GMT Pragma: - no-cache RequestId: - - b4dfe6ec-0243-401c-87bc-fc9731e305f3 + - 93ee9a51-3115-481d-acde-faddb0aa10d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2016' + - '2096' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:00:35 GMT + - Tue, 14 Apr 2026 12:51:43 GMT Pragma: - no-cache RequestId: - - f4b8e373-d9c3-4c33-a5ff-bfc29d530635 + - c6ee49e1-cf22-4bce-bbcc-3b26ae6b7b3c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '424' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:00:40 GMT + - Tue, 14 Apr 2026 12:51:48 GMT Pragma: - no-cache RequestId: - - 84028db2-a8f7-4857-9d61-d475e6a56ab5 + - 53249403-f634-4171-befe-bfbf456c1d40 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (exists; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,13 +181,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:00:49 GMT + - Tue, 14 Apr 2026 12:51:57 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/94e5a45a-1398-4d65-a653-a68d2ca73e45 + - https://api.fabric.microsoft.com/v1/workspaces/dd4a3840-6092-4010-b29b-05668197a9f5 Pragma: - no-cache RequestId: - - 6b6bb6b0-5981-465a-8b31-17453914c827 + - aac25944-6deb-44e9-aaf6-7a07526cd8c1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -219,7 +219,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2051' + - '2130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:08:36 GMT + - Tue, 14 Apr 2026 12:55:02 GMT Pragma: - no-cache RequestId: - - c208830f-8031-406e-b231-71eb3ac98f85 + - 811909ce-899e-45e9-9476-971c54347ac9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -266,7 +266,7 @@ interactions: User-Agent: - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/94e5a45a-1398-4d65-a653-a68d2ca73e45/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd4a3840-6092-4010-b29b-05668197a9f5/items response: body: string: '{"value": []}' @@ -282,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:08:37 GMT + - Tue, 14 Apr 2026 12:55:02 GMT Pragma: - no-cache RequestId: - - a26be6e4-cff3-4255-977f-93c58b986a82 + - 26b2d0e1-5e2c-4eab-bc84-4d6c07cea88f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +316,7 @@ interactions: User-Agent: - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/94e5a45a-1398-4d65-a653-a68d2ca73e45 + uri: https://api.fabric.microsoft.com/v1/workspaces/dd4a3840-6092-4010-b29b-05668197a9f5 response: body: string: '' @@ -332,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:08:38 GMT + - Tue, 14 Apr 2026 12:55:04 GMT Pragma: - no-cache RequestId: - - cae248c9-81dc-471f-a0a6-dca9ad1b190a + - 7a9f9bfc-f549-4b47-a1f5-eb70e9a7ef81 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml index 51dee79af..597ec57b1 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml @@ -17,7 +17,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2051' + - '2130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:15 GMT + - Tue, 14 Apr 2026 12:51:58 GMT Pragma: - no-cache RequestId: - - 1ae963ae-f809-4898-baa0-0d482ce194d3 + - 8d19e056-a587-4a50-995a-ba18a72ab84f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -68,7 +68,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -79,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2051' + - '2130' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:16 GMT + - Tue, 14 Apr 2026 12:52:00 GMT Pragma: - no-cache RequestId: - - 955fb552-dfb0-4844-a2f3-9145a5db7c57 + - 629668fe-72a9-4dc2-9e89-fd4d33602957 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -133,11 +133,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:20 GMT + - Tue, 14 Apr 2026 12:52:04 GMT Pragma: - no-cache RequestId: - - 156caac8-88bb-471b-9083-fd992728057d + - 8a39cf43-6a9e-4761-8ef2-2cbf9d34c59f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -171,7 +171,7 @@ interactions: uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + string: '{"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:27 GMT + - Tue, 14 Apr 2026 12:52:13 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b + - https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64 Pragma: - no-cache RequestId: - - 337130ee-2517-461c-b071-eadb15b28103 + - 1ef3024d-91a1-4362-a31a-5f203f9258ae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -223,10 +223,10 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -236,15 +236,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2089' + - '2169' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:27 GMT + - Tue, 14 Apr 2026 12:52:14 GMT Pragma: - no-cache RequestId: - - 7d5f3ae0-6e07-460e-a09e-91685c6a174a + - 63e57f1d-b884-48a9-8d3c-e068b021509b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -276,10 +276,10 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -289,15 +289,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2089' + - '2169' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:27 GMT + - Tue, 14 Apr 2026 12:52:14 GMT Pragma: - no-cache RequestId: - - c1d7078d-d85e-4c38-bf0c-6b13d34b9e99 + - cd2e8f7f-8a7f-48e4-94c6-142c36d53b4c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -339,15 +339,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '429' + - '424' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:32 GMT + - Tue, 14 Apr 2026 12:52:19 GMT Pragma: - no-cache RequestId: - - e80af7c2-cd7d-4a14-a384-736fbdf7d8cc + - 85532e2d-f61e-44c3-b6cb-33219be8d3c5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -381,7 +381,7 @@ interactions: uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + string: '{"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -395,13 +395,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:39 GMT + - Tue, 14 Apr 2026 12:52:27 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0 + - https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491 Pragma: - no-cache RequestId: - - aef5dd01-ce2e-4614-8bfd-4ef4c76aa0fa + - c2a53db5-25aa-4b95-b349-a602aed075a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -433,12 +433,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -448,15 +448,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:40 GMT + - Tue, 14 Apr 2026 12:52:29 GMT Pragma: - no-cache RequestId: - - c6fb4423-0bab-4c2f-9fd0-c27a2f8d75ec + - b432ac7a-811e-4dae-935c-e1b781cad75b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -484,7 +484,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: string: '{"value": []}' @@ -500,11 +500,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:40 GMT + - Tue, 14 Apr 2026 12:52:29 GMT Pragma: - no-cache RequestId: - - 072a16e5-51cc-4b99-aaff-3192a04bd06f + - c31e3c85-e2a4-45e9-b5cb-ff1fafd58ac2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -532,7 +532,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: string: '{"value": []}' @@ -548,11 +548,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:40 GMT + - Tue, 14 Apr 2026 12:52:30 GMT Pragma: - no-cache RequestId: - - 5ce33c8a-50b6-4a7c-a811-08056114ea51 + - 43f730c8-18a4-4697-af02-3d6aaebe9f34 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -582,11 +582,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders response: body: - string: '{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": "fabcli000003", - "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}' + string: '{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": "fabcli000003", + "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -599,13 +599,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:41 GMT + - Tue, 14 Apr 2026 12:52:30 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders/e50835e0-0a02-44d2-a532-ea0f468af440 + - https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders/0525ad50-e192-404e-91d4-54bb4c353412 Pragma: - no-cache RequestId: - - 913242dc-1669-4234-a20d-7e72a5f03842 + - a40de048-2f75-4b1e-83b8-ef2dcca2a1e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -637,12 +637,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -652,15 +652,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:42 GMT + - Tue, 14 Apr 2026 12:52:32 GMT Pragma: - no-cache RequestId: - - 32166542-4499-4e7a-a80c-5b34c9fe3217 + - b4ca49b2-f2f8-47ff-bd40-2c4540d4a852 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -688,11 +688,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -705,11 +705,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:43 GMT + - Tue, 14 Apr 2026 12:52:32 GMT Pragma: - no-cache RequestId: - - 88df75f7-22aa-47f0-9010-806efcb54ae5 + - 9e300b03-f8b1-4adb-bc65-50bc1fb22168 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -737,7 +737,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items response: body: string: '{"value": []}' @@ -753,11 +753,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:43 GMT + - Tue, 14 Apr 2026 12:52:33 GMT Pragma: - no-cache RequestId: - - 888cb90f-2230-4545-9498-2e6d01b88dd1 + - 8b31692a-5e4d-4f6c-b582-a48df099ec30 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -785,7 +785,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items response: body: string: '{"value": []}' @@ -801,11 +801,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:44 GMT + - Tue, 14 Apr 2026 12:52:34 GMT Pragma: - no-cache RequestId: - - c1d82364-9dcd-4bee-9d84-efc2c35f5e59 + - 8a1a8081-811d-4f25-877b-1bedc266834e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -821,7 +821,7 @@ interactions: message: OK - request: body: '{"description": "Created by fab", "displayName": "fabcli000004", "type": - "DigitalTwinBuilder", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}' + "DigitalTwinBuilder", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}' headers: Accept: - '*/*' @@ -836,7 +836,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/digitalTwinBuilders response: body: string: 'null' @@ -852,15 +852,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:03:46 GMT + - Tue, 14 Apr 2026 12:52:36 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/516b0575-cf8e-4406-83f0-e695debdbf2c + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ac1e5-3304-44bf-b7de-0d668ef3069e Pragma: - no-cache RequestId: - - a77da350-e0e7-4a67-aa37-dcae0ad7315a + - 3f30de8f-1d0b-4eab-8e4b-b42e452a5cc4 Retry-After: - '20' Strict-Transport-Security: @@ -874,7 +874,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 516b0575-cf8e-4406-83f0-e695debdbf2c + - c33ac1e5-3304-44bf-b7de-0d668ef3069e status: code: 202 message: Accepted @@ -892,11 +892,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/516b0575-cf8e-4406-83f0-e695debdbf2c + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ac1e5-3304-44bf-b7de-0d668ef3069e response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:03:45.2858797", - "lastUpdatedTimeUtc": "2026-03-31T09:03:53.7801327", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:52:35.2903449", + "lastUpdatedTimeUtc": "2026-04-14T12:52:43.3221302", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -906,17 +906,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:07 GMT + - Tue, 14 Apr 2026 12:52:57 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/516b0575-cf8e-4406-83f0-e695debdbf2c/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ac1e5-3304-44bf-b7de-0d668ef3069e/result Pragma: - no-cache RequestId: - - 0297becb-68e7-429f-87c7-01adca493d96 + - c990c2a8-3d0a-4382-8db5-e8fa7bc06b01 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -924,7 +924,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 516b0575-cf8e-4406-83f0-e695debdbf2c + - c33ac1e5-3304-44bf-b7de-0d668ef3069e status: code: 200 message: OK @@ -942,12 +942,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/516b0575-cf8e-4406-83f0-e695debdbf2c/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ac1e5-3304-44bf-b7de-0d668ef3069e/result response: body: - string: '{"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", "type": "DigitalTwinBuilder", + string: '{"id": "d6121b05-e186-424a-97f3-72999e258035", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}' + "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}' headers: Access-Control-Expose-Headers: - RequestId @@ -958,11 +958,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 31 Mar 2026 09:04:08 GMT + - Tue, 14 Apr 2026 12:52:58 GMT Pragma: - no-cache RequestId: - - 968b1232-eac8-4f23-96a9-48cf17b8e7c7 + - 9c2e303b-e533-49e9-b42c-926c06c56d36 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -992,12 +992,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1007,15 +1007,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:10 GMT + - Tue, 14 Apr 2026 12:52:58 GMT Pragma: - no-cache RequestId: - - 4a5c11f2-5877-48b2-9de3-286c7eacabde + - ed052412-f59a-4de2-9799-9c4c4380cc5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1043,11 +1043,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1060,11 +1060,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:10 GMT + - Tue, 14 Apr 2026 12:52:58 GMT Pragma: - no-cache RequestId: - - dde24baa-8fc5-45fe-96d9-e56517d157bf + - ce9c402f-ad98-4d69-ac63-872ef6775546 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1096,12 +1096,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1111,15 +1111,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:10 GMT + - Tue, 14 Apr 2026 12:53:00 GMT Pragma: - no-cache RequestId: - - 002737c4-9724-4f27-b5d7-c0d2c10c62ac + - 0b110345-6566-4430-9e09-b80b9c8bc5b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1151,12 +1151,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1166,15 +1166,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:11 GMT + - Tue, 14 Apr 2026 12:53:01 GMT Pragma: - no-cache RequestId: - - 115830e9-578e-4881-a5fc-c1d9f6967fbf + - 46892677-d6a2-4e69-a38a-4987cefaec58 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1202,7 +1202,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True response: body: string: '{"value": []}' @@ -1218,11 +1218,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:14 GMT + - Tue, 14 Apr 2026 12:53:01 GMT Pragma: - no-cache RequestId: - - 47b0b9f4-97c9-4d11-908f-2e790c7508f7 + - 7186c6f0-4334-44b0-bb3b-f459d4344554 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1250,7 +1250,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True response: body: string: '{"value": []}' @@ -1266,11 +1266,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:14 GMT + - Tue, 14 Apr 2026 12:53:03 GMT Pragma: - no-cache RequestId: - - 0d6fe10e-992e-46c4-ad48-46ebd0cb454b + - c08d171e-f3aa-4478-bd34-39fb98e671dd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1300,11 +1300,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders response: body: - string: '{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": "fabcli000003", - "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}' + string: '{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": "fabcli000003", + "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1313,17 +1313,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:15 GMT + - Tue, 14 Apr 2026 12:53:04 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders/29edfe5d-2718-4c5d-8703-d85d9c90c67e + - https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders/f7f26ce6-e87f-4927-86d1-a2d6b51ec57d Pragma: - no-cache RequestId: - - 9051bed3-23ac-4531-b487-5ede9bde5a01 + - 4f76adc6-b23f-4a49-8a37-d1d2f43225f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1351,20 +1351,20 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items response: body: - string: '{"value": [{"id": "bbb9cbfc-8c54-482b-abbf-7e5bdbee578d", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", - "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", + string: '{"value": [{"id": "2a48c76c-edb0-4779-807b-009b9a985031", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", + "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "d6121b05-e186-424a-97f3-72999e258035", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": - "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "718468e4-31f2-49bf-8e4a-7167550e03cd", + "Created by fab", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": + "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "b39f9fda-5cc2-4af5-8503-0148852f2669", "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, - {"id": "33a0670c-0aee-490b-a1d8-7b81229a7d0b", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", - "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}]}' + "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, + {"id": "03f4bcf6-f6fc-434d-abce-228e1e5d6045", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", + "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1373,15 +1373,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '344' + - '347' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:17 GMT + - Tue, 14 Apr 2026 12:53:04 GMT Pragma: - no-cache RequestId: - - f3d2a107-8a20-46fb-99ad-b57d2a595a86 + - c9a112ca-8626-43c8-818f-9694f3b8c256 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1409,11 +1409,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1426,11 +1426,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:18 GMT + - Tue, 14 Apr 2026 12:53:04 GMT Pragma: - no-cache RequestId: - - a7ff5631-e2dd-4603-a3d2-c69f7b213781 + - fdd5af87-5952-4ce5-a86d-b92fa1d96f09 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1458,11 +1458,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1475,11 +1475,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:18 GMT + - Tue, 14 Apr 2026 12:53:05 GMT Pragma: - no-cache RequestId: - - a6c6b943-0956-455b-b12f-5dc676e84d8c + - e0680a38-b924-4228-aca4-f251ceb9f1b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1507,11 +1507,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1524,11 +1524,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:18 GMT + - Tue, 14 Apr 2026 12:53:06 GMT Pragma: - no-cache RequestId: - - 8a0e91a1-bcf2-4e45-ab75-8e2435c07424 + - e2f1e298-7b9f-4a04-bd75-dfca70a849b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1556,11 +1556,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1573,11 +1573,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:19 GMT + - Tue, 14 Apr 2026 12:53:06 GMT Pragma: - no-cache RequestId: - - 0523d5d2-ccea-407b-bbd5-d621410edac6 + - 7f88ecda-f838-42fc-8dc5-0c3a8d05a0b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1605,11 +1605,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1622,11 +1622,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:20 GMT + - Tue, 14 Apr 2026 12:53:06 GMT Pragma: - no-cache RequestId: - - 82347306-9ae7-4896-bcd1-93c6394547d9 + - a8a2537b-40f0-45d6-8ca5-481f59ce8fc4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1654,20 +1654,20 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items response: body: - string: '{"value": [{"id": "bbb9cbfc-8c54-482b-abbf-7e5bdbee578d", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", - "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", + string: '{"value": [{"id": "2a48c76c-edb0-4779-807b-009b9a985031", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", + "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "d6121b05-e186-424a-97f3-72999e258035", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": - "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "718468e4-31f2-49bf-8e4a-7167550e03cd", + "Created by fab", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": + "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "b39f9fda-5cc2-4af5-8503-0148852f2669", "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, - {"id": "33a0670c-0aee-490b-a1d8-7b81229a7d0b", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", - "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}]}' + "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, + {"id": "03f4bcf6-f6fc-434d-abce-228e1e5d6045", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", + "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1676,15 +1676,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '344' + - '347' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:20 GMT + - Tue, 14 Apr 2026 12:53:08 GMT Pragma: - no-cache RequestId: - - 94166b97-d01b-42f3-bde7-e1dcbf031c24 + - e5c2bb77-9f25-4b53-adba-438639e3b172 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1712,11 +1712,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1729,11 +1729,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:21 GMT + - Tue, 14 Apr 2026 12:53:09 GMT Pragma: - no-cache RequestId: - - 45d0acae-5f14-4e03-885c-d3c6c1a5cb28 + - 7245bec7-e791-45ac-bf8b-28ba86511f36 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1761,11 +1761,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1778,11 +1778,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:04:21 GMT + - Tue, 14 Apr 2026 12:53:10 GMT Pragma: - no-cache RequestId: - - 05037cd0-37b7-45f7-8753-1cdf4aa72cd4 + - 634fb72d-d67f-4f8c-a129-5c8d35b7d509 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1810,51 +1810,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"requestId": "a27b60ba-5d83-47fa-86f8-ef457a590589", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 3/31/2026 9:05:10 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '189' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:04:22 GMT - RequestId: - - a27b60ba-5d83-47fa-86f8-ef457a590589 - Retry-After: - - '48' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True - response: - body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1867,11 +1827,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:11 GMT + - Tue, 14 Apr 2026 12:53:11 GMT Pragma: - no-cache RequestId: - - 84820305-a63b-4179-8a89-27f99190e5c7 + - f7d38bb7-ff06-4a30-806a-cd0c75d70d3d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1899,11 +1859,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1916,11 +1876,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:12 GMT + - Tue, 14 Apr 2026 12:53:11 GMT Pragma: - no-cache RequestId: - - 7d4462c0-0842-4f2f-93ae-65fb54f99bab + - a591763d-2fce-4981-a0a8-de4faef84686 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1948,11 +1908,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1965,11 +1925,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:13 GMT + - Tue, 14 Apr 2026 12:53:11 GMT Pragma: - no-cache RequestId: - - f903a405-f781-4c1e-9720-2319d3d88961 + - 1e070128-2ff8-4712-8786-eebe5d4320fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2001,12 +1961,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -2016,15 +1976,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:13 GMT + - Tue, 14 Apr 2026 12:53:13 GMT Pragma: - no-cache RequestId: - - d5a415bc-487c-46fb-b9ec-e6350b48ac01 + - 5f32836e-ebba-40dc-b8d1-9ab8966a3129 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2052,11 +2012,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True response: body: - string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": - "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": + "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2065,15 +2025,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:13 GMT + - Tue, 14 Apr 2026 12:53:12 GMT Pragma: - no-cache RequestId: - - 1dc28ac9-2b21-4cb6-84de-9ec5b7bfeb2b + - 0cd5cdff-7cd5-41ad-8159-ee4ee01f2e7b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2101,7 +2061,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items response: body: string: '{"value": []}' @@ -2117,11 +2077,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:15 GMT + - Tue, 14 Apr 2026 12:53:13 GMT Pragma: - no-cache RequestId: - - ca5a1d77-5553-461b-9cbc-2a0f42ac431b + - 4584acf2-d4f6-40d0-a38c-b4bf22c673b6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2149,7 +2109,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items response: body: string: '{"value": []}' @@ -2165,11 +2125,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:16 GMT + - Tue, 14 Apr 2026 12:53:14 GMT Pragma: - no-cache RequestId: - - bfc429f3-92d4-4df5-8d6a-1d5e97c79f33 + - 963d4597-6e6b-4509-8279-025ad4100c68 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2197,7 +2157,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items response: body: string: '{"value": []}' @@ -2213,11 +2173,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:16 GMT + - Tue, 14 Apr 2026 12:53:15 GMT Pragma: - no-cache RequestId: - - 630a696d-1e92-473a-9c4d-e97bdf9ad5df + - d1c7292f-517f-400a-8bdd-c3a51269d554 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2245,12 +2205,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items/9842a820-e4c7-4545-87ed-7af37ece34dc + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items/d6121b05-e186-424a-97f3-72999e258035 response: body: - string: '{"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", "type": "DigitalTwinBuilder", + string: '{"id": "d6121b05-e186-424a-97f3-72999e258035", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}' + "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -2259,17 +2219,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '208' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:17 GMT + - Tue, 14 Apr 2026 12:53:15 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f7ac4fe8-1a74-4464-bd67-46333e9173da + - 0962bc37-18b4-4af3-b35c-f467d26d89f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2299,7 +2259,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items/9842a820-e4c7-4545-87ed-7af37ece34dc/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items/d6121b05-e186-424a-97f3-72999e258035/getDefinition response: body: string: 'null' @@ -2315,13 +2275,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:19 GMT + - Tue, 14 Apr 2026 12:53:17 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e88e81-22b7-463a-98e4-15ca2e1e3c5f + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f Pragma: - no-cache RequestId: - - 899a80c6-b10b-45d5-96d3-2a01bb7e11fa + - 4c72efb5-e4e1-4893-85c0-a4233ca27c92 Retry-After: - '20' Strict-Transport-Security: @@ -2335,7 +2295,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 65e88e81-22b7-463a-98e4-15ca2e1e3c5f + - f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f status: code: 202 message: Accepted @@ -2353,11 +2313,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e88e81-22b7-463a-98e4-15ca2e1e3c5f + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:05:19.7406771", - "lastUpdatedTimeUtc": "2026-03-31T09:05:20.7545996", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:53:17.2093882", + "lastUpdatedTimeUtc": "2026-04-14T12:53:18.2054182", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2371,13 +2331,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:40 GMT + - Tue, 14 Apr 2026 12:53:38 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e88e81-22b7-463a-98e4-15ca2e1e3c5f/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f/result Pragma: - no-cache RequestId: - - 3893a2ff-cfb6-4cd4-8a9e-1da5e70253b9 + - c366cc21-e8c2-4f16-be53-b6c051400851 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2385,7 +2345,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 65e88e81-22b7-463a-98e4-15ca2e1e3c5f + - f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f status: code: 200 message: OK @@ -2403,10 +2363,10 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e88e81-22b7-463a-98e4-15ca2e1e3c5f/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f/result response: body: - string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiNzE4NDY4ZTQtMzFmMi00OWJmLThlNGEtNzE2NzU1MGUwM2NkIg0KfQ==", + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiYjM5ZjlmZGEtNWNjMi00YWY1LTg1MDMtMDE0ODg1MmYyNjY5Ig0KfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: @@ -2419,11 +2379,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 31 Mar 2026 09:05:40 GMT + - Tue, 14 Apr 2026 12:53:39 GMT Pragma: - no-cache RequestId: - - 79cf1703-093b-4455-b142-78e4dcb2c834 + - 779f39ba-da7f-4c4b-8e33-bdb520a73689 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2438,9 +2398,9 @@ interactions: - request: body: '{"type": "DigitalTwinBuilder", "description": "Created by fab", "displayName": "fabcli000004", "definition": {"parts": [{"path": "definition.json", "payload": - "ew0KICAiTGFrZWhvdXNlSWQiOiAiNzE4NDY4ZTQtMzFmMi00OWJmLThlNGEtNzE2NzU1MGUwM2NkIg0KfQ==", + "ew0KICAiTGFrZWhvdXNlSWQiOiAiYjM5ZjlmZGEtNWNjMi00YWY1LTg1MDMtMDE0ODg1MmYyNjY5Ig0KfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": "29edfe5d-2718-4c5d-8703-d85d9c90c67e"}' + "payloadType": "InlineBase64"}]}, "folderId": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d"}' headers: Accept: - '*/*' @@ -2455,7 +2415,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items response: body: string: 'null' @@ -2471,15 +2431,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:05:44 GMT + - Tue, 14 Apr 2026 12:53:43 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca Pragma: - no-cache RequestId: - - 215a755b-9420-4b5f-b04c-0a43f3158d74 + - 7ee22881-5fe3-46dd-ae30-6ef0b8fc1090 Retry-After: - '20' Strict-Transport-Security: @@ -2493,7 +2453,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + - 58f3c37e-1854-46fa-86d6-561564144eca status: code: 202 message: Accepted @@ -2511,11 +2471,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca response: body: - string: '{"status": "Running", "createdTimeUtc": "2026-03-31T09:05:42.9707624", - "lastUpdatedTimeUtc": "2026-03-31T09:05:42.9707624", "percentComplete": null, + string: '{"status": "Running", "createdTimeUtc": "2026-04-14T12:53:42.256408", + "lastUpdatedTimeUtc": "2026-04-14T12:53:42.256408", "percentComplete": null, "error": null}' headers: Access-Control-Expose-Headers: @@ -2525,17 +2485,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '123' + - '122' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:04 GMT + - Tue, 14 Apr 2026 12:54:04 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca Pragma: - no-cache RequestId: - - 846d86a3-6fce-4d18-98f5-517fe20cfb78 + - 5c2442f6-8ba4-4950-a1e3-1d520278baf2 Retry-After: - '20' Strict-Transport-Security: @@ -2545,7 +2505,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + - 58f3c37e-1854-46fa-86d6-561564144eca status: code: 200 message: OK @@ -2563,11 +2523,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:05:42.9707624", - "lastUpdatedTimeUtc": "2026-03-31T09:06:13.5972522", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:53:42.256408", + "lastUpdatedTimeUtc": "2026-04-14T12:54:13.0928411", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2577,17 +2537,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:26 GMT + - Tue, 14 Apr 2026 12:54:25 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca/result Pragma: - no-cache RequestId: - - e11b71c3-73f0-408f-b177-0cf3a8bd97fa + - 43f591c1-bd24-4d45-b6ae-25c8d6b43df3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2595,7 +2555,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2 + - 58f3c37e-1854-46fa-86d6-561564144eca status: code: 200 message: OK @@ -2613,12 +2573,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ffef10f4-8dda-4ef3-a6e6-303fb70ce5e2/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca/result response: body: - string: '{"id": "06001523-6a1c-4325-a94d-15b2f883e484", "type": "DigitalTwinBuilder", + string: '{"id": "9cf6bf01-0f07-42a5-92b1-22808e732c50", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "31711a15-0d9b-419e-aeb7-8bce150293e0", "folderId": "29edfe5d-2718-4c5d-8703-d85d9c90c67e"}' + "d9cad26d-d6b7-426c-81db-5271f6008491", "folderId": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2629,11 +2589,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 31 Mar 2026 09:06:27 GMT + - Tue, 14 Apr 2026 12:54:26 GMT Pragma: - no-cache RequestId: - - b037555d-772e-4a7f-a850-d22e291bd7a3 + - 1c946eaf-eab4-4c77-9c65-e8d7aadfd608 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2659,20 +2619,20 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items response: body: - string: '{"value": [{"id": "bbb9cbfc-8c54-482b-abbf-7e5bdbee578d", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", - "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", + string: '{"value": [{"id": "2a48c76c-edb0-4779-807b-009b9a985031", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", + "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "d6121b05-e186-424a-97f3-72999e258035", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": - "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "718468e4-31f2-49bf-8e4a-7167550e03cd", + "Created by fab", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": + "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "b39f9fda-5cc2-4af5-8503-0148852f2669", "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, - {"id": "33a0670c-0aee-490b-a1d8-7b81229a7d0b", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", - "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}]}' + "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, + {"id": "03f4bcf6-f6fc-434d-abce-228e1e5d6045", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", + "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2681,15 +2641,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '344' + - '347' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:27 GMT + - Tue, 14 Apr 2026 12:54:28 GMT Pragma: - no-cache RequestId: - - 0683b9e3-0ba9-4cc7-835f-3ca581625e78 + - a872a536-f2cd-4ec4-972b-2da7c116e2a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2717,11 +2677,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2734,11 +2694,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:29 GMT + - Tue, 14 Apr 2026 12:54:28 GMT Pragma: - no-cache RequestId: - - bf2a4acb-3283-4a6b-8def-4b0dc6076186 + - d343eac4-6290-4c47-ad52-87db10903d38 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2766,11 +2726,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2783,11 +2743,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:30 GMT + - Tue, 14 Apr 2026 12:54:30 GMT Pragma: - no-cache RequestId: - - 051b9974-8f7a-47f5-aa1f-36775adadc74 + - 7e15bb7a-e151-400e-ad62-f55588708e67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2815,11 +2775,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2832,11 +2792,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:31 GMT + - Tue, 14 Apr 2026 12:54:30 GMT Pragma: - no-cache RequestId: - - 83eef538-57ce-4053-b0e2-4ca16a2b4f1e + - ef255cec-61b1-48e0-9d05-82e20b24d417 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2864,11 +2824,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2881,11 +2841,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:32 GMT + - Tue, 14 Apr 2026 12:54:31 GMT Pragma: - no-cache RequestId: - - d3085f69-350e-479c-80b4-4a6da1da32a2 + - 426c435d-926d-4afe-bcd3-ca1c4e9b684e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2913,11 +2873,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2930,11 +2890,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:33 GMT + - Tue, 14 Apr 2026 12:54:32 GMT Pragma: - no-cache RequestId: - - 58fae344-b460-4d90-94ed-069f91248417 + - 6d36ba01-4128-471d-8639-8d0fb904ac25 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2966,12 +2926,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -2981,15 +2941,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:33 GMT + - Tue, 14 Apr 2026 12:54:33 GMT Pragma: - no-cache RequestId: - - a2d85f8b-fb6a-4eed-8117-04ed869fd0d2 + - c4d113d9-99f6-4e4a-9ca7-53354837fac0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3017,12 +2977,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items response: body: - string: '{"value": [{"id": "06001523-6a1c-4325-a94d-15b2f883e484", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "9cf6bf01-0f07-42a5-92b1-22808e732c50", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "31711a15-0d9b-419e-aeb7-8bce150293e0", "folderId": "29edfe5d-2718-4c5d-8703-d85d9c90c67e"}]}' + "d9cad26d-d6b7-426c-81db-5271f6008491", "folderId": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3031,15 +2991,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '219' + - '217' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:35 GMT + - Tue, 14 Apr 2026 12:54:34 GMT Pragma: - no-cache RequestId: - - 804cebae-6d16-4c14-a0f2-ed68d2959068 + - 42f43d00-d0a2-4a60-9b71-79fd0be5ca22 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3067,11 +3027,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True response: body: - string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": - "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": + "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3080,15 +3040,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:35 GMT + - Tue, 14 Apr 2026 12:54:35 GMT Pragma: - no-cache RequestId: - - 7f7beaf9-5e8c-4c9b-b87a-df94faa38336 + - 55b56755-701d-4e42-936d-f38f3df7f80a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3116,11 +3076,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True response: body: - string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": - "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": + "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3129,15 +3089,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:36 GMT + - Tue, 14 Apr 2026 12:54:35 GMT Pragma: - no-cache RequestId: - - f9f6cc8e-a940-43e2-8c1c-a15c0f40f18c + - 0aaf1cf9-9c3c-4b02-b082-2f44156ab2b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3169,12 +3129,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3184,15 +3144,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:36 GMT + - Tue, 14 Apr 2026 12:54:37 GMT Pragma: - no-cache RequestId: - - 3b902e70-9496-4e5d-8bdf-90cfd04f3305 + - cdd4edf3-674c-44c4-8730-dc689f04c87b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3220,11 +3180,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True response: body: - string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": - "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": + "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3233,15 +3193,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:37 GMT + - Tue, 14 Apr 2026 12:54:37 GMT Pragma: - no-cache RequestId: - - 4a204b58-443b-41d6-85aa-cbb28461b15b + - e3d10656-6ca6-4bb1-a63d-f73dc98ad586 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3269,12 +3229,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items response: body: - string: '{"value": [{"id": "06001523-6a1c-4325-a94d-15b2f883e484", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "9cf6bf01-0f07-42a5-92b1-22808e732c50", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "31711a15-0d9b-419e-aeb7-8bce150293e0", "folderId": "29edfe5d-2718-4c5d-8703-d85d9c90c67e"}]}' + "d9cad26d-d6b7-426c-81db-5271f6008491", "folderId": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3283,15 +3243,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '219' + - '217' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:38 GMT + - Tue, 14 Apr 2026 12:54:38 GMT Pragma: - no-cache RequestId: - - 7799419e-45ce-45ca-b5e0-dfc7727db71d + - 6dfa58a5-0c47-4104-8f4b-9bf00c75e759 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3319,11 +3279,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True response: body: - string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": - "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": + "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3332,15 +3292,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:39 GMT + - Tue, 14 Apr 2026 12:54:39 GMT Pragma: - no-cache RequestId: - - 8d3796a8-b13e-4fc6-b50a-801b7038f8a6 + - 6170ee41-8931-45f4-b062-5674f38226cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3368,11 +3328,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True response: body: - string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": - "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": + "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3381,15 +3341,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:40 GMT + - Tue, 14 Apr 2026 12:54:40 GMT Pragma: - no-cache RequestId: - - d4cbf1f8-8947-4795-a930-84c71e5a939b + - 9c038267-e863-450b-ad2b-5158e8d0828d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3421,12 +3381,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3436,15 +3396,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:06:40 GMT + - Tue, 14 Apr 2026 12:54:41 GMT Pragma: - no-cache RequestId: - - 0e2aad48-14e4-4805-986a-113c5d6445e4 + - f65c0e76-8f57-4c46-b8a4-cc17a094a9dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3472,51 +3432,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True response: body: - string: '{"requestId": "b10600d3-deb5-4c3d-ae49-a141c71ad391", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 3/31/2026 9:07:30 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '189' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:06:42 GMT - RequestId: - - b10600d3-deb5-4c3d-ae49-a141c71ad391 - Retry-After: - - '48' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True - response: - body: - string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": - "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": + "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3525,15 +3445,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:30 GMT + - Tue, 14 Apr 2026 12:54:41 GMT Pragma: - no-cache RequestId: - - 39657acc-b55d-42e4-be51-0ddc51e013e3 + - 38eb13d3-12a1-42f3-b311-8e4ce8bed1a8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3561,12 +3481,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items response: body: - string: '{"value": [{"id": "06001523-6a1c-4325-a94d-15b2f883e484", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "9cf6bf01-0f07-42a5-92b1-22808e732c50", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "31711a15-0d9b-419e-aeb7-8bce150293e0", "folderId": "29edfe5d-2718-4c5d-8703-d85d9c90c67e"}]}' + "d9cad26d-d6b7-426c-81db-5271f6008491", "folderId": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3575,15 +3495,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '219' + - '217' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:31 GMT + - Tue, 14 Apr 2026 12:54:42 GMT Pragma: - no-cache RequestId: - - e864c801-6ebb-4d48-9ccb-54c46c4925bd + - d46439fa-313a-4ff7-b056-4695f515bb9c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3611,11 +3531,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True response: body: - string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": - "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": + "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3624,15 +3544,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:32 GMT + - Tue, 14 Apr 2026 12:54:42 GMT Pragma: - no-cache RequestId: - - 52347c7e-eee9-4e81-a5b1-07a86e4d2a02 + - 92ff60dc-6bd3-44ed-92ac-6185e7497025 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3662,7 +3582,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items/06001523-6a1c-4325-a94d-15b2f883e484 + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items/9cf6bf01-0f07-42a5-92b1-22808e732c50 response: body: string: '' @@ -3678,11 +3598,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:07:33 GMT + - Tue, 14 Apr 2026 12:54:44 GMT Pragma: - no-cache RequestId: - - 540064bc-1db5-4b2f-abf1-a9c84b955fa3 + - 137b6fd8-adfa-4505-9948-b6a8cddfe1cf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3714,12 +3634,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3729,15 +3649,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:34 GMT + - Tue, 14 Apr 2026 12:54:45 GMT Pragma: - no-cache RequestId: - - 0f7b42fd-d588-4298-b78d-1d4de3ab8b9c + - b148481d-0732-441e-a3a7-e4d8353fffaa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3765,11 +3685,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True response: body: - string: '{"value": [{"id": "29edfe5d-2718-4c5d-8703-d85d9c90c67e", "displayName": - "fabcli000003", "workspaceId": "31711a15-0d9b-419e-aeb7-8bce150293e0"}]}' + string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": + "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3778,15 +3698,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:34 GMT + - Tue, 14 Apr 2026 12:54:46 GMT Pragma: - no-cache RequestId: - - 4913d096-e047-4338-bb2f-c4f4956b9f51 + - 92e80b56-dffd-437d-88ed-42db0bfc7d11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3816,7 +3736,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/folders/29edfe5d-2718-4c5d-8703-d85d9c90c67e + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders/f7f26ce6-e87f-4927-86d1-a2d6b51ec57d response: body: string: '' @@ -3832,11 +3752,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:07:35 GMT + - Tue, 14 Apr 2026 12:54:47 GMT Pragma: - no-cache RequestId: - - d061c517-aed7-424c-a643-e0cc40ac84d9 + - 48eebd71-eaab-4364-817b-faae8cf68fa3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3868,12 +3788,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3883,15 +3803,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:36 GMT + - Tue, 14 Apr 2026 12:54:48 GMT Pragma: - no-cache RequestId: - - 84924ec9-7d11-41bd-9e3c-64f0758a83ef + - 02ba24c4-ea3e-4f1a-9705-a9d0bbba0f62 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3919,11 +3839,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3936,11 +3856,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:37 GMT + - Tue, 14 Apr 2026 12:54:48 GMT Pragma: - no-cache RequestId: - - a64a79d4-4090-4a92-b8e0-8f3ccd551654 + - a681f967-6556-40cf-8465-5f56bf29909b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3968,20 +3888,20 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items response: body: - string: '{"value": [{"id": "bbb9cbfc-8c54-482b-abbf-7e5bdbee578d", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", - "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "9842a820-e4c7-4545-87ed-7af37ece34dc", + string: '{"value": [{"id": "2a48c76c-edb0-4779-807b-009b9a985031", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", + "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "d6121b05-e186-424a-97f3-72999e258035", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": - "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "718468e4-31f2-49bf-8e4a-7167550e03cd", + "Created by fab", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": + "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "b39f9fda-5cc2-4af5-8503-0148852f2669", "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, - {"id": "33a0670c-0aee-490b-a1d8-7b81229a7d0b", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", - "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}]}' + "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, + {"id": "03f4bcf6-f6fc-434d-abce-228e1e5d6045", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", + "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3990,15 +3910,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '344' + - '347' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:38 GMT + - Tue, 14 Apr 2026 12:54:49 GMT Pragma: - no-cache RequestId: - - 6de76967-2876-4fd0-ae1f-3ad2c90004ca + - 9f9053bc-16ad-4ca9-bb2b-5ceeadc90e5d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4026,11 +3946,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4043,11 +3963,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:38 GMT + - Tue, 14 Apr 2026 12:54:49 GMT Pragma: - no-cache RequestId: - - f1ec53dc-0da8-4b4b-8ee8-8f7dd8b36dc7 + - 1aa6ecc6-cecd-44e2-94ce-06f9bf3b98fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4075,11 +3995,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4092,11 +4012,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:39 GMT + - Tue, 14 Apr 2026 12:54:49 GMT Pragma: - no-cache RequestId: - - 8a61ab9f-f8ef-402f-9d75-d5b0a3b44c5a + - 82de6372-9013-4799-bfbd-7dd3bd19320c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4124,11 +4044,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4141,11 +4061,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:40 GMT + - Tue, 14 Apr 2026 12:54:50 GMT Pragma: - no-cache RequestId: - - 5b54a581-0d05-4aa7-a37a-6adbda437911 + - 58b1ee66-fd0a-4b59-8d0e-845e58e35141 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4173,11 +4093,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4190,11 +4110,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:41 GMT + - Tue, 14 Apr 2026 12:54:51 GMT Pragma: - no-cache RequestId: - - 64758e8a-f456-45bd-a65f-9a4db3dfed26 + - 0f75e7eb-610e-4be2-ae6b-2c2cb92de481 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4224,7 +4144,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items/9842a820-e4c7-4545-87ed-7af37ece34dc + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items/d6121b05-e186-424a-97f3-72999e258035 response: body: string: '' @@ -4240,11 +4160,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:07:41 GMT + - Tue, 14 Apr 2026 12:54:52 GMT Pragma: - no-cache RequestId: - - 563b133b-857f-4e59-91e5-03198ec5ff88 + - 1b6780d6-878d-499b-ba14-f6d9cf0cb9c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4276,12 +4196,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -4291,15 +4211,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:42 GMT + - Tue, 14 Apr 2026 12:54:53 GMT Pragma: - no-cache RequestId: - - b2b483d9-036b-4c5d-9297-ebb4375733d7 + - de941030-d5e7-4811-919e-dfa53b22e215 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4327,11 +4247,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4344,11 +4264,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:42 GMT + - Tue, 14 Apr 2026 12:54:54 GMT Pragma: - no-cache RequestId: - - 373b8d38-b89f-4a9c-9a78-0bbb1e6aa760 + - cbbd98f4-0855-4208-a392-7a7dc80f408a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4378,12 +4298,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders/e50835e0-0a02-44d2-a532-ea0f468af440 + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders/0525ad50-e192-404e-91d4-54bb4c353412 response: body: - string: '{"requestId": "76e7897d-e617-48b4-803d-6e74dd186ca1", "errorCode": + string: '{"requestId": "bf24d1e5-0275-4b83-ac1c-7982629e14f8", "errorCode": "FolderNotEmpty", "message": "The requested folder was not empty.", "relatedResource": - {"resourceId": "e50835e0-0a02-44d2-a532-ea0f468af440", "resourceType": "Folder"}}' + {"resourceId": "0525ad50-e192-404e-91d4-54bb4c353412", "resourceType": "Folder"}}' headers: Access-Control-Expose-Headers: - RequestId @@ -4392,11 +4312,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:44 GMT + - Tue, 14 Apr 2026 12:54:54 GMT Pragma: - no-cache RequestId: - - 76e7897d-e617-48b4-803d-6e74dd186ca1 + - bf24d1e5-0275-4b83-ac1c-7982629e14f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -4432,12 +4352,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "displayName": "fabcli000001", + {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -4447,15 +4367,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2125' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:45 GMT + - Tue, 14 Apr 2026 12:54:56 GMT Pragma: - no-cache RequestId: - - 3aac73ca-de52-48bb-a698-63a87ab94872 + - 602852fb-155e-4a1d-9e71-e73f57f2f939 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4483,14 +4403,14 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items response: body: - string: '{"value": [{"id": "bbb9cbfc-8c54-482b-abbf-7e5bdbee578d", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", - "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}, {"id": "718468e4-31f2-49bf-8e4a-7167550e03cd", + string: '{"value": [{"id": "2a48c76c-edb0-4779-807b-009b9a985031", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", + "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "b39f9fda-5cc2-4af5-8503-0148852f2669", "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b", "folderId": "e50835e0-0a02-44d2-a532-ea0f468af440"}]}' + "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4503,11 +4423,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:46 GMT + - Tue, 14 Apr 2026 12:54:55 GMT Pragma: - no-cache RequestId: - - 1acf9666-ca02-4836-9fed-432dbaf26bb2 + - deee9979-58f9-458f-bd83-9261e3506acd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4535,11 +4455,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4552,11 +4472,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:07:46 GMT + - Tue, 14 Apr 2026 12:54:56 GMT Pragma: - no-cache RequestId: - - b789f60d-d60c-4ee1-942a-5aad47db8f7e + - ef0e14e5-79b5-49d6-a8bb-7a83ad13f3a8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4584,51 +4504,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True - response: - body: - string: '{"requestId": "5da5e383-105a-4abf-b570-e452b549ec6f", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 3/31/2026 9:08:31 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '189' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:07:47 GMT - RequestId: - - 5da5e383-105a-4abf-b570-e452b549ec6f - Retry-After: - - '44' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True response: body: - string: '{"value": [{"id": "e50835e0-0a02-44d2-a532-ea0f468af440", "displayName": - "fabcli000003", "workspaceId": "a3e88a0a-27bd-4843-a30f-4b99f349231b"}]}' + string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": + "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4641,11 +4521,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:08:32 GMT + - Tue, 14 Apr 2026 12:54:56 GMT Pragma: - no-cache RequestId: - - f789ff48-4722-4870-85e6-3d8d7a983e10 + - ba4edbca-5258-46f2-99b7-0173c176798f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4675,7 +4555,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/a3e88a0a-27bd-4843-a30f-4b99f349231b + uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64 response: body: string: '' @@ -4691,11 +4571,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:08:32 GMT + - Tue, 14 Apr 2026 12:54:58 GMT Pragma: - no-cache RequestId: - - 4a22cfc2-bc4d-4bd9-b11d-b4ef6b374796 + - f97d7f7d-f93b-45f0-a4f8-c9b9aaa62f27 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4727,10 +4607,10 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", + "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "31711a15-0d9b-419e-aeb7-8bce150293e0", "displayName": "fabcli000002", + {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -4740,15 +4620,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2088' + - '2167' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:08:34 GMT + - Tue, 14 Apr 2026 12:54:59 GMT Pragma: - no-cache RequestId: - - 4f3c644a-756e-45f2-8a4b-9ca3447a806e + - f76f831a-d586-4fb8-9f93-df8938974278 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4776,7 +4656,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items response: body: string: '{"value": []}' @@ -4792,11 +4672,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:08:34 GMT + - Tue, 14 Apr 2026 12:55:00 GMT Pragma: - no-cache RequestId: - - e62525ef-6082-442d-a949-3fab569979ef + - 13ee337f-ca70-4746-94c1-5bfa0dd8522e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4826,7 +4706,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/31711a15-0d9b-419e-aeb7-8bce150293e0 + uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491 response: body: string: '' @@ -4842,11 +4722,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:08:35 GMT + - Tue, 14 Apr 2026 12:55:01 GMT Pragma: - no-cache RequestId: - - 16ba9a56-d5ff-4f10-8bd3-dd2fa7b13560 + - 682d9dc5-9826-4594-8d5f-c78dfc9bb8ca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml index f3e2f585b..5aebb62a3 100644 --- a/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_ls/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2016' + - '2132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:18:13 GMT + - Tue, 14 Apr 2026 12:42:25 GMT Pragma: - no-cache RequestId: - - 0fdd9005-0aef-45d8-a46b-4ca7ef19fb2f + - 2d5fee75-ea93-4e41-9537-631c4ae0a850 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2016' + - '2132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:18:14 GMT + - Tue, 14 Apr 2026 12:42:26 GMT Pragma: - no-cache RequestId: - - 95a7cf23-8b63-443b-a2d8-4027b7450d31 + - ae6aa884-0952-4fd9-93bd-bf51fc24fbee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '427' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:18:19 GMT + - Tue, 14 Apr 2026 12:42:30 GMT Pragma: - no-cache RequestId: - - 7761d9a4-89a6-410a-bda8-8b98d241f3a2 + - ebf1c950-48dc-4899-8a76-b1ff96eccecc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (get; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,13 +181,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:18:28 GMT + - Tue, 14 Apr 2026 12:42:37 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394 + - https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678 Pragma: - no-cache RequestId: - - 4f356575-432f-453d-ae5c-7518686556a4 + - 2cee1548-d387-47e6-98aa-8d77c9525e53 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (dir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (ls; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "948bd34e-8e3c-44cc-9879-8d3e3fa54394", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2053' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:21:30 GMT + - Tue, 14 Apr 2026 12:43:09 GMT Pragma: - no-cache RequestId: - - f3de0391-f025-4c19-bbf9-2d0415443c79 + - 5a0a8fcc-adb3-4d92-bcc0-71e0b9050cb4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,31 +264,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (dir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (ls; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "f737f665-ef30-44a8-b8e8-b6992434ec8a", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, - {"id": "f16f4cd1-8976-4bae-a902-dae7b27fa776", "type": "SQLEndpoint", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, - {"id": "6451357f-5a1d-49d8-9bcb-76bd62a949bc", "type": "SQLEndpoint", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, - {"id": "862bdc78-cffc-4b0e-9b93-155d898eafea", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, - {"id": "b9715c66-4249-4d50-8729-995d10cf799b", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, - {"id": "230c3fb5-2f7f-4db7-9e70-3abf5e8d239d", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, - {"id": "ca4751f5-c64f-4d24-9116-2b9ea51b3490", "type": "Lakehouse", "displayName": - "fabcli000002dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, - {"id": "22e81d9b-8630-45ed-8c1b-3195858c8117", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, - {"id": "d0173c77-ae2d-4d9a-9bdf-414136a60a98", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}, - {"id": "a2d25b5b-4f99-425e-8f4c-ff11742c26f2", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "948bd34e-8e3c-44cc-9879-8d3e3fa54394"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -297,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '465' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:21:31 GMT + - Tue, 14 Apr 2026 12:43:10 GMT Pragma: - no-cache RequestId: - - 98cf886d-d22e-4888-ae88-88ea732344f3 + - ad52aaaa-a20e-44ab-8fe8-1c0b531129ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -333,9 +314,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (dir; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (ls; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/948bd34e-8e3c-44cc-9879-8d3e3fa54394 + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678 response: body: string: '' @@ -351,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:21:32 GMT + - Tue, 14 Apr 2026 12:43:11 GMT Pragma: - no-cache RequestId: - - 381d829c-38c4-4e4b-ada4-9ee156187cc7 + - 72dd1f3e-dfcc-46a8-b7cc-30c72b0cb473 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[Map].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[Map].yaml index 1765b8f75..c65f3be60 100644 --- a/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[Map].yaml +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_query_filter_success[Map].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:00 GMT + - Tue, 14 Apr 2026 12:42:37 GMT Pragma: - no-cache RequestId: - - 4cda0749-5a55-410a-98e2-321e15516cab + - d52da93d-8f83-44e5-b3cf-a82630d1ecd4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: string: '{"value": []}' @@ -80,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:03 GMT + - Tue, 14 Apr 2026 12:42:38 GMT Pragma: - no-cache RequestId: - - 33fbd848-65d7-4b42-966b-fe80f73397e9 + - 355b25c3-d008-47e0-afaf-c1522a4f83d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: string: '{"value": []}' @@ -128,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:04 GMT + - Tue, 14 Apr 2026 12:42:39 GMT Pragma: - no-cache RequestId: - - cd60cff5-7cc3-4e37-b0a6-850fe2475a77 + - 20cc998b-544c-49eb-8f11-45ae3a70ab6e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,13 +161,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/maps + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/maps response: body: - string: '{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}' + string: '{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -180,13 +180,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:08 GMT + - Tue, 14 Apr 2026 12:42:42 GMT ETag: - '""' Pragma: - no-cache RequestId: - - fcdd1a19-1fe0-4034-90ef-526f0ac34e64 + - b706f1da-f42b-4e91-959e-175ed5dd40eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,13 +212,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -229,15 +229,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:09 GMT + - Tue, 14 Apr 2026 12:42:43 GMT Pragma: - no-cache RequestId: - - 94b62e92-0c49-4bc5-bc4b-70c7c16daa69 + - b79a7aa4-77a6-4e23-8f68-e4ecbf7b69ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -263,14 +263,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -279,15 +279,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:10 GMT + - Tue, 14 Apr 2026 12:42:43 GMT Pragma: - no-cache RequestId: - - 2a7da867-386a-4f56-becb-b2650e2cf428 + - d5c21dc3-f331-4854-a37f-fde653eb7a9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -313,14 +313,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -329,15 +329,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:11 GMT + - Tue, 14 Apr 2026 12:42:45 GMT Pragma: - no-cache RequestId: - - 0d27dd83-1f6a-4292-95be-6689ce789c12 + - 47d882be-2d87-4521-8580-8795196d74aa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,13 +366,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/maps + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/maps response: body: - string: '{"id": "c6ff55e8-1c51-4773-8f6e-8ce54a29d31d", "type": "Map", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}' + string: '{"id": "a8fe9d5d-79f0-4339-86b3-cf44b576d70e", "type": "Map", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -385,13 +385,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:13 GMT + - Tue, 14 Apr 2026 12:42:47 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b90daf5a-88cc-47cc-851c-9e7ee4c9b36a + - d9f9cf4f-d144-4bbc-bcff-d78b16720e92 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -417,13 +417,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -434,15 +434,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:14 GMT + - Tue, 14 Apr 2026 12:42:47 GMT Pragma: - no-cache RequestId: - - c3995212-6256-43b6-be76-4358d402ca21 + - eb591ea2-c226-49f1-8d3c-d655d5d8cb08 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -468,16 +468,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "c6ff55e8-1c51-4773-8f6e-8ce54a29d31d", + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "a8fe9d5d-79f0-4339-86b3-cf44b576d70e", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -490,11 +490,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:15 GMT + - Tue, 14 Apr 2026 12:42:49 GMT Pragma: - no-cache RequestId: - - 4ca9dfd8-78ff-4b2b-9e1f-b65c09945544 + - 36dc682c-dfde-497f-b1b8-9232709b55c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,16 +520,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "c6ff55e8-1c51-4773-8f6e-8ce54a29d31d", + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "a8fe9d5d-79f0-4339-86b3-cf44b576d70e", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -542,11 +542,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:15 GMT + - Tue, 14 Apr 2026 12:42:51 GMT Pragma: - no-cache RequestId: - - 092445d3-cdf4-4e5c-b38d-bd1541d77655 + - b6653707-9885-41a6-9e53-020361d476d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -575,13 +575,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/maps + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/maps response: body: - string: '{"id": "5f95995d-23a8-4d92-9bb4-95b9cbd4f385", "type": "Map", "displayName": - "fabcli000003", "description": "Created by fab", "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}' + string: '{"id": "33af0f67-7eeb-418c-a703-6b6f516e6428", "type": "Map", "displayName": + "fabcli000003", "description": "Created by fab", "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -594,13 +594,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:19 GMT + - Tue, 14 Apr 2026 12:42:52 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 78efcd98-19e6-4fe5-a323-ed2d0b86af25 + - 25df866f-d59f-456f-afd2-0864eb3b6827 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -626,13 +626,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -643,15 +643,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:19 GMT + - Tue, 14 Apr 2026 12:42:53 GMT Pragma: - no-cache RequestId: - - d2199b62-4780-4e31-85f6-6d95024a2411 + - 62a856af-77e2-4ca4-ba05-7556e88a5c2f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -677,18 +677,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "c6ff55e8-1c51-4773-8f6e-8ce54a29d31d", + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "a8fe9d5d-79f0-4339-86b3-cf44b576d70e", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "5f95995d-23a8-4d92-9bb4-95b9cbd4f385", + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "33af0f67-7eeb-418c-a703-6b6f516e6428", "type": "Map", "displayName": "fabcli000003", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -701,11 +701,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:21 GMT + - Tue, 14 Apr 2026 12:42:53 GMT Pragma: - no-cache RequestId: - - 800d5341-614d-41b8-a301-668e17e90771 + - 147de709-589a-4fd2-89ab-ff808bc464cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -731,13 +731,61 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:42:53 GMT + Pragma: + - no-cache + RequestId: + - 070c92da-dcff-4676-a6cb-3ebb3c8b4482 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -748,15 +796,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:20 GMT + - Tue, 14 Apr 2026 12:42:54 GMT Pragma: - no-cache RequestId: - - 1d7d2422-504a-4a56-87c8-7d3ca2b82f1b + - 13fa8f11-dad0-4869-86b5-ab7e14cd4a5a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -782,18 +830,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "c6ff55e8-1c51-4773-8f6e-8ce54a29d31d", + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "a8fe9d5d-79f0-4339-86b3-cf44b576d70e", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "5f95995d-23a8-4d92-9bb4-95b9cbd4f385", + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "33af0f67-7eeb-418c-a703-6b6f516e6428", "type": "Map", "displayName": "fabcli000003", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -806,11 +854,59 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:22 GMT + - Tue, 14 Apr 2026 12:42:55 GMT + Pragma: + - no-cache + RequestId: + - 6208287f-6dc6-4225-abe7-b8b6fcd2c89f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:42:56 GMT Pragma: - no-cache RequestId: - - 532f7a62-b144-4c99-a6f2-49ef6081a3ed + - efbd251d-3348-4e27-8486-c93c3d95ff42 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -836,13 +932,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -853,15 +949,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:23 GMT + - Tue, 14 Apr 2026 12:42:57 GMT Pragma: - no-cache RequestId: - - 78cfff19-c909-45f5-88ca-feca438ec1f8 + - 9981e29b-80ee-4c8a-b4d8-4ded40ac960b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -887,18 +983,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "c6ff55e8-1c51-4773-8f6e-8ce54a29d31d", + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "a8fe9d5d-79f0-4339-86b3-cf44b576d70e", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "5f95995d-23a8-4d92-9bb4-95b9cbd4f385", + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "33af0f67-7eeb-418c-a703-6b6f516e6428", "type": "Map", "displayName": "fabcli000003", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -911,11 +1007,59 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:23 GMT + - Tue, 14 Apr 2026 12:42:58 GMT + Pragma: + - no-cache + RequestId: + - 5d8b0713-1f00-4dac-8cea-03e3d8f71033 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:42:58 GMT Pragma: - no-cache RequestId: - - 24000e42-7f77-464e-9bcf-5f2ea9124aaa + - b58eee66-edb6-45d8-a11d-2fc93afcc0c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -941,13 +1085,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -958,15 +1102,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:24 GMT + - Tue, 14 Apr 2026 12:42:58 GMT Pragma: - no-cache RequestId: - - 22afa493-0041-432e-bbda-043dea5bbb90 + - b8e71377-bb0a-4061-997c-7a7e87487e22 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -992,18 +1136,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "c6ff55e8-1c51-4773-8f6e-8ce54a29d31d", + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "a8fe9d5d-79f0-4339-86b3-cf44b576d70e", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "5f95995d-23a8-4d92-9bb4-95b9cbd4f385", + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "33af0f67-7eeb-418c-a703-6b6f516e6428", "type": "Map", "displayName": "fabcli000003", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1016,11 +1160,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:24 GMT + - Tue, 14 Apr 2026 12:42:59 GMT Pragma: - no-cache RequestId: - - 8fbb3378-42a9-429e-9c9f-361d4dcd67ed + - 74924395-618a-41e0-bbcc-a9aaf1a3293a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1046,13 +1190,61 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:42:59 GMT + Pragma: + - no-cache + RequestId: + - 6b64fa01-4912-4496-9043-426025493298 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1063,15 +1255,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:25 GMT + - Tue, 14 Apr 2026 12:43:00 GMT Pragma: - no-cache RequestId: - - 0d6ac355-f063-45f3-b08b-4abe69e49d68 + - 53d243fc-61ec-41ec-9ecf-fde9b098ed3d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1097,18 +1289,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "c6ff55e8-1c51-4773-8f6e-8ce54a29d31d", + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "a8fe9d5d-79f0-4339-86b3-cf44b576d70e", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "5f95995d-23a8-4d92-9bb4-95b9cbd4f385", + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "33af0f67-7eeb-418c-a703-6b6f516e6428", "type": "Map", "displayName": "fabcli000003", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1121,11 +1313,59 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:25 GMT + - Tue, 14 Apr 2026 12:43:00 GMT + Pragma: + - no-cache + RequestId: + - 1b4e4048-59df-4c34-a64b-f08c0be083c9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:43:00 GMT Pragma: - no-cache RequestId: - - 630169ca-7b80-4ae2-a2c3-f6c28baacd01 + - a947a056-303b-4ec6-b237-cf0f0c9ea206 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1151,13 +1391,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1168,15 +1408,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:26 GMT + - Tue, 14 Apr 2026 12:43:01 GMT Pragma: - no-cache RequestId: - - 392937f1-ee07-40a0-8cdb-284459f6c4eb + - 4fb9005e-cab9-4b14-881c-58bf52de64d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1202,18 +1442,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "c6ff55e8-1c51-4773-8f6e-8ce54a29d31d", + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "a8fe9d5d-79f0-4339-86b3-cf44b576d70e", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "5f95995d-23a8-4d92-9bb4-95b9cbd4f385", + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "33af0f67-7eeb-418c-a703-6b6f516e6428", "type": "Map", "displayName": "fabcli000003", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1226,11 +1466,59 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:27 GMT + - Tue, 14 Apr 2026 12:43:02 GMT + Pragma: + - no-cache + RequestId: + - a2b8ca41-7af4-4ba9-bf7e-965322d68955 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:43:02 GMT Pragma: - no-cache RequestId: - - 169d35f5-dd6b-4aac-ac22-0b10bf7e471e + - ed72e5a7-b825-4ba8-831c-cadac7c590f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1256,13 +1544,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1273,15 +1561,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:27 GMT + - Tue, 14 Apr 2026 12:43:03 GMT Pragma: - no-cache RequestId: - - 066b9a1d-bf2b-4a99-8c53-5fc6711fc71e + - 0ac68507-2b17-49bd-863f-dc74a93260d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1307,18 +1595,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "c6ff55e8-1c51-4773-8f6e-8ce54a29d31d", + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "a8fe9d5d-79f0-4339-86b3-cf44b576d70e", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "5f95995d-23a8-4d92-9bb4-95b9cbd4f385", + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "33af0f67-7eeb-418c-a703-6b6f516e6428", "type": "Map", "displayName": "fabcli000003", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1331,11 +1619,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:29 GMT + - Tue, 14 Apr 2026 12:43:04 GMT Pragma: - no-cache RequestId: - - d4c3db54-df1d-4304-b2e3-def4f9f09666 + - 59b187b9-6717-43aa-9603-9d4d9abf53df Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1363,9 +1651,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items/5f95995d-23a8-4d92-9bb4-95b9cbd4f385 + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items/33af0f67-7eeb-418c-a703-6b6f516e6428 response: body: string: '' @@ -1381,11 +1669,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 17 Mar 2026 12:00:30 GMT + - Tue, 14 Apr 2026 12:43:05 GMT Pragma: - no-cache RequestId: - - bc6d22b1-5fd4-490c-99d8-0d3d29e5506a + - a4b9850f-2582-43e2-afb7-ac79d66c6d53 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1411,13 +1699,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1428,15 +1716,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:31 GMT + - Tue, 14 Apr 2026 12:43:06 GMT Pragma: - no-cache RequestId: - - e449503f-ddc8-4759-a3bd-899b7edff758 + - 5214d3c9-b033-4e86-b91a-f98946d89c9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1462,16 +1750,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}, {"id": "c6ff55e8-1c51-4773-8f6e-8ce54a29d31d", + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}, {"id": "a8fe9d5d-79f0-4339-86b3-cf44b576d70e", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", - "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "workspaceId": "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1484,11 +1772,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:31 GMT + - Tue, 14 Apr 2026 12:43:07 GMT Pragma: - no-cache RequestId: - - 507877b4-cf6a-4152-a0f0-05be31cd2dae + - d6573299-59d7-4cae-a5c9-ccb5dfb619a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1516,9 +1804,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items/c6ff55e8-1c51-4773-8f6e-8ce54a29d31d + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items/a8fe9d5d-79f0-4339-86b3-cf44b576d70e response: body: string: '' @@ -1534,11 +1822,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 17 Mar 2026 12:00:32 GMT + - Tue, 14 Apr 2026 12:43:07 GMT Pragma: - no-cache RequestId: - - a86732a1-440e-4453-b0a6-856701b4625f + - d4a77f18-b6a5-4b90-8aee-4f8e70f7d355 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1564,13 +1852,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "b99c3830-c62c-4f5d-82c4-9c73ae16a678", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -1581,15 +1869,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:32 GMT + - Tue, 14 Apr 2026 12:43:08 GMT Pragma: - no-cache RequestId: - - 25a49bc3-7840-4e6b-9ef1-c2e381d46688 + - 56823e9b-09fa-4773-a2c8-95b280f95b2e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1615,14 +1903,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items response: body: - string: '{"value": [{"id": "6aef4c33-096b-477a-aef1-01e0cf749c88", "type": "Map", + string: '{"value": [{"id": "c8c836de-9892-439a-8e0a-efbd4f07be01", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "b99c3830-c62c-4f5d-82c4-9c73ae16a678"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1631,15 +1919,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:33 GMT + - Tue, 14 Apr 2026 12:43:08 GMT Pragma: - no-cache RequestId: - - 59bb4345-91a9-4196-b82c-829d268cd6bb + - 34d1e6ef-0c66-4549-84ef-73ccce7b738d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1667,9 +1955,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items/6aef4c33-096b-477a-aef1-01e0cf749c88 + uri: https://api.fabric.microsoft.com/v1/workspaces/b99c3830-c62c-4f5d-82c4-9c73ae16a678/items/c8c836de-9892-439a-8e0a-efbd4f07be01 response: body: string: '' @@ -1685,11 +1973,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 17 Mar 2026 12:00:34 GMT + - Tue, 14 Apr 2026 12:43:09 GMT Pragma: - no-cache RequestId: - - 65cd1a5d-4c2c-49d8-a8d4-1be2381b661a + - 65f5a349-cdf2-48c8-b75e-0cd89b80beed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-Map].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-Map].yaml index 41344781b..9db2b2fa7 100644 --- a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-Map].yaml +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[dir-Map].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:34 GMT + - Tue, 14 Apr 2026 12:28:08 GMT Pragma: - no-cache RequestId: - - 8da34f24-9361-4358-ae2c-3b4cf95b6e96 + - 2cc0ad88-e5f3-4709-9316-9ed9f14254dd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: string: '{"value": []}' @@ -80,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:35 GMT + - Tue, 14 Apr 2026 12:28:08 GMT Pragma: - no-cache RequestId: - - ab43370c-e885-488d-8270-114644090646 + - 9e046de9-7345-4c9e-ac41-843566b89030 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: string: '{"value": []}' @@ -128,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:35 GMT + - Tue, 14 Apr 2026 12:28:08 GMT Pragma: - no-cache RequestId: - - 815563b3-3399-47a7-8c35-17491d5d2e68 + - 11a881ad-1a9e-4794-9a5f-0f094e46c7e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,13 +161,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/maps + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/maps response: body: - string: '{"id": "3278f989-789a-4db0-aab4-c4245da4cc5a", "type": "Map", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}' + string: '{"id": "637cd32f-b0e9-476b-90fc-c0d39331b5cd", "type": "Map", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "e736633e-e4aa-44fb-8775-70c76935df14"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +176,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '163' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:37 GMT + - Tue, 14 Apr 2026 12:28:12 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 771a8ccd-8955-4370-b522-69a01ae385c4 + - 1f715918-1fc0-4575-bd03-f50229062aa1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,13 +212,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -229,15 +229,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:38 GMT + - Tue, 14 Apr 2026 12:28:12 GMT Pragma: - no-cache RequestId: - - 36c66368-9ad6-4094-8c43-1692ff4af341 + - 89b41f18-6c5f-4008-89e4-2820cbffc5d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -263,14 +263,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: - string: '{"value": [{"id": "3278f989-789a-4db0-aab4-c4245da4cc5a", "type": "Map", + string: '{"value": [{"id": "637cd32f-b0e9-476b-90fc-c0d39331b5cd", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "e736633e-e4aa-44fb-8775-70c76935df14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -279,15 +279,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:39 GMT + - Tue, 14 Apr 2026 12:28:13 GMT Pragma: - no-cache RequestId: - - 26669b69-d9a0-4f4c-81fb-172df4b1155f + - c7c95ef5-7bfb-4f82-a18f-9b161a1333b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -313,13 +313,61 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:28:13 GMT + Pragma: + - no-cache + RequestId: + - 48a15ede-d092-43db-80f9-2df4b71651a7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -330,15 +378,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:40 GMT + - Tue, 14 Apr 2026 12:28:14 GMT Pragma: - no-cache RequestId: - - a0ab3031-77e3-445e-9649-4844f42f0652 + - 0caa9e2c-d11f-498a-a305-b38225d899d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,14 +412,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: - string: '{"value": [{"id": "3278f989-789a-4db0-aab4-c4245da4cc5a", "type": "Map", + string: '{"value": [{"id": "637cd32f-b0e9-476b-90fc-c0d39331b5cd", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "e736633e-e4aa-44fb-8775-70c76935df14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -380,15 +428,63 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:28:14 GMT + Pragma: + - no-cache + RequestId: + - 41ad5761-65ec-4ddf-8efa-57e2cc086e11 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:40 GMT + - Tue, 14 Apr 2026 12:28:16 GMT Pragma: - no-cache RequestId: - - 133cbf7f-34e6-4652-8cf8-9484eafceceb + - fdd58227-fbc5-4f85-8094-1a3e6295e432 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -414,13 +510,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -431,15 +527,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:41 GMT + - Tue, 14 Apr 2026 12:28:16 GMT Pragma: - no-cache RequestId: - - d71f9638-f9d4-44dd-ae84-ff4d1ba95589 + - 5a595773-0f13-4a2d-bb17-c504df4c0348 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -465,14 +561,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: - string: '{"value": [{"id": "3278f989-789a-4db0-aab4-c4245da4cc5a", "type": "Map", + string: '{"value": [{"id": "637cd32f-b0e9-476b-90fc-c0d39331b5cd", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "e736633e-e4aa-44fb-8775-70c76935df14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -481,15 +577,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:41 GMT + - Tue, 14 Apr 2026 12:28:16 GMT Pragma: - no-cache RequestId: - - 7a0dfd04-5bed-4114-ad6d-c57541363d5c + - eea77511-8bf4-4430-892f-497127a5b460 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -515,13 +611,61 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:28:17 GMT + Pragma: + - no-cache + RequestId: + - c145d366-8436-4c46-95c1-2e6fd4743aaf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -532,15 +676,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:41 GMT + - Tue, 14 Apr 2026 12:28:17 GMT Pragma: - no-cache RequestId: - - 7e0a8462-eb62-423b-a5b3-3e9fd30c7717 + - dbcad91c-d742-4786-a485-187cbb7f8204 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -566,14 +710,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: - string: '{"value": [{"id": "3278f989-789a-4db0-aab4-c4245da4cc5a", "type": "Map", + string: '{"value": [{"id": "637cd32f-b0e9-476b-90fc-c0d39331b5cd", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "e736633e-e4aa-44fb-8775-70c76935df14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -582,15 +726,63 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:28:18 GMT + Pragma: + - no-cache + RequestId: + - 9320b9c5-6b41-4bc8-92ac-83cc6c20cd99 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:41 GMT + - Tue, 14 Apr 2026 12:28:18 GMT Pragma: - no-cache RequestId: - - 3e70240e-7152-4342-81d6-f687c72b6816 + - b9a2c648-3999-4906-a1dc-5dd83675fcb2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -616,13 +808,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -633,15 +825,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:43 GMT + - Tue, 14 Apr 2026 12:28:19 GMT Pragma: - no-cache RequestId: - - b97ef1f5-45c7-4a8a-9aa4-72521b430a8c + - dcdeb4cb-10d6-45d4-a533-cd3691a7e503 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -667,14 +859,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: - string: '{"value": [{"id": "3278f989-789a-4db0-aab4-c4245da4cc5a", "type": "Map", + string: '{"value": [{"id": "637cd32f-b0e9-476b-90fc-c0d39331b5cd", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "e736633e-e4aa-44fb-8775-70c76935df14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -683,15 +875,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:43 GMT + - Tue, 14 Apr 2026 12:28:19 GMT Pragma: - no-cache RequestId: - - ae4e4072-c15c-416e-9a63-666ff43ec85e + - 3355bb5f-dcd1-437e-91e6-6bf65648ea9e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -719,9 +911,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items/3278f989-789a-4db0-aab4-c4245da4cc5a + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items/637cd32f-b0e9-476b-90fc-c0d39331b5cd response: body: string: '' @@ -737,11 +929,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 17 Mar 2026 12:00:43 GMT + - Tue, 14 Apr 2026 12:28:20 GMT Pragma: - no-cache RequestId: - - 11daef3f-5175-4a9c-ae3b-b56cf6d4b579 + - ce3d6f75-f151-4f70-8f5c-e9b73b77d9ed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-Map].yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-Map].yaml index 61e0823bd..cd44e7bc8 100644 --- a/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-Map].yaml +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_workspace_items_success[ls-Map].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:44 GMT + - Tue, 14 Apr 2026 12:27:52 GMT Pragma: - no-cache RequestId: - - e4f4c6f3-240b-450e-8cd1-f408be54da71 + - 8d07c1b0-5785-4dbf-ad14-38510dd76ce4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: string: '{"value": []}' @@ -80,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:45 GMT + - Tue, 14 Apr 2026 12:27:53 GMT Pragma: - no-cache RequestId: - - 1253f1ee-cc1f-4f0c-b972-91ae3f6ef5ab + - a79cc5c9-4d9b-4df2-91ce-16a41ad64af7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: string: '{"value": []}' @@ -128,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:45 GMT + - Tue, 14 Apr 2026 12:27:54 GMT Pragma: - no-cache RequestId: - - 30f980d1-e618-4091-881b-269a899a9d38 + - 6b5ea7cb-12c5-4f26-98ba-37f0ccf109d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,13 +161,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/maps + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/maps response: body: - string: '{"id": "9a424a0b-0d63-4580-bd95-58f0e1723a04", "type": "Map", "displayName": - "fabcli000001", "description": "Created by fab", "workspaceId": "20173f42-8f89-46b3-889b-3c1a3a3adc47"}' + string: '{"id": "e5b1ac46-610e-41a5-be8c-4a32e81eb4d7", "type": "Map", "displayName": + "fabcli000001", "description": "Created by fab", "workspaceId": "e736633e-e4aa-44fb-8775-70c76935df14"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +176,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:47 GMT + - Tue, 14 Apr 2026 12:27:57 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ef1a4401-078d-498f-8296-b7f9fb8e974c + - a1956688-fdb0-49b9-866b-187a184c035d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,13 +212,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -229,15 +229,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:47 GMT + - Tue, 14 Apr 2026 12:27:58 GMT Pragma: - no-cache RequestId: - - b24d674e-9182-46e3-97ee-8ecd3657db53 + - 3c1b66af-6b73-4ccd-b894-1d9403856482 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -263,14 +263,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: - string: '{"value": [{"id": "9a424a0b-0d63-4580-bd95-58f0e1723a04", "type": "Map", + string: '{"value": [{"id": "e5b1ac46-610e-41a5-be8c-4a32e81eb4d7", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "e736633e-e4aa-44fb-8775-70c76935df14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -283,11 +283,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:48 GMT + - Tue, 14 Apr 2026 12:27:59 GMT Pragma: - no-cache RequestId: - - fe249b51-6a2e-467b-ac01-c091f6aed03a + - c7935656-8654-4c15-be15-91269ca024d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -313,13 +313,61 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:28:00 GMT + Pragma: + - no-cache + RequestId: + - 7af3a953-ea14-49f5-a2f5-be062113db74 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -330,15 +378,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:48 GMT + - Tue, 14 Apr 2026 12:28:01 GMT Pragma: - no-cache RequestId: - - a857fea2-88a7-4f9f-93ca-36409fddd872 + - bf0cf38a-87a6-4924-a972-1ee06463050b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,14 +412,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: - string: '{"value": [{"id": "9a424a0b-0d63-4580-bd95-58f0e1723a04", "type": "Map", + string: '{"value": [{"id": "e5b1ac46-610e-41a5-be8c-4a32e81eb4d7", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "e736633e-e4aa-44fb-8775-70c76935df14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -384,11 +432,59 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:49 GMT + - Tue, 14 Apr 2026 12:28:01 GMT + Pragma: + - no-cache + RequestId: + - accec7b6-8a81-41c5-9d7b-3ef4055c764d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:28:03 GMT Pragma: - no-cache RequestId: - - e0acfc11-4dd1-49b6-b3ac-1d18292e7eb5 + - 26989cd2-93c1-4c0f-b6f3-f197b22c6896 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -414,13 +510,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -431,15 +527,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:50 GMT + - Tue, 14 Apr 2026 12:28:02 GMT Pragma: - no-cache RequestId: - - ac8c2293-47fe-46d8-ae05-3b7fbe4e40bb + - 51a5f4e0-75f2-4e5c-b07c-098aa4ba7db3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -465,14 +561,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: - string: '{"value": [{"id": "9a424a0b-0d63-4580-bd95-58f0e1723a04", "type": "Map", + string: '{"value": [{"id": "e5b1ac46-610e-41a5-be8c-4a32e81eb4d7", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "e736633e-e4aa-44fb-8775-70c76935df14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -485,11 +581,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:51 GMT + - Tue, 14 Apr 2026 12:28:04 GMT Pragma: - no-cache RequestId: - - 372a6625-f403-4de8-9d2b-27c3c387fb17 + - 19287083-c43b-456c-8f81-751e1f4a32f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -515,13 +611,61 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:28:04 GMT + Pragma: + - no-cache + RequestId: + - f62d72ac-6bb4-466b-b43b-fb753f935dd1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -532,15 +676,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:53 GMT + - Tue, 14 Apr 2026 12:28:05 GMT Pragma: - no-cache RequestId: - - d617d633-d075-45bb-894b-b8c3a392fac0 + - 799e016f-5d4e-4c5a-a741-5f788b370598 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -566,14 +710,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: - string: '{"value": [{"id": "9a424a0b-0d63-4580-bd95-58f0e1723a04", "type": "Map", + string: '{"value": [{"id": "e5b1ac46-610e-41a5-be8c-4a32e81eb4d7", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "e736633e-e4aa-44fb-8775-70c76935df14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -586,11 +730,59 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:52 GMT + - Tue, 14 Apr 2026 12:28:05 GMT + Pragma: + - no-cache + RequestId: + - 2f0cc573-b4d3-46c6-8618-83b5ed3b0b54 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:28:05 GMT Pragma: - no-cache RequestId: - - 0bd0f70f-f1c4-4148-a653-4355b24b1ec3 + - 6128b0d5-84b2-4c10-89e8-7f06be1d462f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -616,13 +808,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "20173f42-8f89-46b3-889b-3c1a3a3adc47", + "My workspace", "description": "", "type": "Personal"}, {"id": "e736633e-e4aa-44fb-8775-70c76935df14", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -633,15 +825,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:53 GMT + - Tue, 14 Apr 2026 12:28:06 GMT Pragma: - no-cache RequestId: - - 499c7750-8389-4ad1-9ceb-50f23a9bde08 + - f5db12cf-bf3d-4053-b04b-f015ac194b43 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -667,14 +859,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items response: body: - string: '{"value": [{"id": "9a424a0b-0d63-4580-bd95-58f0e1723a04", "type": "Map", + string: '{"value": [{"id": "e5b1ac46-610e-41a5-be8c-4a32e81eb4d7", "type": "Map", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "20173f42-8f89-46b3-889b-3c1a3a3adc47"}]}' + "e736633e-e4aa-44fb-8775-70c76935df14"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -687,11 +879,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Mar 2026 12:00:53 GMT + - Tue, 14 Apr 2026 12:28:06 GMT Pragma: - no-cache RequestId: - - 1184892a-3ae5-49f6-9072-6d809d01a1f9 + - b0a5e5b3-250a-4160-827e-c76d387d3522 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -719,9 +911,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/20173f42-8f89-46b3-889b-3c1a3a3adc47/items/9a424a0b-0d63-4580-bd95-58f0e1723a04 + uri: https://api.fabric.microsoft.com/v1/workspaces/e736633e-e4aa-44fb-8775-70c76935df14/items/e5b1ac46-610e-41a5-be8c-4a32e81eb4d7 response: body: string: '' @@ -737,11 +929,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 17 Mar 2026 12:00:54 GMT + - Tue, 14 Apr 2026 12:28:06 GMT Pragma: - no-cache RequestId: - - acac1b54-a72c-43dc-b681-f375c4f39567 + - 79139c58-0d82-400e-8134-5e5f59b1dbdc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_mv/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_mv/class_setup.yaml index 2484806a0..7219612ae 100644 --- a/tests/test_commands/recordings/test_commands/test_mv/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_mv/class_setup.yaml @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2016' + - '2132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 13:05:43 GMT + - Tue, 14 Apr 2026 12:43:13 GMT Pragma: - no-cache RequestId: - - 52756f37-3d8a-4c67-9a28-1e14385ad115 + - 3e4e286e-4bd1-455d-8855-7df1c4557ad4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2016' + - '2132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 13:05:44 GMT + - Tue, 14 Apr 2026 12:43:13 GMT Pragma: - no-cache RequestId: - - bd1b137f-f5bc-45f6-aae6-d8766970aaec + - a02ab02d-0481-4330-8c01-6ae9f7e7628d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '424' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 13:05:50 GMT + - Tue, 14 Apr 2026 12:43:17 GMT Pragma: - no-cache RequestId: - - a67517c6-decf-44e3-8662-7b14410ae3d0 + - 4f17cdbe-1a21-4efc-a6a4-3e0e01ec369c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -167,7 +167,7 @@ interactions: uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '187' + - '188' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 13:05:58 GMT + - Tue, 14 Apr 2026 12:43:24 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/f973da1e-1ce0-42d2-b2fa-e34df76a89d9 + - https://api.fabric.microsoft.com/v1/workspaces/8ded5367-0146-4b90-ad17-61a688b83c81 Pragma: - no-cache RequestId: - - 7d158bd7-fc9c-4e72-95e8-85c587fc4980 + - 0a7ab6e9-80b6-4172-bbc7-e4c5e05a3926 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -219,7 +219,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2048' + - '2136' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 13:07:09 GMT + - Tue, 14 Apr 2026 12:46:21 GMT Pragma: - no-cache RequestId: - - f359a958-3f7c-49aa-9086-a8322eeb7d5c + - a4fca266-968c-4658-98ee-0d12c8cbb5d7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -266,7 +266,7 @@ interactions: User-Agent: - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f973da1e-1ce0-42d2-b2fa-e34df76a89d9/items + uri: https://api.fabric.microsoft.com/v1/workspaces/8ded5367-0146-4b90-ad17-61a688b83c81/items response: body: string: '{"value": []}' @@ -282,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 13:07:10 GMT + - Tue, 14 Apr 2026 12:46:22 GMT Pragma: - no-cache RequestId: - - e2b08dd3-8191-45e5-84c1-f7955a245eaf + - 51585379-5cf4-4bfd-84c5-272f24f7479f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +316,7 @@ interactions: User-Agent: - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f973da1e-1ce0-42d2-b2fa-e34df76a89d9 + uri: https://api.fabric.microsoft.com/v1/workspaces/8ded5367-0146-4b90-ad17-61a688b83c81 response: body: string: '' @@ -332,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 13:07:10 GMT + - Tue, 14 Apr 2026 12:46:22 GMT Pragma: - no-cache RequestId: - - 85d34716-c9b0-4e0d-bc8d-5e00e4fe0bab + - 5c2cae81-05cc-4ec1-83b6-5fcf9c1d3f91 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_success[Map].yaml b/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_success[Map].yaml index 6a1895884..3be8e5b35 100644 --- a/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_success[Map].yaml +++ b/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_success[Map].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1627' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:20:57 GMT + - Tue, 14 Apr 2026 12:43:25 GMT Pragma: - no-cache RequestId: - - bd2ce53a-416e-4a28-8720-802eace81a48 + - 4285de23-f53e-453c-b8d7-83178e6e34d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,13 +62,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -79,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1627' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:20:58 GMT + - Tue, 14 Apr 2026 12:43:25 GMT Pragma: - no-cache RequestId: - - 061d7674-c8ea-4651-8eb4-bbd63e01f2fa + - a3b1de6e-9901-4c0e-b799-584f6239bcf8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -113,7 +113,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -129,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '427' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:04 GMT + - Tue, 14 Apr 2026 12:43:28 GMT Pragma: - no-cache RequestId: - - a4807312-d91d-4251-bd59-d43a939c457b + - 75a912db-4143-45a7-82cb-a2106af05d69 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -166,12 +166,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305", "displayName": "fabcli000001", + string: '{"id": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:12 GMT + - Tue, 14 Apr 2026 12:43:35 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/68fd44a9-94e3-4648-91a0-0a8fb5c4b305 + - https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44 Pragma: - no-cache RequestId: - - c159d736-8dac-431b-ac71-73ed647760c9 + - 20f4aa28-b421-48f0-bf6e-b3f3f1291e0b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -217,16 +217,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305", "displayName": "fabcli000001", + {"id": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -236,15 +236,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1664' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:13 GMT + - Tue, 14 Apr 2026 12:43:35 GMT Pragma: - no-cache RequestId: - - a5c0aa25-bf6a-43e8-bb4d-2ecdb0a6721d + - f5896ff7-64f1-4f20-a149-50ba5561f201 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -270,16 +270,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305", "displayName": "fabcli000001", + {"id": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -289,15 +289,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1664' + - '2205' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:14 GMT + - Tue, 14 Apr 2026 12:43:36 GMT Pragma: - no-cache RequestId: - - 5ae39e73-386a-465b-ab20-a2b1cc55e1f5 + - e8405efc-6a67-425e-819c-9fc864173941 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -323,7 +323,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -339,15 +339,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '424' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:19 GMT + - Tue, 14 Apr 2026 12:43:42 GMT Pragma: - no-cache RequestId: - - 84e3df34-60ae-4eea-bacc-3a291cfbc19b + - 99e35447-719f-4aa9-a05e-399173d325dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -376,12 +376,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "58bfcc13-7bcc-4a90-9454-6212082f1d28", "displayName": "fabcli000002", + string: '{"id": "94072587-7242-481b-a9d0-8cdb19fcb098", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -395,13 +395,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:28 GMT + - Tue, 14 Apr 2026 12:43:50 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/58bfcc13-7bcc-4a90-9454-6212082f1d28 + - https://api.fabric.microsoft.com/v1/workspaces/94072587-7242-481b-a9d0-8cdb19fcb098 Pragma: - no-cache RequestId: - - 78b9cd89-b78d-4ae1-aeb7-738ee85a7c7b + - ec91a1c6-f888-4aa3-be73-cfbb68581478 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -427,18 +427,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305", "displayName": "fabcli000001", + {"id": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "58bfcc13-7bcc-4a90-9454-6212082f1d28", "displayName": "fabcli000002", + {"id": "94072587-7242-481b-a9d0-8cdb19fcb098", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -448,15 +448,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1702' + - '2240' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:29 GMT + - Tue, 14 Apr 2026 12:43:51 GMT Pragma: - no-cache RequestId: - - 0c5474e5-d4fd-460a-90cc-c2317cc974bb + - 5b36f294-d584-447e-9537-6b25fbc5d0f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -482,9 +482,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/68fd44a9-94e3-4648-91a0-0a8fb5c4b305/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44/items response: body: string: '{"value": []}' @@ -500,11 +500,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:29 GMT + - Tue, 14 Apr 2026 12:43:52 GMT Pragma: - no-cache RequestId: - - 67a9a593-fb45-488c-9714-8e6c0333589a + - 8271b865-9ec1-4b1c-bdef-094b4449e673 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -530,9 +530,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/68fd44a9-94e3-4648-91a0-0a8fb5c4b305/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44/items response: body: string: '{"value": []}' @@ -548,11 +548,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:29 GMT + - Tue, 14 Apr 2026 12:43:52 GMT Pragma: - no-cache RequestId: - - c9cfc0cc-f9df-44e5-9511-ec8fa13a1aeb + - bc72ebcc-9e9c-42be-beef-1d98887073f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -581,13 +581,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/68fd44a9-94e3-4648-91a0-0a8fb5c4b305/maps + uri: https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44/maps response: body: - string: '{"id": "4a8bff8e-fbbb-49ab-9a8b-9cf4715e9f96", "type": "Map", "displayName": - "fabcli000003", "description": "Created by fab", "workspaceId": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305"}' + string: '{"id": "8e133b23-bb04-40b7-8848-f31701748c34", "type": "Map", "displayName": + "fabcli000003", "description": "Created by fab", "workspaceId": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -596,17 +596,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '161' + - '162' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:32 GMT + - Tue, 14 Apr 2026 12:43:55 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 64b444da-56d1-437e-a797-aba6793bc25c + - 88ccf6c6-1525-4027-808f-1bceca177e0f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -632,18 +632,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305", "displayName": "fabcli000001", + {"id": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "58bfcc13-7bcc-4a90-9454-6212082f1d28", "displayName": "fabcli000002", + {"id": "94072587-7242-481b-a9d0-8cdb19fcb098", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -653,15 +653,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1702' + - '2240' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:32 GMT + - Tue, 14 Apr 2026 12:43:56 GMT Pragma: - no-cache RequestId: - - ffd8dc5b-5aab-41f7-9635-d6964db84b68 + - 7b755bff-7b6e-45ed-b46f-31e7551cad7c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -687,14 +687,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/68fd44a9-94e3-4648-91a0-0a8fb5c4b305/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44/items response: body: - string: '{"value": [{"id": "4a8bff8e-fbbb-49ab-9a8b-9cf4715e9f96", "type": "Map", + string: '{"value": [{"id": "8e133b23-bb04-40b7-8848-f31701748c34", "type": "Map", "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "68fd44a9-94e3-4648-91a0-0a8fb5c4b305"}]}' + "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -703,15 +703,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '173' + - '174' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:34 GMT + - Tue, 14 Apr 2026 12:43:57 GMT Pragma: - no-cache RequestId: - - 5324a091-13e9-44e5-9c57-23eab777e477 + - 93ae4582-c635-46b4-8cb2-1db960b9a718 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -737,18 +737,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305", "displayName": "fabcli000001", + {"id": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "58bfcc13-7bcc-4a90-9454-6212082f1d28", "displayName": "fabcli000002", + {"id": "94072587-7242-481b-a9d0-8cdb19fcb098", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -758,15 +758,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1702' + - '2240' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:36 GMT + - Tue, 14 Apr 2026 12:43:57 GMT Pragma: - no-cache RequestId: - - f2075ac8-8954-4d63-b989-43053a110ea1 + - 03edd439-0b34-4862-ae98-58e87b478c53 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -792,9 +792,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/58bfcc13-7bcc-4a90-9454-6212082f1d28/items + uri: https://api.fabric.microsoft.com/v1/workspaces/94072587-7242-481b-a9d0-8cdb19fcb098/items response: body: string: '{"value": []}' @@ -810,11 +810,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:36 GMT + - Tue, 14 Apr 2026 12:43:58 GMT Pragma: - no-cache RequestId: - - 32e34757-d2c4-4c43-a370-5e764793e285 + - 9506e8a2-b12b-4b13-8e76-daac27c3959a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -840,9 +840,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/58bfcc13-7bcc-4a90-9454-6212082f1d28/items + uri: https://api.fabric.microsoft.com/v1/workspaces/94072587-7242-481b-a9d0-8cdb19fcb098/items response: body: string: '{"value": []}' @@ -858,11 +858,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:37 GMT + - Tue, 14 Apr 2026 12:43:59 GMT Pragma: - no-cache RequestId: - - 1624bf55-c06a-48be-88fc-40072d178e14 + - db1facef-5374-4826-975f-10d9782dd507 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -888,9 +888,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/58bfcc13-7bcc-4a90-9454-6212082f1d28/items + uri: https://api.fabric.microsoft.com/v1/workspaces/94072587-7242-481b-a9d0-8cdb19fcb098/items response: body: string: '{"value": []}' @@ -906,11 +906,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:38 GMT + - Tue, 14 Apr 2026 12:43:59 GMT Pragma: - no-cache RequestId: - - 774d6460-7d1a-4239-9c16-8dfa5bdd47ee + - 5aa3b0b4-e8af-428a-af1b-d5e97c82e144 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -936,13 +936,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/68fd44a9-94e3-4648-91a0-0a8fb5c4b305/items/4a8bff8e-fbbb-49ab-9a8b-9cf4715e9f96 + uri: https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44/items/8e133b23-bb04-40b7-8848-f31701748c34 response: body: - string: '{"id": "4a8bff8e-fbbb-49ab-9a8b-9cf4715e9f96", "type": "Map", "displayName": - "fabcli000003", "description": "Created by fab", "workspaceId": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305"}' + string: '{"id": "8e133b23-bb04-40b7-8848-f31701748c34", "type": "Map", "displayName": + "fabcli000003", "description": "Created by fab", "workspaceId": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -951,17 +951,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '161' + - '162' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:39 GMT + - Tue, 14 Apr 2026 12:44:00 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 025705c2-9d7d-4597-ad9b-4b9811bdedd4 + - e2b62eed-214c-4051-95ee-e456001357b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -989,9 +989,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/68fd44a9-94e3-4648-91a0-0a8fb5c4b305/items/4a8bff8e-fbbb-49ab-9a8b-9cf4715e9f96/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44/items/8e133b23-bb04-40b7-8848-f31701748c34/getDefinition response: body: string: 'null' @@ -1007,13 +1007,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:21:40 GMT + - Tue, 14 Apr 2026 12:44:01 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/14971a77-20b9-4b62-9295-edb245e274c0 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/64568edb-487d-4ed1-8498-fc72b7702362 Pragma: - no-cache RequestId: - - d06128a9-be97-4099-a7ac-e9c040ad2302 + - dfa1cc47-0c5c-4bb9-9e29-25ce9fc4b23b Retry-After: - '20' Strict-Transport-Security: @@ -1027,7 +1027,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 14971a77-20b9-4b62-9295-edb245e274c0 + - 64568edb-487d-4ed1-8498-fc72b7702362 status: code: 202 message: Accepted @@ -1043,13 +1043,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/14971a77-20b9-4b62-9295-edb245e274c0 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/64568edb-487d-4ed1-8498-fc72b7702362 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-19T09:21:40.9645891", - "lastUpdatedTimeUtc": "2026-03-19T09:21:41.3429452", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:44:02.4035743", + "lastUpdatedTimeUtc": "2026-04-14T12:44:03.1473955", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1063,13 +1063,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:01 GMT + - Tue, 14 Apr 2026 12:44:23 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/14971a77-20b9-4b62-9295-edb245e274c0/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/64568edb-487d-4ed1-8498-fc72b7702362/result Pragma: - no-cache RequestId: - - eb23ffc4-61ad-48a2-8c5d-c1f7b6aa7f4b + - 02df172d-2b96-4ed6-9fcf-521ab48c3a8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1077,7 +1077,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 14971a77-20b9-4b62-9295-edb245e274c0 + - 64568edb-487d-4ed1-8498-fc72b7702362 status: code: 200 message: OK @@ -1093,12 +1093,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/14971a77-20b9-4b62-9295-edb245e274c0/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/64568edb-487d-4ed1-8498-fc72b7702362/result response: body: - string: '{"definition": {"parts": [{"path": "map.json", "payload": "77u/ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9tYXAvZGVmaW5pdGlvbi8yLjAuMC9zY2hlbWEuanNvbiIsDQogICJiYXNlbWFwIjoge30sDQogICJkYXRhU291cmNlcyI6IFtdLA0KICAiaWNvblNvdXJjZXMiOiBbXSwNCiAgImxheWVyU291cmNlcyI6IFtdLA0KICAibGF5ZXJTZXR0aW5ncyI6IFtdDQp9", + string: '{"definition": {"parts": [{"path": "map.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9tYXAvZGVmaW5pdGlvbi8yLjAuMC9zY2hlbWEuanNvbiIsDQogICJiYXNlbWFwIjoge30sDQogICJkYXRhU291cmNlcyI6IFtdLA0KICAiaWNvblNvdXJjZXMiOiBbXSwNCiAgImxheWVyU291cmNlcyI6IFtdLA0KICAibGF5ZXJTZXR0aW5ncyI6IFtdDQp9", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1hcCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: @@ -1111,11 +1111,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Mar 2026 09:22:02 GMT + - Tue, 14 Apr 2026 12:44:23 GMT Pragma: - no-cache RequestId: - - 5c9bab77-ffa6-4bf6-959d-bbef6a9a0d1b + - 68d8dba5-adde-4dbf-aeea-fb61a98c4fcc Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1129,7 +1129,7 @@ interactions: message: OK - request: body: '{"type": "Map", "description": "Created by fab", "displayName": "fabcli000003", - "definition": {"parts": [{"path": "map.json", "payload": "77u/ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9tYXAvZGVmaW5pdGlvbi8yLjAuMC9zY2hlbWEuanNvbiIsDQogICJiYXNlbWFwIjoge30sDQogICJkYXRhU291cmNlcyI6IFtdLA0KICAiaWNvblNvdXJjZXMiOiBbXSwNCiAgImxheWVyU291cmNlcyI6IFtdLA0KICAibGF5ZXJTZXR0aW5ncyI6IFtdDQp9", + "definition": {"parts": [{"path": "map.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9tYXAvZGVmaW5pdGlvbi8yLjAuMC9zY2hlbWEuanNvbiIsDQogICJiYXNlbWFwIjoge30sDQogICJkYXRhU291cmNlcyI6IFtdLA0KICAiaWNvblNvdXJjZXMiOiBbXSwNCiAgImxheWVyU291cmNlcyI6IFtdLA0KICAibGF5ZXJTZXR0aW5ncyI6IFtdDQp9", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1hcCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}, "folderId": null}' headers: @@ -1140,13 +1140,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1009' + - '1005' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/58bfcc13-7bcc-4a90-9454-6212082f1d28/items + uri: https://api.fabric.microsoft.com/v1/workspaces/94072587-7242-481b-a9d0-8cdb19fcb098/items response: body: string: 'null' @@ -1162,15 +1162,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:04 GMT + - Tue, 14 Apr 2026 12:44:26 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0438f139-bc27-4418-bc05-72bccafdacb6 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/68a1451f-f5b1-4e86-a896-cf481080e9a6 Pragma: - no-cache RequestId: - - a8c1e1be-e98e-4f38-8723-5a59ff3a9898 + - 6993040b-5c4c-4ad4-b8fd-b86094fb3ac0 Retry-After: - '20' Strict-Transport-Security: @@ -1184,7 +1184,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 0438f139-bc27-4418-bc05-72bccafdacb6 + - 68a1451f-f5b1-4e86-a896-cf481080e9a6 status: code: 202 message: Accepted @@ -1200,13 +1200,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0438f139-bc27-4418-bc05-72bccafdacb6 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/68a1451f-f5b1-4e86-a896-cf481080e9a6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-19T09:22:03.7445686", - "lastUpdatedTimeUtc": "2026-03-19T09:22:05.4884903", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:44:25.9653043", + "lastUpdatedTimeUtc": "2026-04-14T12:44:27.4658916", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1216,17 +1216,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:24 GMT + - Tue, 14 Apr 2026 12:44:47 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0438f139-bc27-4418-bc05-72bccafdacb6/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/68a1451f-f5b1-4e86-a896-cf481080e9a6/result Pragma: - no-cache RequestId: - - 8fd12a25-3069-45ad-b56b-5ae9182753aa + - 1cd7d96d-3b5e-47a1-aa22-0261aff33587 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1234,7 +1234,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 0438f139-bc27-4418-bc05-72bccafdacb6 + - 68a1451f-f5b1-4e86-a896-cf481080e9a6 status: code: 200 message: OK @@ -1250,13 +1250,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0438f139-bc27-4418-bc05-72bccafdacb6/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/68a1451f-f5b1-4e86-a896-cf481080e9a6/result response: body: - string: '{"id": "1bcb5085-7de8-4088-8132-370e82083912", "type": "Map", "displayName": - "fabcli000003", "description": "Created by fab", "workspaceId": "58bfcc13-7bcc-4a90-9454-6212082f1d28"}' + string: '{"id": "61b88e59-a462-4013-9d16-9d945fe10e43", "type": "Map", "displayName": + "fabcli000003", "description": "Created by fab", "workspaceId": "94072587-7242-481b-a9d0-8cdb19fcb098"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1267,11 +1267,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Mar 2026 09:22:26 GMT + - Tue, 14 Apr 2026 12:44:49 GMT Pragma: - no-cache RequestId: - - 574e0c9c-9559-47a6-9093-8cc09dca52e3 + - ffab2f91-2eaa-4dba-8dd8-ed8fd7232bb0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1297,9 +1297,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/68fd44a9-94e3-4648-91a0-0a8fb5c4b305/items/4a8bff8e-fbbb-49ab-9a8b-9cf4715e9f96 + uri: https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44/items/8e133b23-bb04-40b7-8848-f31701748c34 response: body: string: '' @@ -1315,11 +1315,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:22:27 GMT + - Tue, 14 Apr 2026 12:44:50 GMT Pragma: - no-cache RequestId: - - f69c5626-8d51-451e-a9e8-a27fec4e8679 + - fb824d09-26ea-4543-987b-ed6c40e36562 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1345,18 +1345,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305", "displayName": "fabcli000001", + {"id": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "58bfcc13-7bcc-4a90-9454-6212082f1d28", "displayName": "fabcli000002", + {"id": "94072587-7242-481b-a9d0-8cdb19fcb098", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1366,15 +1366,63 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1733' + - '2240' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:44:51 GMT + Pragma: + - no-cache + RequestId: + - a47bdd4e-91c8-43cc-96b5-9a6cdd9f43a5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44/items + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:28 GMT + - Tue, 14 Apr 2026 12:44:52 GMT Pragma: - no-cache RequestId: - - 965d6e2e-c6a0-450e-a369-c90e96c7b4fa + - 1daeefa0-33ba-4e91-9349-22169e90140f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1400,9 +1448,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/68fd44a9-94e3-4648-91a0-0a8fb5c4b305/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44/folders?recursive=True response: body: string: '{"value": []}' @@ -1418,11 +1466,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:28 GMT + - Tue, 14 Apr 2026 12:44:52 GMT Pragma: - no-cache RequestId: - - 67d10851-aca9-433e-b5e0-0ffabc440f6d + - 5de048d0-6a7b-48f7-8a28-e6a03d705be2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1448,18 +1496,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305", "displayName": "fabcli000001", + {"id": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "58bfcc13-7bcc-4a90-9454-6212082f1d28", "displayName": "fabcli000002", + {"id": "94072587-7242-481b-a9d0-8cdb19fcb098", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1469,15 +1517,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1733' + - '2240' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:29 GMT + - Tue, 14 Apr 2026 12:44:53 GMT Pragma: - no-cache RequestId: - - c2197228-9ded-491c-b66d-89d3d113ff5d + - b23075b0-7829-4984-800d-bfcf352f42cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1503,14 +1551,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/58bfcc13-7bcc-4a90-9454-6212082f1d28/items + uri: https://api.fabric.microsoft.com/v1/workspaces/94072587-7242-481b-a9d0-8cdb19fcb098/items response: body: - string: '{"value": [{"id": "1bcb5085-7de8-4088-8132-370e82083912", "type": "Map", + string: '{"value": [{"id": "61b88e59-a462-4013-9d16-9d945fe10e43", "type": "Map", "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "58bfcc13-7bcc-4a90-9454-6212082f1d28"}]}' + "94072587-7242-481b-a9d0-8cdb19fcb098"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1519,15 +1567,63 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:44:54 GMT + Pragma: + - no-cache + RequestId: + - 83b2cab6-6a93-4642-a8e9-6d382c3bbfce + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/94072587-7242-481b-a9d0-8cdb19fcb098/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:30 GMT + - Tue, 14 Apr 2026 12:44:55 GMT Pragma: - no-cache RequestId: - - 71acb831-21f9-4867-8993-279d6cf5309f + - b68e2c70-0d43-4ce1-a62b-8e9550e38a0b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1553,18 +1649,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305", "displayName": "fabcli000001", + {"id": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "58bfcc13-7bcc-4a90-9454-6212082f1d28", "displayName": "fabcli000002", + {"id": "94072587-7242-481b-a9d0-8cdb19fcb098", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1574,15 +1670,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1733' + - '2240' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:30 GMT + - Tue, 14 Apr 2026 12:44:56 GMT Pragma: - no-cache RequestId: - - da5f2690-502d-49d2-b37e-45544c3137ea + - 84d105fd-17d2-48e6-9ef6-bf5eb3b58162 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1608,14 +1704,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/58bfcc13-7bcc-4a90-9454-6212082f1d28/items + uri: https://api.fabric.microsoft.com/v1/workspaces/94072587-7242-481b-a9d0-8cdb19fcb098/items response: body: - string: '{"value": [{"id": "1bcb5085-7de8-4088-8132-370e82083912", "type": "Map", + string: '{"value": [{"id": "61b88e59-a462-4013-9d16-9d945fe10e43", "type": "Map", "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "58bfcc13-7bcc-4a90-9454-6212082f1d28"}]}' + "94072587-7242-481b-a9d0-8cdb19fcb098"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1624,15 +1720,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:31 GMT + - Tue, 14 Apr 2026 12:44:57 GMT Pragma: - no-cache RequestId: - - b04fa7cf-661b-4b01-8d2d-61371064053f + - d93848fe-a7c8-4d0c-8825-6998d7bacb27 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1660,9 +1756,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/58bfcc13-7bcc-4a90-9454-6212082f1d28/items/1bcb5085-7de8-4088-8132-370e82083912 + uri: https://api.fabric.microsoft.com/v1/workspaces/94072587-7242-481b-a9d0-8cdb19fcb098/items/61b88e59-a462-4013-9d16-9d945fe10e43 response: body: string: '' @@ -1678,11 +1774,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:22:31 GMT + - Tue, 14 Apr 2026 12:44:59 GMT Pragma: - no-cache RequestId: - - 8324ddd7-cf76-4370-819d-8b41dd071897 + - b050fc2e-0085-46ea-9b06-f98c4026969f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1708,18 +1804,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "68fd44a9-94e3-4648-91a0-0a8fb5c4b305", "displayName": "fabcli000001", + {"id": "4beeab4f-92c2-4d23-9fa7-047d5d0d3f44", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "58bfcc13-7bcc-4a90-9454-6212082f1d28", "displayName": "fabcli000002", + {"id": "94072587-7242-481b-a9d0-8cdb19fcb098", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1729,15 +1825,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1733' + - '2240' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:32 GMT + - Tue, 14 Apr 2026 12:44:59 GMT Pragma: - no-cache RequestId: - - 84da429a-08cf-4ba7-8dba-06164b6ec6fa + - da78c1dd-5937-4f15-8fd5-f837aa756950 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1763,9 +1859,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/68fd44a9-94e3-4648-91a0-0a8fb5c4b305/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44/items response: body: string: '{"value": []}' @@ -1781,11 +1877,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:33 GMT + - Tue, 14 Apr 2026 12:45:01 GMT Pragma: - no-cache RequestId: - - 3d483041-ec81-4852-b9a3-468ae5bfa869 + - 4aebf798-10b8-459e-abfb-a1c6e93ffcd6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1813,9 +1909,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/68fd44a9-94e3-4648-91a0-0a8fb5c4b305 + uri: https://api.fabric.microsoft.com/v1/workspaces/4beeab4f-92c2-4d23-9fa7-047d5d0d3f44 response: body: string: '' @@ -1831,11 +1927,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:22:34 GMT + - Tue, 14 Apr 2026 12:45:01 GMT Pragma: - no-cache RequestId: - - 0dbcc8dd-df07-4395-943b-beeee78ef6f5 + - 437373b4-4810-4ace-85fc-0ff7399e6580 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1861,16 +1957,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "58bfcc13-7bcc-4a90-9454-6212082f1d28", "displayName": "fabcli000002", + {"id": "94072587-7242-481b-a9d0-8cdb19fcb098", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1880,15 +1976,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1695' + - '2199' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:34 GMT + - Tue, 14 Apr 2026 12:45:01 GMT Pragma: - no-cache RequestId: - - 167dea49-86b7-40b0-9370-122fa9eeb285 + - ca7640c7-10cb-4a7c-a822-b58bf115f620 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1914,9 +2010,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/58bfcc13-7bcc-4a90-9454-6212082f1d28/items + uri: https://api.fabric.microsoft.com/v1/workspaces/94072587-7242-481b-a9d0-8cdb19fcb098/items response: body: string: '{"value": []}' @@ -1932,11 +2028,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:35 GMT + - Tue, 14 Apr 2026 12:45:02 GMT Pragma: - no-cache RequestId: - - 9b224463-2783-47a8-b47c-0ded290a7147 + - 0e6cabf2-6471-4154-b5f9-8b934323243e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1964,9 +2060,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/58bfcc13-7bcc-4a90-9454-6212082f1d28 + uri: https://api.fabric.microsoft.com/v1/workspaces/94072587-7242-481b-a9d0-8cdb19fcb098 response: body: string: '' @@ -1982,11 +2078,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:22:36 GMT + - Tue, 14 Apr 2026 12:45:03 GMT Pragma: - no-cache RequestId: - - 86a1830e-f6c8-49ac-ac90-5d85b0689005 + - c65a84f2-442e-48a7-b99f-f6199f4db1f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_within_workspace_rename_success[Map].yaml b/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_within_workspace_rename_success[Map].yaml index 7111e694c..4277a6cf6 100644 --- a/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_within_workspace_rename_success[Map].yaml +++ b/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_within_workspace_rename_success[Map].yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1657' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:37 GMT + - Tue, 14 Apr 2026 12:45:04 GMT Pragma: - no-cache RequestId: - - b75b1839-ac92-4fd9-ade1-312994b0c65d + - 9e208f82-089f-4b38-ad72-69a69952b4a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,13 +62,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -79,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1657' + - '2165' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:37 GMT + - Tue, 14 Apr 2026 12:45:05 GMT Pragma: - no-cache RequestId: - - 11882e5b-63f2-4114-971e-a5dcb58943e3 + - d37eff0a-9c36-4e7a-903a-d46eaf90b797 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -113,7 +113,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -129,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '429' + - '427' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:42 GMT + - Tue, 14 Apr 2026 12:45:07 GMT Pragma: - no-cache RequestId: - - 327869d0-1a3e-4e3b-8eb3-722f59dacc14 + - 82cfcf41-bb3a-458f-8391-fa3dfe4b1172 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -166,12 +166,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f", "displayName": "fabcli000001", + string: '{"id": "19bbf7db-72d0-41d5-bdc8-61339620dabc", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:48 GMT + - Tue, 14 Apr 2026 12:45:14 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f + - https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc Pragma: - no-cache RequestId: - - 4429a7be-2a15-461f-ac03-567a11547a76 + - 079cd852-f63b-45f8-9eaf-33e70308ddc8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -217,16 +217,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f", "displayName": "fabcli000001", + {"id": "19bbf7db-72d0-41d5-bdc8-61339620dabc", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -236,15 +236,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1695' + - '2198' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:49 GMT + - Tue, 14 Apr 2026 12:45:16 GMT Pragma: - no-cache RequestId: - - d8bc3ea1-7eb1-41bc-a3f7-359beb7a5879 + - bfc9f2c5-4aa7-4b66-bc13-20e683f8487f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -270,9 +270,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items response: body: string: '{"value": []}' @@ -288,11 +288,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:50 GMT + - Tue, 14 Apr 2026 12:45:17 GMT Pragma: - no-cache RequestId: - - 74bc1ff5-8eb2-4d14-a7aa-1c83a4408946 + - 43e20a99-b846-418e-8876-bc4d4320efba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -318,9 +318,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items response: body: string: '{"value": []}' @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:50 GMT + - Tue, 14 Apr 2026 12:45:16 GMT Pragma: - no-cache RequestId: - - dea8d734-6e4c-4772-a71b-62c0d754435b + - cb8a7edc-62dd-4c50-86d5-a9221f69552a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -369,13 +369,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/maps + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/maps response: body: - string: '{"id": "0361901f-8082-4277-a88d-d7e644dca83e", "type": "Map", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f"}' + string: '{"id": "8ac0f3c6-a3c8-4ef2-b349-70184039304c", "type": "Map", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "19bbf7db-72d0-41d5-bdc8-61339620dabc"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -384,17 +384,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '163' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:53 GMT + - Tue, 14 Apr 2026 12:45:19 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d2d10b08-8f7b-4269-a8ea-50d41e50b8b9 + - dc917f25-8e19-48eb-adde-c0269d8501dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -420,16 +420,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f", "displayName": "fabcli000001", + {"id": "19bbf7db-72d0-41d5-bdc8-61339620dabc", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -439,15 +439,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1695' + - '2198' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:53 GMT + - Tue, 14 Apr 2026 12:45:20 GMT Pragma: - no-cache RequestId: - - a9f310cf-f74c-4183-8429-92bdee436505 + - b79e4c05-2015-48f0-98b1-2760eabfca7b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -473,14 +473,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items response: body: - string: '{"value": [{"id": "0361901f-8082-4277-a88d-d7e644dca83e", "type": "Map", + string: '{"value": [{"id": "8ac0f3c6-a3c8-4ef2-b349-70184039304c", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f"}]}' + "19bbf7db-72d0-41d5-bdc8-61339620dabc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -493,11 +493,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:54 GMT + - Tue, 14 Apr 2026 12:45:20 GMT Pragma: - no-cache RequestId: - - 11877502-ff80-478e-aea9-e5d5e854ce9e + - ac886147-030d-4cf4-8aed-161484dae53f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -523,16 +523,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f", "displayName": "fabcli000001", + {"id": "19bbf7db-72d0-41d5-bdc8-61339620dabc", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -542,15 +542,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1695' + - '2198' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:54 GMT + - Tue, 14 Apr 2026 12:45:22 GMT Pragma: - no-cache RequestId: - - 59962b56-b659-4cf3-a2e1-027041f09899 + - 38125a17-abee-4b5c-9640-217b1ce347c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -576,14 +576,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items response: body: - string: '{"value": [{"id": "0361901f-8082-4277-a88d-d7e644dca83e", "type": "Map", + string: '{"value": [{"id": "8ac0f3c6-a3c8-4ef2-b349-70184039304c", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f"}]}' + "19bbf7db-72d0-41d5-bdc8-61339620dabc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -596,11 +596,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:55 GMT + - Tue, 14 Apr 2026 12:45:22 GMT Pragma: - no-cache RequestId: - - 72d6af4b-1966-41d6-89fe-0788f0bb2e93 + - 6d0d9e21-f209-4757-8308-a8d74e42e6e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -626,14 +626,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items response: body: - string: '{"value": [{"id": "0361901f-8082-4277-a88d-d7e644dca83e", "type": "Map", + string: '{"value": [{"id": "8ac0f3c6-a3c8-4ef2-b349-70184039304c", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f"}]}' + "19bbf7db-72d0-41d5-bdc8-61339620dabc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -646,11 +646,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:56 GMT + - Tue, 14 Apr 2026 12:45:24 GMT Pragma: - no-cache RequestId: - - dcf0641f-fa52-4129-9e47-f364137cc648 + - cbd3bda7-8189-4ab5-aaeb-b9da3048f2a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -676,14 +676,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items response: body: - string: '{"value": [{"id": "0361901f-8082-4277-a88d-d7e644dca83e", "type": "Map", + string: '{"value": [{"id": "8ac0f3c6-a3c8-4ef2-b349-70184039304c", "type": "Map", "displayName": "fabcli000002", "description": "Created by fab", "workspaceId": - "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f"}]}' + "19bbf7db-72d0-41d5-bdc8-61339620dabc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -696,11 +696,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:57 GMT + - Tue, 14 Apr 2026 12:45:24 GMT Pragma: - no-cache RequestId: - - e34907da-9f55-4b93-bcf7-85f12046961b + - 545761c4-98bb-4b27-a4f4-2084ba56878c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -726,13 +726,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items/0361901f-8082-4277-a88d-d7e644dca83e + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items/8ac0f3c6-a3c8-4ef2-b349-70184039304c response: body: - string: '{"id": "0361901f-8082-4277-a88d-d7e644dca83e", "type": "Map", "displayName": - "fabcli000002", "description": "Created by fab", "workspaceId": "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f"}' + string: '{"id": "8ac0f3c6-a3c8-4ef2-b349-70184039304c", "type": "Map", "displayName": + "fabcli000002", "description": "Created by fab", "workspaceId": "19bbf7db-72d0-41d5-bdc8-61339620dabc"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -741,17 +741,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '163' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:58 GMT + - Tue, 14 Apr 2026 12:45:24 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 9f93a37d-326d-4ea5-a944-aff5390007d7 + - a7d166c8-975b-446b-a40e-9e2a04fd6024 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -779,9 +779,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items/0361901f-8082-4277-a88d-d7e644dca83e/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items/8ac0f3c6-a3c8-4ef2-b349-70184039304c/getDefinition response: body: string: 'null' @@ -797,13 +797,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:22:59 GMT + - Tue, 14 Apr 2026 12:45:25 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f3a42916-67a4-4e93-88fa-5ef7349ae6c9 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7516d82f-183e-4608-a722-3a81457f982e Pragma: - no-cache RequestId: - - 6ac004b5-cf84-41fc-9c6c-0f72afe0d9ae + - 61f859aa-9e46-4ad4-809d-9d56daca6e83 Retry-After: - '20' Strict-Transport-Security: @@ -817,7 +817,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - f3a42916-67a4-4e93-88fa-5ef7349ae6c9 + - 7516d82f-183e-4608-a722-3a81457f982e status: code: 202 message: Accepted @@ -833,13 +833,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f3a42916-67a4-4e93-88fa-5ef7349ae6c9 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7516d82f-183e-4608-a722-3a81457f982e response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-19T09:22:59.3204147", - "lastUpdatedTimeUtc": "2026-03-19T09:22:59.6218009", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:45:26.0147783", + "lastUpdatedTimeUtc": "2026-04-14T12:45:26.7839045", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -853,13 +853,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:23:19 GMT + - Tue, 14 Apr 2026 12:45:46 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f3a42916-67a4-4e93-88fa-5ef7349ae6c9/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7516d82f-183e-4608-a722-3a81457f982e/result Pragma: - no-cache RequestId: - - b43eac05-017a-4140-86cf-51a0fbf3c462 + - edaba89c-d35e-4ef2-b694-fba4cf155d42 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -867,7 +867,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - f3a42916-67a4-4e93-88fa-5ef7349ae6c9 + - 7516d82f-183e-4608-a722-3a81457f982e status: code: 200 message: OK @@ -883,12 +883,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f3a42916-67a4-4e93-88fa-5ef7349ae6c9/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7516d82f-183e-4608-a722-3a81457f982e/result response: body: - string: '{"definition": {"parts": [{"path": "map.json", "payload": "77u/ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9tYXAvZGVmaW5pdGlvbi8yLjAuMC9zY2hlbWEuanNvbiIsDQogICJiYXNlbWFwIjoge30sDQogICJkYXRhU291cmNlcyI6IFtdLA0KICAiaWNvblNvdXJjZXMiOiBbXSwNCiAgImxheWVyU291cmNlcyI6IFtdLA0KICAibGF5ZXJTZXR0aW5ncyI6IFtdDQp9", + string: '{"definition": {"parts": [{"path": "map.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9tYXAvZGVmaW5pdGlvbi8yLjAuMC9zY2hlbWEuanNvbiIsDQogICJiYXNlbWFwIjoge30sDQogICJkYXRhU291cmNlcyI6IFtdLA0KICAiaWNvblNvdXJjZXMiOiBbXSwNCiAgImxheWVyU291cmNlcyI6IFtdLA0KICAibGF5ZXJTZXR0aW5ncyI6IFtdDQp9", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1hcCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAyIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: @@ -901,11 +901,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Mar 2026 09:23:20 GMT + - Tue, 14 Apr 2026 12:45:48 GMT Pragma: - no-cache RequestId: - - 41f8b271-131f-453f-a6d5-649df79dac1f + - d6d0b5ba-91f3-4a65-8e56-eb97f67ae6f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -919,7 +919,7 @@ interactions: message: OK - request: body: '{"type": "Map", "description": "Created by fab", "displayName": "fabcli000002 - Renamed", "definition": {"parts": [{"path": "map.json", "payload": "77u/ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9tYXAvZGVmaW5pdGlvbi8yLjAuMC9zY2hlbWEuanNvbiIsDQogICJiYXNlbWFwIjoge30sDQogICJkYXRhU291cmNlcyI6IFtdLA0KICAiaWNvblNvdXJjZXMiOiBbXSwNCiAgImxheWVyU291cmNlcyI6IFtdLA0KICAibGF5ZXJTZXR0aW5ncyI6IFtdDQp9", + Renamed", "definition": {"parts": [{"path": "map.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS9tYXAvZGVmaW5pdGlvbi8yLjAuMC9zY2hlbWEuanNvbiIsDQogICJiYXNlbWFwIjoge30sDQogICJkYXRhU291cmNlcyI6IFtdLA0KICAiaWNvblNvdXJjZXMiOiBbXSwNCiAgImxheWVyU291cmNlcyI6IFtdLA0KICAibGF5ZXJTZXR0aW5ncyI6IFtdDQp9", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1hcCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAyIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}, "folderId": null}' headers: @@ -930,13 +930,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1017' + - '1013' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items response: body: string: 'null' @@ -952,15 +952,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:23:23 GMT + - Tue, 14 Apr 2026 12:45:48 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/71a21414-8f7a-4b9f-b179-ce7646b14992 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b12d1de3-d17b-4eb9-a40b-6b13869b7e00 Pragma: - no-cache RequestId: - - f6427979-ad5a-481d-8bd1-5d7c9f8236a1 + - d13da544-7113-457b-93d8-6c552576ca2b Retry-After: - '20' Strict-Transport-Security: @@ -974,7 +974,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 71a21414-8f7a-4b9f-b179-ce7646b14992 + - b12d1de3-d17b-4eb9-a40b-6b13869b7e00 status: code: 202 message: Accepted @@ -990,13 +990,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/71a21414-8f7a-4b9f-b179-ce7646b14992 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b12d1de3-d17b-4eb9-a40b-6b13869b7e00 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-19T09:23:22.6059176", - "lastUpdatedTimeUtc": "2026-03-19T09:23:24.2880828", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:45:48.8020231", + "lastUpdatedTimeUtc": "2026-04-14T12:45:50.0354918", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1006,17 +1006,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:23:44 GMT + - Tue, 14 Apr 2026 12:46:09 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/71a21414-8f7a-4b9f-b179-ce7646b14992/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b12d1de3-d17b-4eb9-a40b-6b13869b7e00/result Pragma: - no-cache RequestId: - - 9e95f08e-186d-4311-b4f8-e012ced8751a + - ea798ed0-d508-476a-a850-f88232d15fab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1024,7 +1024,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 71a21414-8f7a-4b9f-b179-ce7646b14992 + - b12d1de3-d17b-4eb9-a40b-6b13869b7e00 status: code: 200 message: OK @@ -1040,13 +1040,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/71a21414-8f7a-4b9f-b179-ce7646b14992/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b12d1de3-d17b-4eb9-a40b-6b13869b7e00/result response: body: - string: '{"id": "5633491d-51f5-47f1-8c0c-6a4e5b77ad5e", "type": "Map", "displayName": - "fabcli000002 Renamed", "description": "Created by fab", "workspaceId": "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f"}' + string: '{"id": "a5d95751-904e-49da-9133-82024e534ca4", "type": "Map", "displayName": + "fabcli000002 Renamed", "description": "Created by fab", "workspaceId": "19bbf7db-72d0-41d5-bdc8-61339620dabc"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1057,11 +1057,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 19 Mar 2026 09:23:45 GMT + - Tue, 14 Apr 2026 12:46:11 GMT Pragma: - no-cache RequestId: - - 903d78b9-4bfb-4f8c-8b10-6f97ec8fdfd3 + - 2ba130f1-e061-463c-8312-9b23ca4fc9ce Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1087,9 +1087,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items/0361901f-8082-4277-a88d-d7e644dca83e + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items/8ac0f3c6-a3c8-4ef2-b349-70184039304c response: body: string: '' @@ -1105,11 +1105,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:23:46 GMT + - Tue, 14 Apr 2026 12:46:12 GMT Pragma: - no-cache RequestId: - - 8bae505e-58af-464f-bd4a-a01994472931 + - f8e33b8e-0d42-408b-a383-16e443b3b398 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1135,16 +1135,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f", "displayName": "fabcli000001", + {"id": "19bbf7db-72d0-41d5-bdc8-61339620dabc", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1154,15 +1154,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1664' + - '2170' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:23:46 GMT + - Tue, 14 Apr 2026 12:46:12 GMT Pragma: - no-cache RequestId: - - dce73c2e-6610-4049-9118-5b0a309393d6 + - c8a143b8-3e3e-4dad-9b50-da3c3f8bbf46 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1188,14 +1188,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items response: body: - string: '{"value": [{"id": "5633491d-51f5-47f1-8c0c-6a4e5b77ad5e", "type": "Map", + string: '{"value": [{"id": "a5d95751-904e-49da-9133-82024e534ca4", "type": "Map", "displayName": "fabcli000002 Renamed", "description": "Created by fab", "workspaceId": - "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f"}]}' + "19bbf7db-72d0-41d5-bdc8-61339620dabc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1208,11 +1208,59 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:23:47 GMT + - Tue, 14 Apr 2026 12:46:13 GMT + Pragma: + - no-cache + RequestId: + - 706eda55-3a17-4078-8912-1c617d1e4974 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.5.0 + method: GET + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/folders?recursive=True + response: + body: + string: '{"value": []}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '32' + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 14 Apr 2026 12:46:14 GMT Pragma: - no-cache RequestId: - - cd616e8e-47bf-4eca-aaba-fdf8710316f1 + - aa18c2eb-76f1-418f-8cd2-ee51dff32392 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1238,16 +1286,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f", "displayName": "fabcli000001", + {"id": "19bbf7db-72d0-41d5-bdc8-61339620dabc", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1257,15 +1305,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1664' + - '2170' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:23:49 GMT + - Tue, 14 Apr 2026 12:46:15 GMT Pragma: - no-cache RequestId: - - 40cc3763-9920-42a3-84dd-0c3ccc7192ec + - ca161ac5-08cc-4ddc-b7d7-08fc94f787a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1291,14 +1339,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items response: body: - string: '{"value": [{"id": "5633491d-51f5-47f1-8c0c-6a4e5b77ad5e", "type": "Map", + string: '{"value": [{"id": "a5d95751-904e-49da-9133-82024e534ca4", "type": "Map", "displayName": "fabcli000002 Renamed", "description": "Created by fab", "workspaceId": - "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f"}]}' + "19bbf7db-72d0-41d5-bdc8-61339620dabc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1311,11 +1359,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:23:50 GMT + - Tue, 14 Apr 2026 12:46:16 GMT Pragma: - no-cache RequestId: - - c21bd7a8-9493-4f2e-ac3d-2758644fbeb0 + - cc6f6675-7299-488c-9592-5402c626cab8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1343,9 +1391,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items/5633491d-51f5-47f1-8c0c-6a4e5b77ad5e + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items/a5d95751-904e-49da-9133-82024e534ca4 response: body: string: '' @@ -1361,11 +1409,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:23:50 GMT + - Tue, 14 Apr 2026 12:46:17 GMT Pragma: - no-cache RequestId: - - 1c32c5f9-dfcd-4676-a4ef-fe167f274b6d + - a471af9b-fae0-4498-80c3-381e158fb773 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1391,16 +1439,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "98a13383-ab9f-4d0d-ade6-cee53b5df502", + "My workspace", "description": "", "type": "Personal"}, {"id": "8ded5367-0146-4b90-ad17-61a688b83c81", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a98f0dfa-e50c-4d01-9bd3-3889d8516e7f", "displayName": "fabcli000001", + {"id": "19bbf7db-72d0-41d5-bdc8-61339620dabc", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1410,15 +1458,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1664' + - '2170' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:23:51 GMT + - Tue, 14 Apr 2026 12:46:18 GMT Pragma: - no-cache RequestId: - - 6176b478-4550-4691-b95a-d5d6c1647ddc + - daea254f-c0e1-4d61-a95c-2665d66feefd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1444,9 +1492,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc/items response: body: string: '{"value": []}' @@ -1462,11 +1510,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:23:52 GMT + - Tue, 14 Apr 2026 12:46:19 GMT Pragma: - no-cache RequestId: - - faf37e1e-e843-4632-be4a-632da0a837d2 + - 5fc7f700-005d-4376-8276-99bafd2ba398 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1494,9 +1542,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/a98f0dfa-e50c-4d01-9bd3-3889d8516e7f + uri: https://api.fabric.microsoft.com/v1/workspaces/19bbf7db-72d0-41d5-bdc8-61339620dabc response: body: string: '' @@ -1512,11 +1560,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:23:53 GMT + - Tue, 14 Apr 2026 12:46:20 GMT Pragma: - no-cache RequestId: - - f8efebc0-0ba5-4ca1-b194-e439c4897c06 + - 69143c9e-fc32-4d75-8a18-79e18b8c4153 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml index c4ec80325..3abe8d044 100644 --- a/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_rm/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2016' + - '2096' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:27:36 GMT + - Tue, 14 Apr 2026 12:48:16 GMT Pragma: - no-cache RequestId: - - 47d20dc1-0699-4153-a5a1-ed806141293b + - ee44870b-6d14-496c-b490-b4f614a5843b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2016' + - '2096' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:27:37 GMT + - Tue, 14 Apr 2026 12:48:17 GMT Pragma: - no-cache RequestId: - - 5b22d521-52c1-4cc8-bd8f-0bac087ec6d3 + - dc65c706-4d32-49ac-9fd2-25ee761bd1b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '427' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:27:40 GMT + - Tue, 14 Apr 2026 12:48:23 GMT Pragma: - no-cache RequestId: - - 156efe2a-558e-40ba-8322-8c9c84f8adf3 + - a5543400-ba01-499b-8cf1-3c24d3bd755e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (mv; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "48be342b-90a5-4d43-bd10-9484b96aab52", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "2dd107fb-4ef1-422f-9775-d8f3b673bb56", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '187' + - '189' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:27:49 GMT + - Tue, 14 Apr 2026 12:48:30 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52 + - https://api.fabric.microsoft.com/v1/workspaces/2dd107fb-4ef1-422f-9775-d8f3b673bb56 Pragma: - no-cache RequestId: - - 041e9553-b18d-4a7c-ac72-863700c70a9f + - 4c3dc534-67e9-48c0-afa3-44f74404a490 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -219,7 +219,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", + "My workspace", "description": "", "type": "Personal"}, {"id": "2dd107fb-4ef1-422f-9775-d8f3b673bb56", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2049' + - '2133' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:22 GMT + - Tue, 14 Apr 2026 12:49:05 GMT Pragma: - no-cache RequestId: - - 19637de4-8148-4c27-b5d5-c5a6a385ea9a + - 1bec134e-3032-4e7e-a255-f812bf1fddc7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -266,26 +266,13 @@ interactions: User-Agent: - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2dd107fb-4ef1-422f-9775-d8f3b673bb56/items response: body: - string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "26f080bf-3ec8-4ff6-9ea3-a34a85d16cba", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "2a3be8a2-c218-4f69-908e-bff1075e7782", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' + string: '{"value": [{"id": "1c478a2d-bec9-4fa5-9ad3-6e9d71ea345c", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2dd107fb-4ef1-422f-9775-d8f3b673bb56"}, + {"id": "2490d4d8-01b3-44a1-abbd-8e938f9987a8", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2dd107fb-4ef1-422f-9775-d8f3b673bb56"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -294,15 +281,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '446' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:22 GMT + - Tue, 14 Apr 2026 12:49:05 GMT Pragma: - no-cache RequestId: - - 7ae50fb7-2bbf-4f98-97c7-da3cc807ae46 + - 5e161c40-de76-4524-ac11-37954722ea8e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -332,7 +319,7 @@ interactions: User-Agent: - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52 + uri: https://api.fabric.microsoft.com/v1/workspaces/2dd107fb-4ef1-422f-9775-d8f3b673bb56 response: body: string: '' @@ -348,11 +335,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:29:23 GMT + - Tue, 14 Apr 2026 12:49:06 GMT Pragma: - no-cache RequestId: - - b3999a24-c64b-4b17-8498-c85478f3b00d + - cc1b1883-772d-4b77-a428-290301020e32 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[DigitalTwinBuilder].yaml index e291e5ef7..cf6f5a154 100644 --- a/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_item_without_force_success[DigitalTwinBuilder].yaml @@ -17,7 +17,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", + "My workspace", "description": "", "type": "Personal"}, {"id": "2dd107fb-4ef1-422f-9775-d8f3b673bb56", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2049' + - '2133' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:28:49 GMT + - Tue, 14 Apr 2026 12:48:32 GMT Pragma: - no-cache RequestId: - - a14afa83-915c-41e8-99c1-78b6750b9e9b + - b76b712d-4bff-434a-b370-8e99ac1017f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -64,22 +64,10 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2dd107fb-4ef1-422f-9775-d8f3b673bb56/items response: body: - string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -88,15 +76,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '383' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:28:50 GMT + - Tue, 14 Apr 2026 12:48:32 GMT Pragma: - no-cache RequestId: - - eb095cfe-109d-4fcd-b66d-655d90fca900 + - 95ae023e-3657-47ec-bf81-fbff75c9563a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -124,22 +112,10 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2dd107fb-4ef1-422f-9775-d8f3b673bb56/items response: body: - string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -148,15 +124,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '383' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:28:51 GMT + - Tue, 14 Apr 2026 12:48:33 GMT Pragma: - no-cache RequestId: - - aafe43a8-3c1d-41b6-a74e-66a85e5952f3 + - a1850da5-0e6d-482d-bb25-e1f6bd90561d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -187,7 +163,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/2dd107fb-4ef1-422f-9775-d8f3b673bb56/digitalTwinBuilders response: body: string: 'null' @@ -203,15 +179,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:28:53 GMT + - Tue, 14 Apr 2026 12:48:36 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1a839da-0ec8-4595-9492-1bfd9dd0bb0d + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9d0e227b-6e00-4ee0-b357-5772f25a1e54 Pragma: - no-cache RequestId: - - 03fad66d-64ad-4740-9ff5-779ab2df5f76 + - 661564cf-6d0b-4dbd-99eb-5a6ff20f0843 Retry-After: - '20' Strict-Transport-Security: @@ -225,7 +201,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d1a839da-0ec8-4595-9492-1bfd9dd0bb0d + - 9d0e227b-6e00-4ee0-b357-5772f25a1e54 status: code: 202 message: Accepted @@ -243,11 +219,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1a839da-0ec8-4595-9492-1bfd9dd0bb0d + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9d0e227b-6e00-4ee0-b357-5772f25a1e54 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:28:52.5933013", - "lastUpdatedTimeUtc": "2026-03-31T09:28:58.9863347", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:48:34.7969595", + "lastUpdatedTimeUtc": "2026-04-14T12:48:43.6405446", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -257,17 +233,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:13 GMT + - Tue, 14 Apr 2026 12:48:57 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1a839da-0ec8-4595-9492-1bfd9dd0bb0d/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9d0e227b-6e00-4ee0-b357-5772f25a1e54/result Pragma: - no-cache RequestId: - - c3207774-5d6e-4a42-abce-16848a873207 + - d47e9eab-f164-4499-9301-1a63836c2983 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -275,7 +251,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d1a839da-0ec8-4595-9492-1bfd9dd0bb0d + - 9d0e227b-6e00-4ee0-b357-5772f25a1e54 status: code: 200 message: OK @@ -293,12 +269,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d1a839da-0ec8-4595-9492-1bfd9dd0bb0d/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9d0e227b-6e00-4ee0-b357-5772f25a1e54/result response: body: - string: '{"id": "152a6d3d-e88a-4b4d-a210-9bcc31435dea", "type": "DigitalTwinBuilder", + string: '{"id": "25fee7c5-df93-45cc-ae89-cadbd485ef72", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "48be342b-90a5-4d43-bd10-9484b96aab52"}' + "2dd107fb-4ef1-422f-9775-d8f3b673bb56"}' headers: Access-Control-Expose-Headers: - RequestId @@ -309,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 31 Mar 2026 09:29:15 GMT + - Tue, 14 Apr 2026 12:48:58 GMT Pragma: - no-cache RequestId: - - 3217fa73-0ff7-4346-a992-1a0af418ae5d + - ae63e57f-374c-4bbd-9c27-4f10f4669e4e Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -343,7 +319,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", + "My workspace", "description": "", "type": "Personal"}, {"id": "2dd107fb-4ef1-422f-9775-d8f3b673bb56", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -354,15 +330,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2049' + - '2133' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:16 GMT + - Tue, 14 Apr 2026 12:48:59 GMT Pragma: - no-cache RequestId: - - 8e43e427-eb5c-43d2-948c-2b08fc5395cb + - c9cca1d5-6d1f-42a5-a9d7-8d3006137247 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -390,30 +366,18 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2dd107fb-4ef1-422f-9775-d8f3b673bb56/items response: body: - string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "26f080bf-3ec8-4ff6-9ea3-a34a85d16cba", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "1c478a2d-bec9-4fa5-9ad3-6e9d71ea345c", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2dd107fb-4ef1-422f-9775-d8f3b673bb56"}, + {"id": "25fee7c5-df93-45cc-ae89-cadbd485ef72", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", + "2dd107fb-4ef1-422f-9775-d8f3b673bb56"}, {"id": "2490d4d8-01b3-44a1-abbd-8e938f9987a8", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", + "workspaceId": "2dd107fb-4ef1-422f-9775-d8f3b673bb56"}, {"id": "e97a6ea4-3dc4-4fcf-9685-ea4603d47f8f", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "152a6d3d-e88a-4b4d-a210-9bcc31435dea", - "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": - "Created by fab", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "2a3be8a2-c218-4f69-908e-bff1075e7782", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "ca79e31f-4236-4969-8c8d-f56afef4b4c7", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' + "", "workspaceId": "2dd107fb-4ef1-422f-9775-d8f3b673bb56"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -422,15 +386,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '504' + - '317' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:17 GMT + - Tue, 14 Apr 2026 12:48:59 GMT Pragma: - no-cache RequestId: - - f5a2d292-3393-42d0-95f1-22488d9c62c6 + - aadaeb0f-febd-4a86-b84f-b558fb3e3f6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -460,7 +424,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items/152a6d3d-e88a-4b4d-a210-9bcc31435dea + uri: https://api.fabric.microsoft.com/v1/workspaces/2dd107fb-4ef1-422f-9775-d8f3b673bb56/items/25fee7c5-df93-45cc-ae89-cadbd485ef72 response: body: string: '' @@ -476,11 +440,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:29:18 GMT + - Tue, 14 Apr 2026 12:49:01 GMT Pragma: - no-cache RequestId: - - bff137a0-8507-4733-ab4d-d17c757154dc + - f89b7329-7021-4700-a3f6-e6df56d642ff Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -512,7 +476,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "48be342b-90a5-4d43-bd10-9484b96aab52", + "My workspace", "description": "", "type": "Personal"}, {"id": "2dd107fb-4ef1-422f-9775-d8f3b673bb56", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -523,15 +487,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2049' + - '2133' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:18 GMT + - Tue, 14 Apr 2026 12:49:02 GMT Pragma: - no-cache RequestId: - - 61542dc9-776a-4c97-a24f-b4738e7fc14d + - e6e2c010-f7d3-49c3-bf30-e7f2b0c563f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -559,26 +523,13 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2dd107fb-4ef1-422f-9775-d8f3b673bb56/items response: body: - string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "26f080bf-3ec8-4ff6-9ea3-a34a85d16cba", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "2a3be8a2-c218-4f69-908e-bff1075e7782", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' + string: '{"value": [{"id": "1c478a2d-bec9-4fa5-9ad3-6e9d71ea345c", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2dd107fb-4ef1-422f-9775-d8f3b673bb56"}, + {"id": "2490d4d8-01b3-44a1-abbd-8e938f9987a8", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2dd107fb-4ef1-422f-9775-d8f3b673bb56"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -587,15 +538,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '446' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:20 GMT + - Tue, 14 Apr 2026 12:49:03 GMT Pragma: - no-cache RequestId: - - 22cc6b62-ecdb-4688-b6e8-409d31281df8 + - 15b47ef3-f1e9-4b6c-8090-821470ae0e23 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -623,26 +574,13 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/48be342b-90a5-4d43-bd10-9484b96aab52/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2dd107fb-4ef1-422f-9775-d8f3b673bb56/items response: body: - string: '{"value": [{"id": "d4ed3077-fab1-45a6-86a0-75ab00a28a2a", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "af2d968f-42e9-44bc-b229-8039e5fb169e", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "26f080bf-3ec8-4ff6-9ea3-a34a85d16cba", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "5fea33af-3d34-46db-b268-e838c7748056", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, - {"id": "1cff1948-5c7c-4516-a852-e4724b4bff52", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "description": "Created by fab", "workspaceId": - "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "b0cb96e4-6aec-4d17-9b51-1b737898c808", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "730be7c7-59e9-4c76-9c18-9ea34c94149d", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}, {"id": "2a3be8a2-c218-4f69-908e-bff1075e7782", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "48be342b-90a5-4d43-bd10-9484b96aab52"}]}' + string: '{"value": [{"id": "1c478a2d-bec9-4fa5-9ad3-6e9d71ea345c", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2dd107fb-4ef1-422f-9775-d8f3b673bb56"}, + {"id": "2490d4d8-01b3-44a1-abbd-8e938f9987a8", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "2dd107fb-4ef1-422f-9775-d8f3b673bb56"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -651,15 +589,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '446' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:21 GMT + - Tue, 14 Apr 2026 12:49:03 GMT Pragma: - no-cache RequestId: - - b8065435-4011-47fa-abc3-7a9f4a63ba27 + - 045ef4d2-8e2f-49e0-b739-9a371a901bbc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: From 2744537a171ee66bc07f3bf81d5e57fddb5377df Mon Sep 17 00:00:00 2001 From: Alon Yeshurun Date: Tue, 14 Apr 2026 13:44:41 +0000 Subject: [PATCH 08/11] record --- .../test_commands/test_cp/class_setup.yaml | 42 +- ...tem_types_success[DigitalTwinBuilder].yaml | 1008 ++++++++--------- 2 files changed, 525 insertions(+), 525 deletions(-) diff --git a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml index 47501183a..ce148a3ce 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml @@ -30,11 +30,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:51:42 GMT + - Tue, 14 Apr 2026 13:36:29 GMT Pragma: - no-cache RequestId: - - 93ee9a51-3115-481d-acde-faddb0aa10d3 + - 8ad427f0-8710-40e1-89d8-45e2d38d9a2a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -79,11 +79,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:51:43 GMT + - Tue, 14 Apr 2026 13:36:30 GMT Pragma: - no-cache RequestId: - - c6ee49e1-cf22-4bce-bbcc-3b26ae6b7b3c + - 61486e8e-e16c-4d39-90d7-232c0c4cca16 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -129,11 +129,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:51:48 GMT + - Tue, 14 Apr 2026 13:36:35 GMT Pragma: - no-cache RequestId: - - 53249403-f634-4171-befe-bfbf456c1d40 + - 1ea8f697-c4c6-4a8c-8366-e746a8e3d6a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -167,7 +167,7 @@ interactions: uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "dd4a3840-6092-4010-b29b-05668197a9f5", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '188' + - '189' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:51:57 GMT + - Tue, 14 Apr 2026 13:36:42 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/dd4a3840-6092-4010-b29b-05668197a9f5 + - https://api.fabric.microsoft.com/v1/workspaces/c223b4ec-0be3-4bec-ac55-c75a2c335fb3 Pragma: - no-cache RequestId: - - aac25944-6deb-44e9-aaf6-7a07526cd8c1 + - 448f209f-afe8-4517-abdf-78fa509d11d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -219,7 +219,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2130' + - '2136' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:55:02 GMT + - Tue, 14 Apr 2026 13:39:37 GMT Pragma: - no-cache RequestId: - - 811909ce-899e-45e9-9476-971c54347ac9 + - b8e7f83b-6a31-4d86-aa90-aa1f8a2316fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -266,7 +266,7 @@ interactions: User-Agent: - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/dd4a3840-6092-4010-b29b-05668197a9f5/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c223b4ec-0be3-4bec-ac55-c75a2c335fb3/items response: body: string: '{"value": []}' @@ -282,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:55:02 GMT + - Tue, 14 Apr 2026 13:39:37 GMT Pragma: - no-cache RequestId: - - 26b2d0e1-5e2c-4eab-bc84-4d6c07cea88f + - 9ef07499-bc88-442c-b67a-b50ef3600314 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +316,7 @@ interactions: User-Agent: - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/dd4a3840-6092-4010-b29b-05668197a9f5 + uri: https://api.fabric.microsoft.com/v1/workspaces/c223b4ec-0be3-4bec-ac55-c75a2c335fb3 response: body: string: '' @@ -332,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:55:04 GMT + - Tue, 14 Apr 2026 13:39:38 GMT Pragma: - no-cache RequestId: - - 7a9f9bfc-f549-4b47-a1f5-eb70e9a7ef81 + - 6bc72256-8eaa-464f-9f2e-d1baf685ea27 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml index 597ec57b1..7d1c793f3 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml @@ -17,7 +17,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2130' + - '2136' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:51:58 GMT + - Tue, 14 Apr 2026 13:36:44 GMT Pragma: - no-cache RequestId: - - 8d19e056-a587-4a50-995a-ba18a72ab84f + - bd9c824b-62c4-4cdf-9c56-a5288bf1f950 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -68,7 +68,7 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -79,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2130' + - '2136' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:00 GMT + - Tue, 14 Apr 2026 13:36:44 GMT Pragma: - no-cache RequestId: - - 629668fe-72a9-4dc2-9e89-fd4d33602957 + - 702a0b3e-468a-457b-b43a-a83fcf6cf77b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -129,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '424' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:04 GMT + - Tue, 14 Apr 2026 13:36:48 GMT Pragma: - no-cache RequestId: - - 8a39cf43-6a9e-4761-8ef2-2cbf9d34c59f + - 3a510ff9-9d42-42d3-88b6-1faf0f3226ee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -171,7 +171,7 @@ interactions: uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + string: '{"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -181,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:13 GMT + - Tue, 14 Apr 2026 13:36:55 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64 + - https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5 Pragma: - no-cache RequestId: - - 1ef3024d-91a1-4362-a31a-5f203f9258ae + - fbb3fb2f-9ddc-4012-ab15-a9bd86e9a94b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -223,10 +223,10 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -236,15 +236,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2169' + - '2172' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:14 GMT + - Tue, 14 Apr 2026 13:36:56 GMT Pragma: - no-cache RequestId: - - 63e57f1d-b884-48a9-8d3c-e068b021509b + - c0deaecf-8360-4bdd-b816-023562282b20 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -276,10 +276,10 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -289,15 +289,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2169' + - '2172' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:14 GMT + - Tue, 14 Apr 2026 13:36:57 GMT Pragma: - no-cache RequestId: - - cd2e8f7f-8a7f-48e4-94c6-142c36d53b4c + - 30088ff3-d3f1-4a00-b341-ec1341b7878a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -339,15 +339,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '427' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:19 GMT + - Tue, 14 Apr 2026 13:37:01 GMT Pragma: - no-cache RequestId: - - 85532e2d-f61e-44c3-b6cb-33219be8d3c5 + - 1eb36be9-93c7-4fa4-ad30-8260bac4a2dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -381,7 +381,7 @@ interactions: uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + string: '{"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -391,17 +391,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:27 GMT + - Tue, 14 Apr 2026 13:37:08 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491 + - https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df Pragma: - no-cache RequestId: - - c2a53db5-25aa-4b95-b349-a602aed075a5 + - d2282747-7d9f-4514-8532-d598930e2c78 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -433,12 +433,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -448,15 +448,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:29 GMT + - Tue, 14 Apr 2026 13:37:08 GMT Pragma: - no-cache RequestId: - - b432ac7a-811e-4dae-935c-e1b781cad75b + - 9008bb78-5b7f-4f3a-a03c-c2513782f15f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -484,7 +484,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: string: '{"value": []}' @@ -500,11 +500,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:29 GMT + - Tue, 14 Apr 2026 13:37:09 GMT Pragma: - no-cache RequestId: - - c31e3c85-e2a4-45e9-b5cb-ff1fafd58ac2 + - 0e60453e-cb6f-4924-841e-75d5dd5d82f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -532,7 +532,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: string: '{"value": []}' @@ -548,11 +548,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:30 GMT + - Tue, 14 Apr 2026 13:37:09 GMT Pragma: - no-cache RequestId: - - 43f730c8-18a4-4697-af02-3d6aaebe9f34 + - f07bd17e-f29d-458b-8425-6fa2a8fa488a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -582,11 +582,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders response: body: - string: '{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": "fabcli000003", - "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}' + string: '{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": "fabcli000003", + "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -599,13 +599,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:30 GMT + - Tue, 14 Apr 2026 13:37:11 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders/0525ad50-e192-404e-91d4-54bb4c353412 + - https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders/0799bef2-c26b-4cb6-b4c7-be64c00e4238 Pragma: - no-cache RequestId: - - a40de048-2f75-4b1e-83b8-ef2dcca2a1e1 + - cd6250c5-acf3-43e2-ad5f-e5718232c169 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -637,12 +637,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -652,15 +652,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:32 GMT + - Tue, 14 Apr 2026 13:37:11 GMT Pragma: - no-cache RequestId: - - b4ca49b2-f2f8-47ff-bd40-2c4540d4a852 + - b6845194-c0bc-4b1d-90ca-365e88f01fc1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -688,11 +688,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -705,11 +705,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:32 GMT + - Tue, 14 Apr 2026 13:37:12 GMT Pragma: - no-cache RequestId: - - 9e300b03-f8b1-4adb-bc65-50bc1fb22168 + - e9c0d262-187e-47a2-b50c-33f623ee0066 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -737,7 +737,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items response: body: string: '{"value": []}' @@ -753,11 +753,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:33 GMT + - Tue, 14 Apr 2026 13:37:13 GMT Pragma: - no-cache RequestId: - - 8b31692a-5e4d-4f6c-b582-a48df099ec30 + - 4fcac074-05f8-4f5f-81f6-1ed906eaf35c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -785,7 +785,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items response: body: string: '{"value": []}' @@ -801,11 +801,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:34 GMT + - Tue, 14 Apr 2026 13:37:14 GMT Pragma: - no-cache RequestId: - - 8a1a8081-811d-4f25-877b-1bedc266834e + - 55e94e9a-d6c1-49d3-988d-f5dca25cae50 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -821,7 +821,7 @@ interactions: message: OK - request: body: '{"description": "Created by fab", "displayName": "fabcli000004", "type": - "DigitalTwinBuilder", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}' + "DigitalTwinBuilder", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}' headers: Accept: - '*/*' @@ -836,7 +836,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/digitalTwinBuilders response: body: string: 'null' @@ -852,15 +852,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:36 GMT + - Tue, 14 Apr 2026 13:37:17 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ac1e5-3304-44bf-b7de-0d668ef3069e + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ff240e4a-69c0-44d1-8f8d-caf7ab6e846c Pragma: - no-cache RequestId: - - 3f30de8f-1d0b-4eab-8e4b-b42e452a5cc4 + - b72ffb29-5467-4cfc-98a5-a83a0a6b921b Retry-After: - '20' Strict-Transport-Security: @@ -874,7 +874,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c33ac1e5-3304-44bf-b7de-0d668ef3069e + - ff240e4a-69c0-44d1-8f8d-caf7ab6e846c status: code: 202 message: Accepted @@ -892,11 +892,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ac1e5-3304-44bf-b7de-0d668ef3069e + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ff240e4a-69c0-44d1-8f8d-caf7ab6e846c response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:52:35.2903449", - "lastUpdatedTimeUtc": "2026-04-14T12:52:43.3221302", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T13:37:15.6727583", + "lastUpdatedTimeUtc": "2026-04-14T13:37:24.865826", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -910,13 +910,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:57 GMT + - Tue, 14 Apr 2026 13:37:37 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ac1e5-3304-44bf-b7de-0d668ef3069e/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ff240e4a-69c0-44d1-8f8d-caf7ab6e846c/result Pragma: - no-cache RequestId: - - c990c2a8-3d0a-4382-8db5-e8fa7bc06b01 + - 10931d4a-953d-48b5-ad34-c106e54c7aa7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -924,7 +924,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c33ac1e5-3304-44bf-b7de-0d668ef3069e + - ff240e4a-69c0-44d1-8f8d-caf7ab6e846c status: code: 200 message: OK @@ -942,12 +942,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c33ac1e5-3304-44bf-b7de-0d668ef3069e/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ff240e4a-69c0-44d1-8f8d-caf7ab6e846c/result response: body: - string: '{"id": "d6121b05-e186-424a-97f3-72999e258035", "type": "DigitalTwinBuilder", + string: '{"id": "825fa4cb-1de9-4015-a8f1-992bae854839", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}' + "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}' headers: Access-Control-Expose-Headers: - RequestId @@ -958,11 +958,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:52:58 GMT + - Tue, 14 Apr 2026 13:37:39 GMT Pragma: - no-cache RequestId: - - 9c2e303b-e533-49e9-b42c-926c06c56d36 + - 1d8aa99e-81c2-45ca-941d-6e112e579a19 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -992,12 +992,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1007,15 +1007,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:58 GMT + - Tue, 14 Apr 2026 13:37:39 GMT Pragma: - no-cache RequestId: - - ed052412-f59a-4de2-9799-9c4c4380cc5f + - afdc609a-4f61-4280-8f22-a81ce1698fdc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1043,11 +1043,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1060,11 +1060,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:52:58 GMT + - Tue, 14 Apr 2026 13:37:40 GMT Pragma: - no-cache RequestId: - - ce9c402f-ad98-4d69-ac63-872ef6775546 + - 61fc8690-4f4c-48dc-acab-ef6764b33e8d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1096,12 +1096,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1111,15 +1111,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:00 GMT + - Tue, 14 Apr 2026 13:37:40 GMT Pragma: - no-cache RequestId: - - 0b110345-6566-4430-9e09-b80b9c8bc5b7 + - 35fbf34d-4050-41db-a628-af70c9f85dc2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1151,12 +1151,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1166,15 +1166,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:01 GMT + - Tue, 14 Apr 2026 13:37:42 GMT Pragma: - no-cache RequestId: - - 46892677-d6a2-4e69-a38a-4987cefaec58 + - 49bfe150-0f63-428d-9719-e28de1011eb0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1202,7 +1202,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True response: body: string: '{"value": []}' @@ -1218,11 +1218,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:01 GMT + - Tue, 14 Apr 2026 13:37:43 GMT Pragma: - no-cache RequestId: - - 7186c6f0-4334-44b0-bb3b-f459d4344554 + - bd8ff687-424a-4775-ac36-029b332547f9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1250,7 +1250,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True response: body: string: '{"value": []}' @@ -1266,11 +1266,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:03 GMT + - Tue, 14 Apr 2026 13:37:43 GMT Pragma: - no-cache RequestId: - - c08d171e-f3aa-4478-bd34-39fb98e671dd + - 9313184b-3c60-4d38-a0df-79df26c08f70 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1300,11 +1300,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders response: body: - string: '{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": "fabcli000003", - "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}' + string: '{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": "fabcli000003", + "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1313,17 +1313,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:04 GMT + - Tue, 14 Apr 2026 13:37:44 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders/f7f26ce6-e87f-4927-86d1-a2d6b51ec57d + - https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders/e357ca89-950c-4b09-b468-564ae3f73464 Pragma: - no-cache RequestId: - - 4f76adc6-b23f-4a49-8a37-d1d2f43225f4 + - 5f04fe72-73d9-4a0a-a47c-147197c3a3fe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1351,20 +1351,20 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items response: body: - string: '{"value": [{"id": "2a48c76c-edb0-4779-807b-009b9a985031", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", - "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "d6121b05-e186-424a-97f3-72999e258035", + string: '{"value": [{"id": "f9b3bdcf-e9c4-42db-9655-8ca5e8c59fdc", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", + "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "825fa4cb-1de9-4015-a8f1-992bae854839", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": - "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "b39f9fda-5cc2-4af5-8503-0148852f2669", + "Created by fab", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": + "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "e961087d-b953-4916-81e4-0d09f6af97e8", "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, - {"id": "03f4bcf6-f6fc-434d-abce-228e1e5d6045", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", - "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}]}' + "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, + {"id": "7e422f5b-e6cc-4832-83e0-ec98a0b346f8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", + "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1373,15 +1373,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '347' + - '349' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:04 GMT + - Tue, 14 Apr 2026 13:37:45 GMT Pragma: - no-cache RequestId: - - c9a112ca-8626-43c8-818f-9694f3b8c256 + - cd1c1623-1314-4c9c-8d1e-73e2bc06554c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1409,11 +1409,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1426,11 +1426,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:04 GMT + - Tue, 14 Apr 2026 13:37:46 GMT Pragma: - no-cache RequestId: - - fdd5af87-5952-4ce5-a86d-b92fa1d96f09 + - cf8b94af-b714-46e9-8976-2feeb0371f1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1458,11 +1458,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1475,11 +1475,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:05 GMT + - Tue, 14 Apr 2026 13:37:47 GMT Pragma: - no-cache RequestId: - - e0680a38-b924-4228-aca4-f251ceb9f1b3 + - dd41993e-d594-45a8-abdd-2717a2e03c82 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1507,11 +1507,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1524,11 +1524,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:06 GMT + - Tue, 14 Apr 2026 13:37:46 GMT Pragma: - no-cache RequestId: - - e2f1e298-7b9f-4a04-bd75-dfca70a849b0 + - 536a44dc-480d-4ea5-bd37-f139af290b71 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1556,11 +1556,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1573,11 +1573,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:06 GMT + - Tue, 14 Apr 2026 13:37:47 GMT Pragma: - no-cache RequestId: - - 7f88ecda-f838-42fc-8dc5-0c3a8d05a0b2 + - 7256d2bd-d0ef-4529-ae95-e57eef4e6dab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1605,11 +1605,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1622,11 +1622,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:06 GMT + - Tue, 14 Apr 2026 13:37:48 GMT Pragma: - no-cache RequestId: - - a8a2537b-40f0-45d6-8ca5-481f59ce8fc4 + - 65382149-b096-4834-afcf-bc2be938c89f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1654,20 +1654,20 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items response: body: - string: '{"value": [{"id": "2a48c76c-edb0-4779-807b-009b9a985031", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", - "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "d6121b05-e186-424a-97f3-72999e258035", + string: '{"value": [{"id": "f9b3bdcf-e9c4-42db-9655-8ca5e8c59fdc", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", + "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "825fa4cb-1de9-4015-a8f1-992bae854839", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": - "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "b39f9fda-5cc2-4af5-8503-0148852f2669", + "Created by fab", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": + "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "e961087d-b953-4916-81e4-0d09f6af97e8", "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, - {"id": "03f4bcf6-f6fc-434d-abce-228e1e5d6045", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", - "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}]}' + "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, + {"id": "7e422f5b-e6cc-4832-83e0-ec98a0b346f8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", + "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1676,15 +1676,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '347' + - '349' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:08 GMT + - Tue, 14 Apr 2026 13:37:49 GMT Pragma: - no-cache RequestId: - - e5c2bb77-9f25-4b53-adba-438639e3b172 + - 06907ebc-e8e4-4a2f-8a6a-264c66fd4b6a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1712,11 +1712,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1729,11 +1729,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:09 GMT + - Tue, 14 Apr 2026 13:37:50 GMT Pragma: - no-cache RequestId: - - 7245bec7-e791-45ac-bf8b-28ba86511f36 + - f9f254b6-a06b-46da-94db-bfc314193f42 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1761,11 +1761,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1778,11 +1778,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:10 GMT + - Tue, 14 Apr 2026 13:37:50 GMT Pragma: - no-cache RequestId: - - 634fb72d-d67f-4f8c-a129-5c8d35b7d509 + - e765fdd9-dde3-477f-a87f-930b381af3fb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1810,11 +1810,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1827,11 +1827,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:11 GMT + - Tue, 14 Apr 2026 13:37:51 GMT Pragma: - no-cache RequestId: - - f7d38bb7-ff06-4a30-806a-cd0c75d70d3d + - bb57bf96-1d5a-491e-a60b-fe28146a2ee3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1859,11 +1859,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1876,11 +1876,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:11 GMT + - Tue, 14 Apr 2026 13:37:52 GMT Pragma: - no-cache RequestId: - - a591763d-2fce-4981-a0a8-de4faef84686 + - dbb60747-6d1e-4ecc-bff4-87a2cecedb32 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1908,11 +1908,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1925,11 +1925,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:11 GMT + - Tue, 14 Apr 2026 13:37:52 GMT Pragma: - no-cache RequestId: - - 1e070128-2ff8-4712-8786-eebe5d4320fc + - 363da519-4b49-4c2f-9f27-ac4e83e2964b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1961,12 +1961,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1976,15 +1976,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:13 GMT + - Tue, 14 Apr 2026 13:37:53 GMT Pragma: - no-cache RequestId: - - 5f32836e-ebba-40dc-b8d1-9ab8966a3129 + - f0bb7438-a4cb-4050-85b5-ff9a763db89b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2012,11 +2012,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True response: body: - string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": - "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' + string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": + "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2025,15 +2025,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:12 GMT + - Tue, 14 Apr 2026 13:37:54 GMT Pragma: - no-cache RequestId: - - 0cd5cdff-7cd5-41ad-8159-ee4ee01f2e7b + - 3fbb6a0c-9148-428c-8ab7-6d970bed3a65 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2061,7 +2061,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items response: body: string: '{"value": []}' @@ -2077,11 +2077,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:13 GMT + - Tue, 14 Apr 2026 13:37:54 GMT Pragma: - no-cache RequestId: - - 4584acf2-d4f6-40d0-a38c-b4bf22c673b6 + - 6cd17214-7596-4f59-9eb9-a8dae7434c58 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2109,7 +2109,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items response: body: string: '{"value": []}' @@ -2125,11 +2125,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:14 GMT + - Tue, 14 Apr 2026 13:37:54 GMT Pragma: - no-cache RequestId: - - 963d4597-6e6b-4509-8279-025ad4100c68 + - 9e0f2f1e-c703-438a-a42a-d9181281d6fe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2157,7 +2157,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items response: body: string: '{"value": []}' @@ -2173,11 +2173,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:15 GMT + - Tue, 14 Apr 2026 13:37:55 GMT Pragma: - no-cache RequestId: - - d1c7292f-517f-400a-8bdd-c3a51269d554 + - 3f6f5047-87e9-4e7a-80b7-3f35de602df7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2205,12 +2205,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items/d6121b05-e186-424a-97f3-72999e258035 + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items/825fa4cb-1de9-4015-a8f1-992bae854839 response: body: - string: '{"id": "d6121b05-e186-424a-97f3-72999e258035", "type": "DigitalTwinBuilder", + string: '{"id": "825fa4cb-1de9-4015-a8f1-992bae854839", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}' + "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -2219,17 +2219,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '206' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:15 GMT + - Tue, 14 Apr 2026 13:37:56 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0962bc37-18b4-4af3-b35c-f467d26d89f2 + - f590ccbd-bd4f-4f98-ae94-f6a681e604e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2259,7 +2259,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items/d6121b05-e186-424a-97f3-72999e258035/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items/825fa4cb-1de9-4015-a8f1-992bae854839/getDefinition response: body: string: 'null' @@ -2275,13 +2275,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:17 GMT + - Tue, 14 Apr 2026 13:37:57 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b0f1b0d-ee42-4697-b428-038c17a31bb6 Pragma: - no-cache RequestId: - - 4c72efb5-e4e1-4893-85c0-a4233ca27c92 + - 9de16c1c-e895-4f36-8d34-eab346b701e7 Retry-After: - '20' Strict-Transport-Security: @@ -2295,7 +2295,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f + - 5b0f1b0d-ee42-4697-b428-038c17a31bb6 status: code: 202 message: Accepted @@ -2313,11 +2313,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b0f1b0d-ee42-4697-b428-038c17a31bb6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:53:17.2093882", - "lastUpdatedTimeUtc": "2026-04-14T12:53:18.2054182", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T13:37:57.84059", + "lastUpdatedTimeUtc": "2026-04-14T13:38:00.7365833", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2327,17 +2327,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:38 GMT + - Tue, 14 Apr 2026 13:38:17 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b0f1b0d-ee42-4697-b428-038c17a31bb6/result Pragma: - no-cache RequestId: - - c366cc21-e8c2-4f16-be53-b6c051400851 + - b7deb843-b9f2-4090-b143-3853111e9bac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2345,7 +2345,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f + - 5b0f1b0d-ee42-4697-b428-038c17a31bb6 status: code: 200 message: OK @@ -2363,10 +2363,10 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f0e0ccfb-edc9-4f29-892f-c8fa19b2ad9f/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b0f1b0d-ee42-4697-b428-038c17a31bb6/result response: body: - string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiYjM5ZjlmZGEtNWNjMi00YWY1LTg1MDMtMDE0ODg1MmYyNjY5Ig0KfQ==", + string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiZTk2MTA4N2QtYjk1My00OTE2LTgxZTQtMGQwOWY2YWY5N2U4Ig0KfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: @@ -2379,11 +2379,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:53:39 GMT + - Tue, 14 Apr 2026 13:38:19 GMT Pragma: - no-cache RequestId: - - 779f39ba-da7f-4c4b-8e33-bdb520a73689 + - dc28666e-f487-4d63-86fb-9226ae27277d Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2398,9 +2398,9 @@ interactions: - request: body: '{"type": "DigitalTwinBuilder", "description": "Created by fab", "displayName": "fabcli000004", "definition": {"parts": [{"path": "definition.json", "payload": - "ew0KICAiTGFrZWhvdXNlSWQiOiAiYjM5ZjlmZGEtNWNjMi00YWY1LTg1MDMtMDE0ODg1MmYyNjY5Ig0KfQ==", + "ew0KICAiTGFrZWhvdXNlSWQiOiAiZTk2MTA4N2QtYjk1My00OTE2LTgxZTQtMGQwOWY2YWY5N2U4Ig0KfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d"}' + "payloadType": "InlineBase64"}]}, "folderId": "e357ca89-950c-4b09-b468-564ae3f73464"}' headers: Accept: - '*/*' @@ -2415,7 +2415,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items response: body: string: 'null' @@ -2431,15 +2431,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:53:43 GMT + - Tue, 14 Apr 2026 13:38:22 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f Pragma: - no-cache RequestId: - - 7ee22881-5fe3-46dd-ae30-6ef0b8fc1090 + - 9d693e53-633b-4e49-b2d4-55af05df7229 Retry-After: - '20' Strict-Transport-Security: @@ -2453,7 +2453,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 58f3c37e-1854-46fa-86d6-561564144eca + - 2e45df85-e182-4767-b327-fb067a8bac9f status: code: 202 message: Accepted @@ -2471,11 +2471,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f response: body: - string: '{"status": "Running", "createdTimeUtc": "2026-04-14T12:53:42.256408", - "lastUpdatedTimeUtc": "2026-04-14T12:53:42.256408", "percentComplete": null, + string: '{"status": "Running", "createdTimeUtc": "2026-04-14T13:38:20.7393992", + "lastUpdatedTimeUtc": "2026-04-14T13:38:20.7393992", "percentComplete": null, "error": null}' headers: Access-Control-Expose-Headers: @@ -2485,17 +2485,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '122' + - '123' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:04 GMT + - Tue, 14 Apr 2026 13:38:43 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f Pragma: - no-cache RequestId: - - 5c2442f6-8ba4-4950-a1e3-1d520278baf2 + - d7ac8719-4a28-46fc-934b-3be610b0cad2 Retry-After: - '20' Strict-Transport-Security: @@ -2505,7 +2505,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 58f3c37e-1854-46fa-86d6-561564144eca + - 2e45df85-e182-4767-b327-fb067a8bac9f status: code: 200 message: OK @@ -2523,11 +2523,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T12:53:42.256408", - "lastUpdatedTimeUtc": "2026-04-14T12:54:13.0928411", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T13:38:20.7393992", + "lastUpdatedTimeUtc": "2026-04-14T13:38:51.4669303", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2541,13 +2541,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:25 GMT + - Tue, 14 Apr 2026 13:39:04 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f/result Pragma: - no-cache RequestId: - - 43f591c1-bd24-4d45-b6ae-25c8d6b43df3 + - 116fa5cd-d6fc-4f4a-9a41-975eb8ba8858 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2555,7 +2555,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 58f3c37e-1854-46fa-86d6-561564144eca + - 2e45df85-e182-4767-b327-fb067a8bac9f status: code: 200 message: OK @@ -2573,12 +2573,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/58f3c37e-1854-46fa-86d6-561564144eca/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f/result response: body: - string: '{"id": "9cf6bf01-0f07-42a5-92b1-22808e732c50", "type": "DigitalTwinBuilder", + string: '{"id": "cc6b46e9-5836-47dc-af04-5c278d45b67e", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "d9cad26d-d6b7-426c-81db-5271f6008491", "folderId": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d"}' + "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "folderId": "e357ca89-950c-4b09-b468-564ae3f73464"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2589,11 +2589,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 14 Apr 2026 12:54:26 GMT + - Tue, 14 Apr 2026 13:39:05 GMT Pragma: - no-cache RequestId: - - 1c946eaf-eab4-4c77-9c65-e8d7aadfd608 + - ab5c690c-360d-4b1b-b899-acbb802877d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2619,20 +2619,20 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items response: body: - string: '{"value": [{"id": "2a48c76c-edb0-4779-807b-009b9a985031", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", - "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "d6121b05-e186-424a-97f3-72999e258035", + string: '{"value": [{"id": "f9b3bdcf-e9c4-42db-9655-8ca5e8c59fdc", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", + "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "825fa4cb-1de9-4015-a8f1-992bae854839", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": - "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "b39f9fda-5cc2-4af5-8503-0148852f2669", + "Created by fab", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": + "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "e961087d-b953-4916-81e4-0d09f6af97e8", "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, - {"id": "03f4bcf6-f6fc-434d-abce-228e1e5d6045", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", - "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}]}' + "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, + {"id": "7e422f5b-e6cc-4832-83e0-ec98a0b346f8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", + "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2641,15 +2641,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '347' + - '349' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:28 GMT + - Tue, 14 Apr 2026 13:39:06 GMT Pragma: - no-cache RequestId: - - a872a536-f2cd-4ec4-972b-2da7c116e2a0 + - 5b8646fc-44b5-4222-811d-3c1f47351ff1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2677,11 +2677,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2694,11 +2694,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:28 GMT + - Tue, 14 Apr 2026 13:39:07 GMT Pragma: - no-cache RequestId: - - d343eac4-6290-4c47-ad52-87db10903d38 + - 6ca2a5ac-7fdd-4456-b90c-ae59a7c11268 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2726,11 +2726,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2743,11 +2743,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:30 GMT + - Tue, 14 Apr 2026 13:39:08 GMT Pragma: - no-cache RequestId: - - 7e15bb7a-e151-400e-ad62-f55588708e67 + - 330cdadc-b22d-4b36-bc4d-4df6640e77c5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2775,11 +2775,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2792,11 +2792,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:30 GMT + - Tue, 14 Apr 2026 13:39:08 GMT Pragma: - no-cache RequestId: - - ef255cec-61b1-48e0-9d05-82e20b24d417 + - 0a9e4274-8a20-434c-826f-6f489a529f15 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2824,11 +2824,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2841,11 +2841,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:31 GMT + - Tue, 14 Apr 2026 13:39:10 GMT Pragma: - no-cache RequestId: - - 426c435d-926d-4afe-bcd3-ca1c4e9b684e + - a1ca1512-d06b-44d7-9a3b-3ba66ed3c7ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2873,11 +2873,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2890,11 +2890,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:32 GMT + - Tue, 14 Apr 2026 13:39:10 GMT Pragma: - no-cache RequestId: - - 6d36ba01-4128-471d-8639-8d0fb904ac25 + - 4679a3c8-93e1-4560-9ed7-754518aa0c19 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2926,12 +2926,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -2941,15 +2941,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:33 GMT + - Tue, 14 Apr 2026 13:39:10 GMT Pragma: - no-cache RequestId: - - c4d113d9-99f6-4e4a-9ca7-53354837fac0 + - a95e6604-a3a1-4d88-b621-8a11a6e36b4e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2977,12 +2977,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items response: body: - string: '{"value": [{"id": "9cf6bf01-0f07-42a5-92b1-22808e732c50", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "cc6b46e9-5836-47dc-af04-5c278d45b67e", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "d9cad26d-d6b7-426c-81db-5271f6008491", "folderId": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d"}]}' + "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "folderId": "e357ca89-950c-4b09-b468-564ae3f73464"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2991,15 +2991,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '216' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:34 GMT + - Tue, 14 Apr 2026 13:39:12 GMT Pragma: - no-cache RequestId: - - 42f43d00-d0a2-4a60-9b71-79fd0be5ca22 + - aa286da5-a720-4963-a7e6-749fe1ae7ace Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3027,11 +3027,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True response: body: - string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": - "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' + string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": + "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3040,15 +3040,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:35 GMT + - Tue, 14 Apr 2026 13:39:12 GMT Pragma: - no-cache RequestId: - - 55b56755-701d-4e42-936d-f38f3df7f80a + - cb683666-1a67-4024-9f89-8568896f25b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3076,11 +3076,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True response: body: - string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": - "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' + string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": + "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3089,15 +3089,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:35 GMT + - Tue, 14 Apr 2026 13:39:14 GMT Pragma: - no-cache RequestId: - - 0aaf1cf9-9c3c-4b02-b082-2f44156ab2b4 + - f40405be-89ad-4f0e-b438-da1fbf0201da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3129,12 +3129,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3144,15 +3144,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:37 GMT + - Tue, 14 Apr 2026 13:39:14 GMT Pragma: - no-cache RequestId: - - cdd4edf3-674c-44c4-8730-dc689f04c87b + - 85e2e36d-0ffa-4035-9152-5995cd267a95 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3180,11 +3180,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True response: body: - string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": - "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' + string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": + "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3193,15 +3193,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:37 GMT + - Tue, 14 Apr 2026 13:39:15 GMT Pragma: - no-cache RequestId: - - e3d10656-6ca6-4bb1-a63d-f73dc98ad586 + - 93cc3bb4-a06f-42f5-ba83-997c77158ef4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3229,12 +3229,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items response: body: - string: '{"value": [{"id": "9cf6bf01-0f07-42a5-92b1-22808e732c50", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "cc6b46e9-5836-47dc-af04-5c278d45b67e", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "d9cad26d-d6b7-426c-81db-5271f6008491", "folderId": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d"}]}' + "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "folderId": "e357ca89-950c-4b09-b468-564ae3f73464"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3243,15 +3243,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '216' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:38 GMT + - Tue, 14 Apr 2026 13:39:15 GMT Pragma: - no-cache RequestId: - - 6dfa58a5-0c47-4104-8f4b-9bf00c75e759 + - 3a7cec60-730b-4ab7-a4a1-f2a13ee25caf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3279,11 +3279,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True response: body: - string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": - "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' + string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": + "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3292,15 +3292,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:39 GMT + - Tue, 14 Apr 2026 13:39:16 GMT Pragma: - no-cache RequestId: - - 6170ee41-8931-45f4-b062-5674f38226cc + - e1f1b1d2-7007-4f02-93b2-a78ac3a8e3db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3328,11 +3328,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True response: body: - string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": - "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' + string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": + "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3341,15 +3341,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:40 GMT + - Tue, 14 Apr 2026 13:39:17 GMT Pragma: - no-cache RequestId: - - 9c038267-e863-450b-ad2b-5158e8d0828d + - 0d07edc1-7940-4ad6-bf88-10f29e5892d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3381,12 +3381,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3396,15 +3396,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:41 GMT + - Tue, 14 Apr 2026 13:39:18 GMT Pragma: - no-cache RequestId: - - f65c0e76-8f57-4c46-b8a4-cc17a094a9dc + - 6ddf75ad-c047-4c07-a6db-d08d2a04abad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3432,11 +3432,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True response: body: - string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": - "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' + string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": + "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3445,15 +3445,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:41 GMT + - Tue, 14 Apr 2026 13:39:19 GMT Pragma: - no-cache RequestId: - - 38eb13d3-12a1-42f3-b311-8e4ce8bed1a8 + - 812d6823-87e3-4ad3-aca0-43ae13a2ba00 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3481,12 +3481,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items response: body: - string: '{"value": [{"id": "9cf6bf01-0f07-42a5-92b1-22808e732c50", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "cc6b46e9-5836-47dc-af04-5c278d45b67e", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "d9cad26d-d6b7-426c-81db-5271f6008491", "folderId": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d"}]}' + "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "folderId": "e357ca89-950c-4b09-b468-564ae3f73464"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3495,15 +3495,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '216' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:42 GMT + - Tue, 14 Apr 2026 13:39:20 GMT Pragma: - no-cache RequestId: - - d46439fa-313a-4ff7-b056-4695f515bb9c + - d100cbdf-9f58-4318-8db3-c043f04ebca9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3531,11 +3531,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True response: body: - string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": - "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' + string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": + "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3544,15 +3544,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:42 GMT + - Tue, 14 Apr 2026 13:39:20 GMT Pragma: - no-cache RequestId: - - 92ff60dc-6bd3-44ed-92ac-6185e7497025 + - 56339b6b-8e78-4e64-9096-dd96c810ef14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3582,7 +3582,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items/9cf6bf01-0f07-42a5-92b1-22808e732c50 + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items/cc6b46e9-5836-47dc-af04-5c278d45b67e response: body: string: '' @@ -3598,11 +3598,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:54:44 GMT + - Tue, 14 Apr 2026 13:39:21 GMT Pragma: - no-cache RequestId: - - 137b6fd8-adfa-4505-9948-b6a8cddfe1cf + - 8b55c79e-8045-4963-b323-618508153636 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3634,12 +3634,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3649,15 +3649,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:45 GMT + - Tue, 14 Apr 2026 13:39:22 GMT Pragma: - no-cache RequestId: - - b148481d-0732-441e-a3a7-e4d8353fffaa + - 3ce0659e-e043-4cad-b49d-52f6dca8ef8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3685,11 +3685,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True response: body: - string: '{"value": [{"id": "f7f26ce6-e87f-4927-86d1-a2d6b51ec57d", "displayName": - "fabcli000003", "workspaceId": "d9cad26d-d6b7-426c-81db-5271f6008491"}]}' + string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": + "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3698,15 +3698,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:46 GMT + - Tue, 14 Apr 2026 13:39:23 GMT Pragma: - no-cache RequestId: - - 92e80b56-dffd-437d-88ed-42db0bfc7d11 + - 928681d3-511c-487b-9df5-0e229aa98a67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3736,7 +3736,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/folders/f7f26ce6-e87f-4927-86d1-a2d6b51ec57d + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders/e357ca89-950c-4b09-b468-564ae3f73464 response: body: string: '' @@ -3752,11 +3752,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:54:47 GMT + - Tue, 14 Apr 2026 13:39:24 GMT Pragma: - no-cache RequestId: - - 48eebd71-eaab-4364-817b-faae8cf68fa3 + - 74de4020-002c-4a06-8fea-ce1c7442f256 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3788,12 +3788,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3803,15 +3803,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:48 GMT + - Tue, 14 Apr 2026 13:39:25 GMT Pragma: - no-cache RequestId: - - 02ba24c4-ea3e-4f1a-9705-a9d0bbba0f62 + - 1b59e774-5d23-4de0-b153-47b5a08ca966 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3839,11 +3839,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3856,11 +3856,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:48 GMT + - Tue, 14 Apr 2026 13:39:26 GMT Pragma: - no-cache RequestId: - - a681f967-6556-40cf-8465-5f56bf29909b + - 710a6257-4da0-4895-8086-1e8fb190c818 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3888,20 +3888,20 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items response: body: - string: '{"value": [{"id": "2a48c76c-edb0-4779-807b-009b9a985031", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", - "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "d6121b05-e186-424a-97f3-72999e258035", + string: '{"value": [{"id": "f9b3bdcf-e9c4-42db-9655-8ca5e8c59fdc", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", + "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "825fa4cb-1de9-4015-a8f1-992bae854839", "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": - "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "b39f9fda-5cc2-4af5-8503-0148852f2669", + "Created by fab", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": + "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "e961087d-b953-4916-81e4-0d09f6af97e8", "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, - {"id": "03f4bcf6-f6fc-434d-abce-228e1e5d6045", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", - "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}]}' + "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, + {"id": "7e422f5b-e6cc-4832-83e0-ec98a0b346f8", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", + "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3910,15 +3910,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '347' + - '349' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:49 GMT + - Tue, 14 Apr 2026 13:39:26 GMT Pragma: - no-cache RequestId: - - 9f9053bc-16ad-4ca9-bb2b-5ceeadc90e5d + - 8ec8f5b7-87ff-4286-a10c-deeefa228a22 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3946,11 +3946,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3963,11 +3963,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:49 GMT + - Tue, 14 Apr 2026 13:39:27 GMT Pragma: - no-cache RequestId: - - 1aa6ecc6-cecd-44e2-94ce-06f9bf3b98fc + - 1b8230ac-86b1-4be6-847e-31dec3f51436 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3995,11 +3995,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4012,11 +4012,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:49 GMT + - Tue, 14 Apr 2026 13:39:28 GMT Pragma: - no-cache RequestId: - - 82de6372-9013-4799-bfbd-7dd3bd19320c + - 55d8b193-846d-4c16-8cbf-217c9fbd6a77 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4044,11 +4044,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4061,11 +4061,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:50 GMT + - Tue, 14 Apr 2026 13:39:29 GMT Pragma: - no-cache RequestId: - - 58b1ee66-fd0a-4b59-8d0e-845e58e35141 + - a505f168-7038-48de-9b36-c5e27070849b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4093,11 +4093,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4110,11 +4110,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:51 GMT + - Tue, 14 Apr 2026 13:39:29 GMT Pragma: - no-cache RequestId: - - 0f75e7eb-610e-4be2-ae6b-2c2cb92de481 + - 167c11fe-0855-43bb-b1c1-e83da1eaa923 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4144,7 +4144,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items/d6121b05-e186-424a-97f3-72999e258035 + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items/825fa4cb-1de9-4015-a8f1-992bae854839 response: body: string: '' @@ -4160,11 +4160,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:54:52 GMT + - Tue, 14 Apr 2026 13:39:30 GMT Pragma: - no-cache RequestId: - - 1b6780d6-878d-499b-ba14-f6d9cf0cb9c3 + - bc2b25d2-5d91-4de9-b28a-90bd6a6e8673 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4196,12 +4196,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -4211,15 +4211,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:53 GMT + - Tue, 14 Apr 2026 13:39:31 GMT Pragma: - no-cache RequestId: - - de941030-d5e7-4811-919e-dfa53b22e215 + - cca7c2c5-bf4e-40aa-8c32-0d3ef2234d04 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4247,11 +4247,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4264,11 +4264,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:54 GMT + - Tue, 14 Apr 2026 13:39:31 GMT Pragma: - no-cache RequestId: - - cbbd98f4-0855-4208-a392-7a7dc80f408a + - b4e62723-47ba-4fc6-aa06-b3f163eddeb3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4298,12 +4298,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders/0525ad50-e192-404e-91d4-54bb4c353412 + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders/0799bef2-c26b-4cb6-b4c7-be64c00e4238 response: body: - string: '{"requestId": "bf24d1e5-0275-4b83-ac1c-7982629e14f8", "errorCode": + string: '{"requestId": "ae833f77-831a-43f9-8b70-01e9a8ada547", "errorCode": "FolderNotEmpty", "message": "The requested folder was not empty.", "relatedResource": - {"resourceId": "0525ad50-e192-404e-91d4-54bb4c353412", "resourceType": "Folder"}}' + {"resourceId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "resourceType": "Folder"}}' headers: Access-Control-Expose-Headers: - RequestId @@ -4312,11 +4312,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:54 GMT + - Tue, 14 Apr 2026 13:39:31 GMT Pragma: - no-cache RequestId: - - bf24d1e5-0275-4b83-ac1c-7982629e14f8 + - ae833f77-831a-43f9-8b70-01e9a8ada547 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -4352,12 +4352,12 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "displayName": "fabcli000001", + {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -4367,15 +4367,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2205' + - '2209' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:56 GMT + - Tue, 14 Apr 2026 13:39:32 GMT Pragma: - no-cache RequestId: - - 602852fb-155e-4a1d-9e71-e73f57f2f939 + - ab8944d4-4ff7-4f11-bcab-6531160384e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4403,14 +4403,14 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/items + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items response: body: - string: '{"value": [{"id": "2a48c76c-edb0-4779-807b-009b9a985031", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", - "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}, {"id": "b39f9fda-5cc2-4af5-8503-0148852f2669", + string: '{"value": [{"id": "f9b3bdcf-e9c4-42db-9655-8ca5e8c59fdc", "type": "SQLEndpoint", + "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", + "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "e961087d-b953-4916-81e4-0d09f6af97e8", "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64", "folderId": "0525ad50-e192-404e-91d4-54bb4c353412"}]}' + "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4423,11 +4423,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:55 GMT + - Tue, 14 Apr 2026 13:39:33 GMT Pragma: - no-cache RequestId: - - deee9979-58f9-458f-bd83-9261e3506acd + - 3a1debcb-0eba-4ed4-acde-d479eb78e6e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4455,11 +4455,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4472,11 +4472,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:56 GMT + - Tue, 14 Apr 2026 13:39:33 GMT Pragma: - no-cache RequestId: - - ef0e14e5-79b5-49d6-a8bb-7a83ad13f3a8 + - 2d394be4-ad5f-47c2-bc33-0e3627f113e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4504,11 +4504,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True response: body: - string: '{"value": [{"id": "0525ad50-e192-404e-91d4-54bb4c353412", "displayName": - "fabcli000003", "workspaceId": "ed96e1b1-f566-4956-9f70-572eb26c1c64"}]}' + string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": + "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4521,11 +4521,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:56 GMT + - Tue, 14 Apr 2026 13:39:33 GMT Pragma: - no-cache RequestId: - - ba4edbca-5258-46f2-99b7-0173c176798f + - b2e2d777-7e45-4dcb-bb18-d3af1db8aaf4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4555,7 +4555,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/ed96e1b1-f566-4956-9f70-572eb26c1c64 + uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5 response: body: string: '' @@ -4571,11 +4571,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:54:58 GMT + - Tue, 14 Apr 2026 13:39:34 GMT Pragma: - no-cache RequestId: - - f97d7f7d-f93b-45f0-a4f8-c9b9aaa62f27 + - 194ba7ab-9778-496b-ba79-d866fec2635a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4607,10 +4607,10 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "dd4a3840-6092-4010-b29b-05668197a9f5", + "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d9cad26d-d6b7-426c-81db-5271f6008491", "displayName": "fabcli000002", + {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -4620,15 +4620,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2167' + - '2173' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:54:59 GMT + - Tue, 14 Apr 2026 13:39:35 GMT Pragma: - no-cache RequestId: - - f76f831a-d586-4fb8-9f93-df8938974278 + - 66301136-f155-4a20-b2db-e794742e9709 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4656,7 +4656,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491/items + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items response: body: string: '{"value": []}' @@ -4672,11 +4672,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 12:55:00 GMT + - Tue, 14 Apr 2026 13:39:35 GMT Pragma: - no-cache RequestId: - - 13ee337f-ca70-4746-94c1-5bfa0dd8522e + - c2b3530e-771f-4ea1-a2b3-e5919d76f304 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4706,7 +4706,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.5.0 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/d9cad26d-d6b7-426c-81db-5271f6008491 + uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df response: body: string: '' @@ -4722,11 +4722,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 12:55:01 GMT + - Tue, 14 Apr 2026 13:39:36 GMT Pragma: - no-cache RequestId: - - 682d9dc5-9826-4594-8d5f-c78dfc9bb8ca + - 533992cf-6785-4045-8503-e3be88e2f8ef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: From 307c2d4534a5f5f515d935bfe9a388900bb24078 Mon Sep 17 00:00:00 2001 From: Alon Yeshurun Date: Sun, 19 Apr 2026 10:24:21 +0000 Subject: [PATCH 09/11] tests --- .../core/fab_config/command_support.yaml | 5 +- tests/test_commands/conftest.py | 3 +- ...tem_types_success[DigitalTwinBuilder].yaml | 4743 ----------------- ...m_to_item_success[DigitalTwinBuilder].yaml | 2230 -------- ...supported_failure[DigitalTwinBuilder].yaml | 1454 ----- 5 files changed, 3 insertions(+), 8432 deletions(-) delete mode 100644 tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml delete mode 100644 tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DigitalTwinBuilder].yaml delete mode 100644 tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_unsupported_failure[DigitalTwinBuilder].yaml diff --git a/src/fabric_cli/core/fab_config/command_support.yaml b/src/fabric_cli/core/fab_config/command_support.yaml index 696a86503..b6016b55e 100644 --- a/src/fabric_cli/core/fab_config/command_support.yaml +++ b/src/fabric_cli/core/fab_config/command_support.yaml @@ -161,6 +161,7 @@ commands: # - kql_database - mirrored_database - cosmos_db_database + # - digital_twin_builder - reflex # - eventstream - mounted_data_factory @@ -172,8 +173,6 @@ commands: - sql_database - user_data_function - map - unsupported_items: - - digital_twin_builder cp: supported_elements: - workspace @@ -192,7 +191,7 @@ commands: # - kql_database - mirrored_database - cosmos_db_database - - digital_twin_builder + # - digital_twin_builder - reflex # - eventstream - mounted_data_factory diff --git a/tests/test_commands/conftest.py b/tests/test_commands/conftest.py index 102cc87cc..8acc93847 100644 --- a/tests/test_commands/conftest.py +++ b/tests/test_commands/conftest.py @@ -128,7 +128,6 @@ ItemType.EVENTHOUSE, ItemType.KQL_DATABASE, ItemType.EVENTSTREAM, - ItemType.DIGITAL_TWIN_BUILDER, ]) mv_item_to_item_type_mismatch_failure_params = pytest.mark.parametrize("source_type,target_type", [ @@ -312,7 +311,7 @@ ItemType.DATA_PIPELINE, ItemType.KQL_DASHBOARD, ItemType.KQL_QUERYSET, ItemType.MIRRORED_DATABASE, ItemType.NOTEBOOK, ItemType.REFLEX, ItemType.SPARK_JOB_DEFINITION, - ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ItemType.DIGITAL_TWIN_BUILDER, + ItemType.COSMOS_DB_DATABASE, ItemType.USER_DATA_FUNCTION, ]) assign_entity_item_not_supported_failure_parameters = pytest.mark.parametrize("entity_type,factory_key,path_template", [ diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml deleted file mode 100644 index 7d1c793f3..000000000 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DigitalTwinBuilder].yaml +++ /dev/null @@ -1,4743 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2136' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:36:44 GMT - Pragma: - - no-cache - RequestId: - - bd9c824b-62c4-4cdf-9c56-a5288bf1f950 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2136' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:36:44 GMT - Pragma: - - no-cache - RequestId: - - 702a0b3e-468a-457b-b43a-a83fcf6cf77b - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": - "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '424' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:36:48 GMT - Pragma: - - no-cache - RequestId: - - 3a510ff9-9d42-42d3-88b6-1faf0f3226ee - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '122' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '165' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:36:55 GMT - Location: - - https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5 - Pragma: - - no-cache - RequestId: - - fbb3fb2f-9ddc-4012-ab15-a9bd86e9a94b - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2172' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:36:56 GMT - Pragma: - - no-cache - RequestId: - - c0deaecf-8360-4bdd-b816-023562282b20 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2172' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:36:57 GMT - Pragma: - - no-cache - RequestId: - - 30088ff3-d3f1-4a00-b341-ec1341b7878a - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": - "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '427' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:01 GMT - Pragma: - - no-cache - RequestId: - - 1eb36be9-93c7-4fa4-ad30-8260bac4a2dc - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '122' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '167' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:08 GMT - Location: - - https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df - Pragma: - - no-cache - RequestId: - - d2282747-7d9f-4514-8532-d598930e2c78 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:08 GMT - Pragma: - - no-cache - RequestId: - - 9008bb78-5b7f-4f3a-a03c-c2513782f15f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:09 GMT - Pragma: - - no-cache - RequestId: - - 0e60453e-cb6f-4924-841e-75d5dd5d82f2 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:09 GMT - Pragma: - - no-cache - RequestId: - - f07bd17e-f29d-458b-8425-6fa2a8fa488a - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000003"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '68' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders - response: - body: - string: '{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": "fabcli000003", - "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '132' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:11 GMT - Location: - - https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders/0799bef2-c26b-4cb6-b4c7-be64c00e4238 - Pragma: - - no-cache - RequestId: - - cd6250c5-acf3-43e2-ad5f-e5718232c169 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:11 GMT - Pragma: - - no-cache - RequestId: - - b6845194-c0bc-4b1d-90ca-365e88f01fc1 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:12 GMT - Pragma: - - no-cache - RequestId: - - e9c0d262-187e-47a2-b50c-33f623ee0066 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:13 GMT - Pragma: - - no-cache - RequestId: - - 4fcac074-05f8-4f5f-81f6-1ed906eaf35c - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:14 GMT - Pragma: - - no-cache - RequestId: - - 55e94e9a-d6c1-49d3-988d-f5dca25cae50 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000004", "type": - "DigitalTwinBuilder", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '150' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/digitalTwinBuilders - response: - body: - string: 'null' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '24' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:17 GMT - ETag: - - '""' - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ff240e4a-69c0-44d1-8f8d-caf7ab6e846c - Pragma: - - no-cache - RequestId: - - b72ffb29-5467-4cfc-98a5-a83a0a6b921b - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-operation-id: - - ff240e4a-69c0-44d1-8f8d-caf7ab6e846c - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ff240e4a-69c0-44d1-8f8d-caf7ab6e846c - response: - body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T13:37:15.6727583", - "lastUpdatedTimeUtc": "2026-04-14T13:37:24.865826", "percentComplete": 100, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '131' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:37 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ff240e4a-69c0-44d1-8f8d-caf7ab6e846c/result - Pragma: - - no-cache - RequestId: - - 10931d4a-953d-48b5-ad34-c106e54c7aa7 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - ff240e4a-69c0-44d1-8f8d-caf7ab6e846c - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ff240e4a-69c0-44d1-8f8d-caf7ab6e846c/result - response: - body: - string: '{"id": "825fa4cb-1de9-4015-a8f1-992bae854839", "type": "DigitalTwinBuilder", - "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 14 Apr 2026 13:37:39 GMT - Pragma: - - no-cache - RequestId: - - 1d8aa99e-81c2-45ca-941d-6e112e579a19 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:39 GMT - Pragma: - - no-cache - RequestId: - - afdc609a-4f61-4280-8f22-a81ce1698fdc - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:40 GMT - Pragma: - - no-cache - RequestId: - - 61fc8690-4f4c-48dc-acab-ef6764b33e8d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:40 GMT - Pragma: - - no-cache - RequestId: - - 35fbf34d-4050-41db-a628-af70c9f85dc2 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:42 GMT - Pragma: - - no-cache - RequestId: - - 49bfe150-0f63-428d-9719-e28de1011eb0 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:43 GMT - Pragma: - - no-cache - RequestId: - - bd8ff687-424a-4775-ac36-029b332547f9 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:43 GMT - Pragma: - - no-cache - RequestId: - - 9313184b-3c60-4d38-a0df-79df26c08f70 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000003"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '68' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders - response: - body: - string: '{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": "fabcli000003", - "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '132' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:44 GMT - Location: - - https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders/e357ca89-950c-4b09-b468-564ae3f73464 - Pragma: - - no-cache - RequestId: - - 5f04fe72-73d9-4a0a-a47c-147197c3a3fe - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items - response: - body: - string: '{"value": [{"id": "f9b3bdcf-e9c4-42db-9655-8ca5e8c59fdc", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", - "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "825fa4cb-1de9-4015-a8f1-992bae854839", - "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": - "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "e961087d-b953-4916-81e4-0d09f6af97e8", - "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, - {"id": "7e422f5b-e6cc-4832-83e0-ec98a0b346f8", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", - "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '349' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:45 GMT - Pragma: - - no-cache - RequestId: - - cd1c1623-1314-4c9c-8d1e-73e2bc06554c - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:46 GMT - Pragma: - - no-cache - RequestId: - - cf8b94af-b714-46e9-8976-2feeb0371f1f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:47 GMT - Pragma: - - no-cache - RequestId: - - dd41993e-d594-45a8-abdd-2717a2e03c82 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:46 GMT - Pragma: - - no-cache - RequestId: - - 536a44dc-480d-4ea5-bd37-f139af290b71 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:47 GMT - Pragma: - - no-cache - RequestId: - - 7256d2bd-d0ef-4529-ae95-e57eef4e6dab - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:48 GMT - Pragma: - - no-cache - RequestId: - - 65382149-b096-4834-afcf-bc2be938c89f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items - response: - body: - string: '{"value": [{"id": "f9b3bdcf-e9c4-42db-9655-8ca5e8c59fdc", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", - "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "825fa4cb-1de9-4015-a8f1-992bae854839", - "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": - "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "e961087d-b953-4916-81e4-0d09f6af97e8", - "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, - {"id": "7e422f5b-e6cc-4832-83e0-ec98a0b346f8", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", - "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '349' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:49 GMT - Pragma: - - no-cache - RequestId: - - 06907ebc-e8e4-4a2f-8a6a-264c66fd4b6a - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:50 GMT - Pragma: - - no-cache - RequestId: - - f9f254b6-a06b-46da-94db-bfc314193f42 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:50 GMT - Pragma: - - no-cache - RequestId: - - e765fdd9-dde3-477f-a87f-930b381af3fb - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:51 GMT - Pragma: - - no-cache - RequestId: - - bb57bf96-1d5a-491e-a60b-fe28146a2ee3 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:52 GMT - Pragma: - - no-cache - RequestId: - - dbb60747-6d1e-4ecc-bff4-87a2cecedb32 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:52 GMT - Pragma: - - no-cache - RequestId: - - 363da519-4b49-4c2f-9f27-ac4e83e2964b - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:53 GMT - Pragma: - - no-cache - RequestId: - - f0bb7438-a4cb-4050-85b5-ff9a763db89b - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True - response: - body: - string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": - "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:54 GMT - Pragma: - - no-cache - RequestId: - - 3fbb6a0c-9148-428c-8ab7-6d970bed3a65 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:54 GMT - Pragma: - - no-cache - RequestId: - - 6cd17214-7596-4f59-9eb9-a8dae7434c58 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:54 GMT - Pragma: - - no-cache - RequestId: - - 9e0f2f1e-c703-438a-a42a-d9181281d6fe - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:55 GMT - Pragma: - - no-cache - RequestId: - - 3f6f5047-87e9-4e7a-80b7-3f35de602df7 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items/825fa4cb-1de9-4015-a8f1-992bae854839 - response: - body: - string: '{"id": "825fa4cb-1de9-4015-a8f1-992bae854839", "type": "DigitalTwinBuilder", - "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}' - headers: - Access-Control-Expose-Headers: - - RequestId,ETag - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '206' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:56 GMT - ETag: - - '""' - Pragma: - - no-cache - RequestId: - - f590ccbd-bd4f-4f98-ae94-f6a681e604e3 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items/825fa4cb-1de9-4015-a8f1-992bae854839/getDefinition - response: - body: - string: 'null' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '24' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:37:57 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b0f1b0d-ee42-4697-b428-038c17a31bb6 - Pragma: - - no-cache - RequestId: - - 9de16c1c-e895-4f36-8d34-eab346b701e7 - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-operation-id: - - 5b0f1b0d-ee42-4697-b428-038c17a31bb6 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b0f1b0d-ee42-4697-b428-038c17a31bb6 - response: - body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T13:37:57.84059", - "lastUpdatedTimeUtc": "2026-04-14T13:38:00.7365833", "percentComplete": 100, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '132' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:38:17 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b0f1b0d-ee42-4697-b428-038c17a31bb6/result - Pragma: - - no-cache - RequestId: - - b7deb843-b9f2-4090-b143-3853111e9bac - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - 5b0f1b0d-ee42-4697-b428-038c17a31bb6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5b0f1b0d-ee42-4697-b428-038c17a31bb6/result - response: - body: - string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiZTk2MTA4N2QtYjk1My00OTE2LTgxZTQtMGQwOWY2YWY5N2U4Ig0KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 14 Apr 2026 13:38:19 GMT - Pragma: - - no-cache - RequestId: - - dc28666e-f487-4d63-86fb-9226ae27277d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - status: - code: 200 - message: OK -- request: - body: '{"type": "DigitalTwinBuilder", "description": "Created by fab", "displayName": - "fabcli000004", "definition": {"parts": [{"path": "definition.json", "payload": - "ew0KICAiTGFrZWhvdXNlSWQiOiAiZTk2MTA4N2QtYjk1My00OTE2LTgxZTQtMGQwOWY2YWY5N2U4Ig0KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": "e357ca89-950c-4b09-b468-564ae3f73464"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '873' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items - response: - body: - string: 'null' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '24' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:38:22 GMT - ETag: - - '""' - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f - Pragma: - - no-cache - RequestId: - - 9d693e53-633b-4e49-b2d4-55af05df7229 - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-operation-id: - - 2e45df85-e182-4767-b327-fb067a8bac9f - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f - response: - body: - string: '{"status": "Running", "createdTimeUtc": "2026-04-14T13:38:20.7393992", - "lastUpdatedTimeUtc": "2026-04-14T13:38:20.7393992", "percentComplete": null, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '123' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:38:43 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f - Pragma: - - no-cache - RequestId: - - d7ac8719-4a28-46fc-934b-3be610b0cad2 - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - 2e45df85-e182-4767-b327-fb067a8bac9f - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f - response: - body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-14T13:38:20.7393992", - "lastUpdatedTimeUtc": "2026-04-14T13:38:51.4669303", "percentComplete": 100, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '132' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:04 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f/result - Pragma: - - no-cache - RequestId: - - 116fa5cd-d6fc-4f4a-9a41-975eb8ba8858 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - 2e45df85-e182-4767-b327-fb067a8bac9f - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2e45df85-e182-4767-b327-fb067a8bac9f/result - response: - body: - string: '{"id": "cc6b46e9-5836-47dc-af04-5c278d45b67e", "type": "DigitalTwinBuilder", - "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "folderId": "e357ca89-950c-4b09-b468-564ae3f73464"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 14 Apr 2026 13:39:05 GMT - Pragma: - - no-cache - RequestId: - - ab5c690c-360d-4b1b-b899-acbb802877d4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items - response: - body: - string: '{"value": [{"id": "f9b3bdcf-e9c4-42db-9655-8ca5e8c59fdc", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", - "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "825fa4cb-1de9-4015-a8f1-992bae854839", - "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": - "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "e961087d-b953-4916-81e4-0d09f6af97e8", - "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, - {"id": "7e422f5b-e6cc-4832-83e0-ec98a0b346f8", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", - "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '349' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:06 GMT - Pragma: - - no-cache - RequestId: - - 5b8646fc-44b5-4222-811d-3c1f47351ff1 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:07 GMT - Pragma: - - no-cache - RequestId: - - 6ca2a5ac-7fdd-4456-b90c-ae59a7c11268 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:08 GMT - Pragma: - - no-cache - RequestId: - - 330cdadc-b22d-4b36-bc4d-4df6640e77c5 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:08 GMT - Pragma: - - no-cache - RequestId: - - 0a9e4274-8a20-434c-826f-6f489a529f15 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:10 GMT - Pragma: - - no-cache - RequestId: - - a1ca1512-d06b-44d7-9a3b-3ba66ed3c7ad - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:10 GMT - Pragma: - - no-cache - RequestId: - - 4679a3c8-93e1-4560-9ed7-754518aa0c19 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:10 GMT - Pragma: - - no-cache - RequestId: - - a95e6604-a3a1-4d88-b621-8a11a6e36b4e - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items - response: - body: - string: '{"value": [{"id": "cc6b46e9-5836-47dc-af04-5c278d45b67e", "type": "DigitalTwinBuilder", - "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "folderId": "e357ca89-950c-4b09-b468-564ae3f73464"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '216' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:12 GMT - Pragma: - - no-cache - RequestId: - - aa286da5-a720-4963-a7e6-749fe1ae7ace - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True - response: - body: - string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": - "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:12 GMT - Pragma: - - no-cache - RequestId: - - cb683666-1a67-4024-9f89-8568896f25b4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True - response: - body: - string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": - "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:14 GMT - Pragma: - - no-cache - RequestId: - - f40405be-89ad-4f0e-b438-da1fbf0201da - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:14 GMT - Pragma: - - no-cache - RequestId: - - 85e2e36d-0ffa-4035-9152-5995cd267a95 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True - response: - body: - string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": - "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:15 GMT - Pragma: - - no-cache - RequestId: - - 93cc3bb4-a06f-42f5-ba83-997c77158ef4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items - response: - body: - string: '{"value": [{"id": "cc6b46e9-5836-47dc-af04-5c278d45b67e", "type": "DigitalTwinBuilder", - "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "folderId": "e357ca89-950c-4b09-b468-564ae3f73464"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '216' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:15 GMT - Pragma: - - no-cache - RequestId: - - 3a7cec60-730b-4ab7-a4a1-f2a13ee25caf - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True - response: - body: - string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": - "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:16 GMT - Pragma: - - no-cache - RequestId: - - e1f1b1d2-7007-4f02-93b2-a78ac3a8e3db - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True - response: - body: - string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": - "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:17 GMT - Pragma: - - no-cache - RequestId: - - 0d07edc1-7940-4ad6-bf88-10f29e5892d4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:18 GMT - Pragma: - - no-cache - RequestId: - - 6ddf75ad-c047-4c07-a6db-d08d2a04abad - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True - response: - body: - string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": - "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:19 GMT - Pragma: - - no-cache - RequestId: - - 812d6823-87e3-4ad3-aca0-43ae13a2ba00 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items - response: - body: - string: '{"value": [{"id": "cc6b46e9-5836-47dc-af04-5c278d45b67e", "type": "DigitalTwinBuilder", - "displayName": "fabcli000004", "description": "Created by fab", "workspaceId": - "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "folderId": "e357ca89-950c-4b09-b468-564ae3f73464"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '216' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:20 GMT - Pragma: - - no-cache - RequestId: - - d100cbdf-9f58-4318-8db3-c043f04ebca9 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True - response: - body: - string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": - "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:20 GMT - Pragma: - - no-cache - RequestId: - - 56339b6b-8e78-4e64-9096-dd96c810ef14 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items/cc6b46e9-5836-47dc-af04-5c278d45b67e - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 14 Apr 2026 13:39:21 GMT - Pragma: - - no-cache - RequestId: - - 8b55c79e-8045-4963-b323-618508153636 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:22 GMT - Pragma: - - no-cache - RequestId: - - 3ce0659e-e043-4cad-b49d-52f6dca8ef8c - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders?recursive=True - response: - body: - string: '{"value": [{"id": "e357ca89-950c-4b09-b468-564ae3f73464", "displayName": - "fabcli000003", "workspaceId": "0c4bbee3-6e08-4369-9995-10c35e8fd0df"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:23 GMT - Pragma: - - no-cache - RequestId: - - 928681d3-511c-487b-9df5-0e229aa98a67 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/folders/e357ca89-950c-4b09-b468-564ae3f73464 - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 14 Apr 2026 13:39:24 GMT - Pragma: - - no-cache - RequestId: - - 74de4020-002c-4a06-8fea-ce1c7442f256 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:25 GMT - Pragma: - - no-cache - RequestId: - - 1b59e774-5d23-4de0-b153-47b5a08ca966 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:26 GMT - Pragma: - - no-cache - RequestId: - - 710a6257-4da0-4895-8086-1e8fb190c818 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items - response: - body: - string: '{"value": [{"id": "f9b3bdcf-e9c4-42db-9655-8ca5e8c59fdc", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", - "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "825fa4cb-1de9-4015-a8f1-992bae854839", - "type": "DigitalTwinBuilder", "displayName": "fabcli000004", "description": - "Created by fab", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": - "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "e961087d-b953-4916-81e4-0d09f6af97e8", - "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, - {"id": "7e422f5b-e6cc-4832-83e0-ec98a0b346f8", "type": "DigitalTwinBuilderFlow", - "displayName": "fabcli000004OnDemand", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", - "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '349' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:26 GMT - Pragma: - - no-cache - RequestId: - - 8ec8f5b7-87ff-4286-a10c-deeefa228a22 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:27 GMT - Pragma: - - no-cache - RequestId: - - 1b8230ac-86b1-4be6-847e-31dec3f51436 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:28 GMT - Pragma: - - no-cache - RequestId: - - 55d8b193-846d-4c16-8cbf-217c9fbd6a77 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:29 GMT - Pragma: - - no-cache - RequestId: - - a505f168-7038-48de-9b36-c5e27070849b - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:29 GMT - Pragma: - - no-cache - RequestId: - - 167c11fe-0855-43bb-b1c1-e83da1eaa923 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items/825fa4cb-1de9-4015-a8f1-992bae854839 - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 14 Apr 2026 13:39:30 GMT - Pragma: - - no-cache - RequestId: - - bc2b25d2-5d91-4de9-b28a-90bd6a6e8673 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:31 GMT - Pragma: - - no-cache - RequestId: - - cca7c2c5-bf4e-40aa-8c32-0d3ef2234d04 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:31 GMT - Pragma: - - no-cache - RequestId: - - b4e62723-47ba-4fc6-aa06-b3f163eddeb3 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders/0799bef2-c26b-4cb6-b4c7-be64c00e4238 - response: - body: - string: '{"requestId": "ae833f77-831a-43f9-8b70-01e9a8ada547", "errorCode": - "FolderNotEmpty", "message": "The requested folder was not empty.", "relatedResource": - {"resourceId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "resourceType": "Folder"}}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:31 GMT - Pragma: - - no-cache - RequestId: - - ae833f77-831a-43f9-8b70-01e9a8ada547 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - FolderNotEmpty - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2209' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:32 GMT - Pragma: - - no-cache - RequestId: - - ab8944d4-4ff7-4f11-bcab-6531160384e9 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/items - response: - body: - string: '{"value": [{"id": "f9b3bdcf-e9c4-42db-9655-8ca5e8c59fdc", "type": "SQLEndpoint", - "displayName": "fabcli000004dtdm", "description": "", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", - "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}, {"id": "e961087d-b953-4916-81e4-0d09f6af97e8", - "type": "Lakehouse", "displayName": "fabcli000004dtdm", "description": "", - "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5", "folderId": "0799bef2-c26b-4cb6-b4c7-be64c00e4238"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '246' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:33 GMT - Pragma: - - no-cache - RequestId: - - 3a1debcb-0eba-4ed4-acde-d479eb78e6e6 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:33 GMT - Pragma: - - no-cache - RequestId: - - 2d394be4-ad5f-47c2-bc33-0e3627f113e3 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "0799bef2-c26b-4cb6-b4c7-be64c00e4238", "displayName": - "fabcli000003", "workspaceId": "f24aa76c-cdd4-496b-b275-5ba416f0f0d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '143' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:33 GMT - Pragma: - - no-cache - RequestId: - - b2e2d777-7e45-4dcb-bb18-d3af1db8aaf4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/f24aa76c-cdd4-496b-b275-5ba416f0f0d5 - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 14 Apr 2026 13:39:34 GMT - Pragma: - - no-cache - RequestId: - - 194ba7ab-9778-496b-ba79-d866fec2635a - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "0c4bbee3-6e08-4369-9995-10c35e8fd0df", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2173' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:35 GMT - Pragma: - - no-cache - RequestId: - - 66301136-f155-4a20-b2db-e794742e9709 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 14 Apr 2026 13:39:35 GMT - Pragma: - - no-cache - RequestId: - - c2b3530e-771f-4ea1-a2b3-e5919d76f304 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/0c4bbee3-6e08-4369-9995-10c35e8fd0df - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 14 Apr 2026 13:39:36 GMT - Pragma: - - no-cache - RequestId: - - 533992cf-6785-4045-8503-e3be88e2f8ef - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DigitalTwinBuilder].yaml deleted file mode 100644 index 3c0ffa704..000000000 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DigitalTwinBuilder].yaml +++ /dev/null @@ -1,2230 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2051' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:00:49 GMT - Pragma: - - no-cache - RequestId: - - bcd7c3f0-b0d3-4369-8253-645afad4ddc6 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2051' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:00:50 GMT - Pragma: - - no-cache - RequestId: - - 71b47c1f-ad6f-4000-a562-9adb0f79dd81 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": - "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '425' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:00:55 GMT - Pragma: - - no-cache - RequestId: - - 1b415947-ccb0-4401-982c-31f7a4e5f93b - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '122' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '167' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:02 GMT - Location: - - https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0 - Pragma: - - no-cache - RequestId: - - 437ed440-9e56-4bed-aef7-33c586d84e79 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2089' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:05 GMT - Pragma: - - no-cache - RequestId: - - 6bccfe20-4823-454d-9b78-727e31f3c977 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2089' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:06 GMT - Pragma: - - no-cache - RequestId: - - eabbc724-c129-426b-92e1-fcad19b9db5e - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": - "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '425' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:09 GMT - Pragma: - - no-cache - RequestId: - - 3406e121-f96a-4982-bdb3-45b66a697f28 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '122' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '165' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:17 GMT - Location: - - https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5 - Pragma: - - no-cache - RequestId: - - ff80a942-72eb-43ee-9ba9-e28f2d1e8374 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2126' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:19 GMT - Pragma: - - no-cache - RequestId: - - 806f15eb-717d-432f-86ce-e1ed48b92b93 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:20 GMT - Pragma: - - no-cache - RequestId: - - 1076d609-933e-450f-ba72-384016bb1c95 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:21 GMT - Pragma: - - no-cache - RequestId: - - 95e03a07-bbb5-48aa-bfd9-78400fbc8882 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000003", "type": - "DigitalTwinBuilder", "folderId": null}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '116' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/digitalTwinBuilders - response: - body: - string: 'null' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '24' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:23 GMT - ETag: - - '""' - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcccddfe-ee20-4706-97b9-be95832a8c78 - Pragma: - - no-cache - RequestId: - - 2babdacc-9ebd-4268-83b2-57f119e70f03 - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-operation-id: - - bcccddfe-ee20-4706-97b9-be95832a8c78 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcccddfe-ee20-4706-97b9-be95832a8c78 - response: - body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:01:22.6831736", - "lastUpdatedTimeUtc": "2026-03-31T09:01:31.3994048", "percentComplete": 100, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '132' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:44 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcccddfe-ee20-4706-97b9-be95832a8c78/result - Pragma: - - no-cache - RequestId: - - e5355327-6fb2-4a42-b30a-e79b2ef2b5a5 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - bcccddfe-ee20-4706-97b9-be95832a8c78 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bcccddfe-ee20-4706-97b9-be95832a8c78/result - response: - body: - string: '{"id": "a5e04a92-7059-469f-b81a-de86ec9f4365", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "ae2bc9fa-31dc-458f-8788-7370682840e0"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 31 Mar 2026 09:01:45 GMT - Pragma: - - no-cache - RequestId: - - ab73442d-38bb-42c2-97c0-8476dbabee2b - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2126' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:47 GMT - Pragma: - - no-cache - RequestId: - - 836c4629-f4b1-4ba5-af53-fa172a7a176d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items - response: - body: - string: '{"value": [{"id": "66c06657-e6f7-40d5-b3ac-c766f0ee23de", "type": "SQLEndpoint", - "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, - {"id": "a5e04a92-7059-469f-b81a-de86ec9f4365", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "9bcd9ca8-b488-4e02-a4e2-6b2767d09840", - "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "4f2c2de9-8e83-4445-9506-d91f47d9f3ca", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '318' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:48 GMT - Pragma: - - no-cache - RequestId: - - 3718092d-3c4d-46c3-b6cf-5d84f511dd3d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2126' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:48 GMT - Pragma: - - no-cache - RequestId: - - d7b01c95-9adb-46d4-9403-dc9265728ddd - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:50 GMT - Pragma: - - no-cache - RequestId: - - 83970b70-6b69-4d2a-adfd-95fb6bc469c1 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:50 GMT - Pragma: - - no-cache - RequestId: - - 14fd346b-a1f1-4216-9266-e442f8f575ed - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:50 GMT - Pragma: - - no-cache - RequestId: - - 26646b30-2428-4647-93a7-6612ffba5b57 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items/a5e04a92-7059-469f-b81a-de86ec9f4365 - response: - body: - string: '{"id": "a5e04a92-7059-469f-b81a-de86ec9f4365", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "ae2bc9fa-31dc-458f-8788-7370682840e0"}' - headers: - Access-Control-Expose-Headers: - - RequestId,ETag - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '176' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:51 GMT - ETag: - - '""' - Pragma: - - no-cache - RequestId: - - 939feade-16ea-4c58-8cb7-1d5fde7d0229 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items/a5e04a92-7059-469f-b81a-de86ec9f4365/getDefinition - response: - body: - string: 'null' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '24' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:01:52 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66bc276c-b700-4109-b0d0-2992fbb88da9 - Pragma: - - no-cache - RequestId: - - b3f93f11-cc44-4fde-87db-8f5de25666ba - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-operation-id: - - 66bc276c-b700-4109-b0d0-2992fbb88da9 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66bc276c-b700-4109-b0d0-2992fbb88da9 - response: - body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:01:52.7410643", - "lastUpdatedTimeUtc": "2026-03-31T09:01:53.6421645", "percentComplete": 100, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '131' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:02:13 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66bc276c-b700-4109-b0d0-2992fbb88da9/result - Pragma: - - no-cache - RequestId: - - 9d74e047-c720-4027-9003-68279a8ff9e0 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - 66bc276c-b700-4109-b0d0-2992fbb88da9 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66bc276c-b700-4109-b0d0-2992fbb88da9/result - response: - body: - string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiTGFrZWhvdXNlSWQiOiAiOWJjZDljYTgtYjQ4OC00ZTAyLWE0ZTItNmIyNzY3ZDA5ODQwIg0KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 31 Mar 2026 09:02:14 GMT - Pragma: - - no-cache - RequestId: - - 626b0924-7db5-49c8-aee0-3363383f65f4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - status: - code: 200 - message: OK -- request: - body: '{"type": "DigitalTwinBuilder", "description": "Created by fab", "displayName": - "fabcli000003", "definition": {"parts": [{"path": "definition.json", "payload": - "ew0KICAiTGFrZWhvdXNlSWQiOiAiOWJjZDljYTgtYjQ4OC00ZTAyLWE0ZTItNmIyNzY3ZDA5ODQwIg0KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRpZ2l0YWxUd2luQnVpbGRlciIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": null}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '839' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items - response: - body: - string: 'null' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '24' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:02:17 GMT - ETag: - - '""' - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69 - Pragma: - - no-cache - RequestId: - - 04506ceb-aa7c-4e26-b33a-36ee79673be9 - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-operation-id: - - 2b08dd03-ede8-4313-b377-f76f58571e69 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69 - response: - body: - string: '{"status": "Running", "createdTimeUtc": "2026-03-31T09:02:15.9754139", - "lastUpdatedTimeUtc": "2026-03-31T09:02:15.9754139", "percentComplete": null, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '123' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:02:38 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69 - Pragma: - - no-cache - RequestId: - - fb7d0483-3a41-4e3f-8b8d-897e3ece3a81 - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - 2b08dd03-ede8-4313-b377-f76f58571e69 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69 - response: - body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:02:15.9754139", - "lastUpdatedTimeUtc": "2026-03-31T09:02:47.8502445", "percentComplete": 100, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '132' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:02:59 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69/result - Pragma: - - no-cache - RequestId: - - 20c766fe-0faa-4d3d-9c2b-a0ed22c16ead - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - 2b08dd03-ede8-4313-b377-f76f58571e69 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b08dd03-ede8-4313-b377-f76f58571e69/result - response: - body: - string: '{"id": "5474bd84-605d-4b45-8286-db7dc6f00d7d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "097595cc-e610-4c4b-91af-95d22a0a56d5"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 31 Mar 2026 09:03:01 GMT - Pragma: - - no-cache - RequestId: - - 32db9a71-6d22-4a18-b5da-f9779bd2cb9e - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2126' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:03 GMT - Pragma: - - no-cache - RequestId: - - e4cee58e-9901-4a97-8206-1e4f6574ada8 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items - response: - body: - string: '{"value": [{"id": "66c06657-e6f7-40d5-b3ac-c766f0ee23de", "type": "SQLEndpoint", - "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, - {"id": "a5e04a92-7059-469f-b81a-de86ec9f4365", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "9bcd9ca8-b488-4e02-a4e2-6b2767d09840", - "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "4f2c2de9-8e83-4445-9506-d91f47d9f3ca", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '318' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:04 GMT - Pragma: - - no-cache - RequestId: - - 6c242b23-b111-4905-a57a-18deb9c97dc4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/folders?recursive=True - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:05 GMT - Pragma: - - no-cache - RequestId: - - d98d199a-3814-4c70-b370-a4b0d2ca0087 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2126' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:05 GMT - Pragma: - - no-cache - RequestId: - - 81390efb-c8b2-44cb-84a9-5224c64a1d0e - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items - response: - body: - string: '{"value": [{"id": "5474bd84-605d-4b45-8286-db7dc6f00d7d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "097595cc-e610-4c4b-91af-95d22a0a56d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '187' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:07 GMT - Pragma: - - no-cache - RequestId: - - 2a2476b0-567c-493d-a5ff-723a284e9a0d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/folders?recursive=True - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:07 GMT - Pragma: - - no-cache - RequestId: - - 3ea9fc3e-2fb6-477d-a28b-6beb33ec5002 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2126' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:08 GMT - Pragma: - - no-cache - RequestId: - - b2aa82ab-d1df-4d6d-b816-658a52542093 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items - response: - body: - string: '{"value": [{"id": "66c06657-e6f7-40d5-b3ac-c766f0ee23de", "type": "SQLEndpoint", - "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, - {"id": "a5e04a92-7059-469f-b81a-de86ec9f4365", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "9bcd9ca8-b488-4e02-a4e2-6b2767d09840", - "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, {"id": "4f2c2de9-8e83-4445-9506-d91f47d9f3ca", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '318' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:09 GMT - Pragma: - - no-cache - RequestId: - - 6bb9139d-b137-4acd-95bc-1ab68fc6358a - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items/a5e04a92-7059-469f-b81a-de86ec9f4365 - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 31 Mar 2026 09:03:10 GMT - Pragma: - - no-cache - RequestId: - - 7bf6fed2-7a73-4c59-bd6f-8bc66b213703 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ae2bc9fa-31dc-458f-8788-7370682840e0", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2126' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:11 GMT - Pragma: - - no-cache - RequestId: - - 7aebcd8a-56d0-48e5-8d2b-7c43638c4d5d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0/items - response: - body: - string: '{"value": [{"id": "66c06657-e6f7-40d5-b3ac-c766f0ee23de", "type": "SQLEndpoint", - "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}, - {"id": "9bcd9ca8-b488-4e02-a4e2-6b2767d09840", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "ae2bc9fa-31dc-458f-8788-7370682840e0"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '217' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:12 GMT - Pragma: - - no-cache - RequestId: - - 43c32295-c099-41c9-8f3f-30e648e52036 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/ae2bc9fa-31dc-458f-8788-7370682840e0 - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 31 Mar 2026 09:03:13 GMT - Pragma: - - no-cache - RequestId: - - d5aa0bc4-11ed-4a97-b089-83ea9ef5e043 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "94e5a45a-1398-4d65-a653-a68d2ca73e45", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "097595cc-e610-4c4b-91af-95d22a0a56d5", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2088' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:13 GMT - Pragma: - - no-cache - RequestId: - - 6f8d46ea-114a-4c05-a09c-df28bc0fbfde - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5/items - response: - body: - string: '{"value": [{"id": "5474bd84-605d-4b45-8286-db7dc6f00d7d", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "097595cc-e610-4c4b-91af-95d22a0a56d5"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '187' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 09:03:14 GMT - Pragma: - - no-cache - RequestId: - - 938b2ffc-e42d-4a72-8214-6bc1b5acee34 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/097595cc-e610-4c4b-91af-95d22a0a56d5 - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 31 Mar 2026 09:03:15 GMT - Pragma: - - no-cache - RequestId: - - b192bd23-71ba-4fb5-baa1-658895ed11cb - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_unsupported_failure[DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_unsupported_failure[DigitalTwinBuilder].yaml deleted file mode 100644 index c44477408..000000000 --- a/tests/test_commands/recordings/test_commands/test_mv/test_mv_item_to_item_unsupported_failure[DigitalTwinBuilder].yaml +++ /dev/null @@ -1,1454 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2048' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:05:59 GMT - Pragma: - - no-cache - RequestId: - - ea0a1939-9d5b-4143-a4df-2c9135b319cc - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2048' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:03 GMT - Pragma: - - no-cache - RequestId: - - e3132626-4a6d-47b7-a4be-561c997527d8 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": - "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '427' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:06 GMT - Pragma: - - no-cache - RequestId: - - 6f315978-4ffd-4a7a-a44e-4ec4a48b90de - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '122' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '167' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:13 GMT - Location: - - https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db - Pragma: - - no-cache - RequestId: - - 60572045-1253-4f25-902b-479aae5b492f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2085' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:13 GMT - Pragma: - - no-cache - RequestId: - - f755809d-3bfb-4b61-ad13-f76b6c069dec - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2085' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:14 GMT - Pragma: - - no-cache - RequestId: - - 9a055c08-f2e1-4c83-a55a-aa5ee55df3f3 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": - "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '425' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:17 GMT - Pragma: - - no-cache - RequestId: - - dad0e069-0c7e-48e2-a4b7-1018af98f3f8 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '122' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '164' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:27 GMT - Location: - - https://api.fabric.microsoft.com/v1/workspaces/a5d9df2d-25ca-4457-8007-5c690d851940 - Pragma: - - no-cache - RequestId: - - dd75e49e-00a1-4d3d-890a-1b62bca1b350 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2119' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:27 GMT - Pragma: - - no-cache - RequestId: - - efea2248-daad-4570-abaa-714e5497227b - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:29 GMT - Pragma: - - no-cache - RequestId: - - a84c6a7c-6788-4eaa-9306-e951dea43668 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:29 GMT - Pragma: - - no-cache - RequestId: - - 73e65636-ae81-486d-b141-24e1c3f82a29 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"description": "Created by fab", "displayName": "fabcli000003", "type": - "DigitalTwinBuilder", "folderId": null}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '116' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/digitalTwinBuilders - response: - body: - string: 'null' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,Retry-After,ETag,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '24' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:33 GMT - ETag: - - '""' - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10 - Pragma: - - no-cache - RequestId: - - af7a2b17-0756-47e7-9da4-278b0811af58 - Retry-After: - - '20' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-operation-id: - - f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10 - response: - body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T13:06:30.332662", - "lastUpdatedTimeUtc": "2026-03-31T13:06:42.2909341", "percentComplete": 100, - "error": null}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location,x-ms-operation-id - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '130' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:54 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10/result - Pragma: - - no-cache - RequestId: - - 226aab26-0731-402e-8365-c171cfbb1264 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f59dac0a-2c0f-4ec0-aebd-1907c2bc7f10/result - response: - body: - string: '{"id": "f9668212-e5bf-4457-afd2-838163f374cb", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "3129b19a-b443-49ce-a2ab-7708efd1f3db"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 31 Mar 2026 13:06:56 GMT - Pragma: - - no-cache - RequestId: - - 2088aebf-e757-48d6-b10e-b1bca7f2bce4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2119' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:58 GMT - Pragma: - - no-cache - RequestId: - - 72ef76e3-1a0a-40fb-a229-a416092b286e - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items - response: - body: - string: '{"value": [{"id": "95dadc2a-a889-43f0-b45a-c8433aae290f", "type": "SQLEndpoint", - "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, - {"id": "f9668212-e5bf-4457-afd2-838163f374cb", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, {"id": "79bcbbbb-cf05-460f-913b-e6a2967defbb", - "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, {"id": "f25c90a3-c19b-45c6-9208-6da1126c0a65", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '315' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:06:59 GMT - Pragma: - - no-cache - RequestId: - - 15ebfe6c-341b-49bf-bc11-39d91d3fe754 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2119' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:07:00 GMT - Pragma: - - no-cache - RequestId: - - f43bbe83-12ad-4563-bf69-3041932fcace - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a5d9df2d-25ca-4457-8007-5c690d851940/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:07:01 GMT - Pragma: - - no-cache - RequestId: - - 5e5c0175-9797-45f7-b3e8-132520c7f4bc - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a5d9df2d-25ca-4457-8007-5c690d851940/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:07:01 GMT - Pragma: - - no-cache - RequestId: - - dfdcff46-b758-436b-9538-7deed72c7651 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2119' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:07:03 GMT - Pragma: - - no-cache - RequestId: - - d728ff77-93ac-427c-b8b7-738d75aced01 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items - response: - body: - string: '{"value": [{"id": "95dadc2a-a889-43f0-b45a-c8433aae290f", "type": "SQLEndpoint", - "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, - {"id": "f9668212-e5bf-4457-afd2-838163f374cb", "type": "DigitalTwinBuilder", - "displayName": "fabcli000003", "description": "Created by fab", "workspaceId": - "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, {"id": "79bcbbbb-cf05-460f-913b-e6a2967defbb", - "type": "Lakehouse", "displayName": "fabcli000003dtdm", "description": "", - "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, {"id": "f25c90a3-c19b-45c6-9208-6da1126c0a65", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000003OnDemand", "description": - "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '315' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:07:04 GMT - Pragma: - - no-cache - RequestId: - - 7b10b5f9-2ae7-49ad-b313-35fadf09fb5e - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items/f9668212-e5bf-4457-afd2-838163f374cb - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 31 Mar 2026 13:07:05 GMT - Pragma: - - no-cache - RequestId: - - db658a55-85c9-493a-a05c-e7cb5075108f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3129b19a-b443-49ce-a2ab-7708efd1f3db", "displayName": "fabcli000001", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2119' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:07:05 GMT - Pragma: - - no-cache - RequestId: - - 8b3b422f-8f86-4151-be63-97ea41e4daf1 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db/items - response: - body: - string: '{"value": [{"id": "95dadc2a-a889-43f0-b45a-c8433aae290f", "type": "SQLEndpoint", - "displayName": "fabcli000003dtdm", "description": "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}, - {"id": "79bcbbbb-cf05-460f-913b-e6a2967defbb", "type": "Lakehouse", "displayName": - "fabcli000003dtdm", "description": "", "workspaceId": "3129b19a-b443-49ce-a2ab-7708efd1f3db"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '216' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:07:05 GMT - Pragma: - - no-cache - RequestId: - - de6f69e6-80dd-4487-beaa-b59fae771b00 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/3129b19a-b443-49ce-a2ab-7708efd1f3db - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 31 Mar 2026 13:07:07 GMT - Pragma: - - no-cache - RequestId: - - 53b22734-cdc9-4e56-8e00-1aafeee696e3 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "f973da1e-1ce0-42d2-b2fa-e34df76a89d9", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a5d9df2d-25ca-4457-8007-5c690d851940", "displayName": "fabcli000002", - "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '2084' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:07:07 GMT - Pragma: - - no-cache - RequestId: - - b86845ac-f26e-4c57-ac34-63c8c7a11670 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a5d9df2d-25ca-4457-8007-5c690d851940/items - response: - body: - string: '{"value": []}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '32' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 31 Mar 2026 13:07:08 GMT - Pragma: - - no-cache - RequestId: - - 5bc91b78-9ff5-42bb-96bc-496ddf2c4813 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.5.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/a5d9df2d-25ca-4457-8007-5c690d851940 - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 31 Mar 2026 13:07:08 GMT - Pragma: - - no-cache - RequestId: - - 04cd28ca-e19b-454c-9f5b-5267e4538cab - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -version: 1 From fc163ff43f795e58d4868b66f3b22a22a3553bbf Mon Sep 17 00:00:00 2001 From: Alon Yeshurun Date: Sun, 19 Apr 2026 10:47:14 +0000 Subject: [PATCH 10/11] revert --- .../test_commands/test_cp/class_setup.yaml | 62 +++++++++---------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml index ce148a3ce..b0b535129 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2096' + - '2771' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 13:36:29 GMT + - Fri, 06 Feb 2026 07:06:19 GMT Pragma: - no-cache RequestId: - - 8ad427f0-8710-40e1-89d8-45e2d38d9a2a + - 3aab06b8-f3d5-4db2-a228-3f01423767b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2096' + - '2771' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 13:36:30 GMT + - Fri, 06 Feb 2026 07:06:20 GMT Pragma: - no-cache RequestId: - - 61486e8e-e16c-4d39-90d7-232c0c4cca16 + - 3285752a-c344-4be1-b840-f41c57a840e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -129,11 +129,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 13:36:35 GMT + - Fri, 06 Feb 2026 07:06:26 GMT Pragma: - no-cache RequestId: - - 1ea8f697-c4c6-4a8c-8366-e746a8e3d6a1 + - fc025862-a234-452f-b8d0-8bda23984394 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -177,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '189' + - '186' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 13:36:42 GMT + - Fri, 06 Feb 2026 07:06:33 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/c223b4ec-0be3-4bec-ac55-c75a2c335fb3 + - https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897 Pragma: - no-cache RequestId: - - 448f209f-afe8-4517-abdf-78fa509d11d5 + - 7a758e47-2adf-48da-aebf-0043feb0485d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.3.1 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "c223b4ec-0be3-4bec-ac55-c75a2c335fb3", + "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2136' + - '2805' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 13:39:37 GMT + - Fri, 06 Feb 2026 08:40:01 GMT Pragma: - no-cache RequestId: - - b8e7f83b-6a31-4d86-aa90-aa1f8a2316fc + - d99b7bb5-50ec-42bc-bef9-0a1ed567c414 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,9 +264,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.3.1 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c223b4ec-0be3-4bec-ac55-c75a2c335fb3/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items response: body: string: '{"value": []}' @@ -282,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 14 Apr 2026 13:39:37 GMT + - Fri, 06 Feb 2026 08:40:01 GMT Pragma: - no-cache RequestId: - - 9ef07499-bc88-442c-b67a-b50ef3600314 + - a09eadfa-11df-42d9-9aec-7e811e8c6a23 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +314,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.3.1 (cp; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/c223b4ec-0be3-4bec-ac55-c75a2c335fb3 + uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897 response: body: string: '' @@ -332,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 14 Apr 2026 13:39:38 GMT + - Fri, 06 Feb 2026 08:40:02 GMT Pragma: - no-cache RequestId: - - 6bc72256-8eaa-464f-9f2e-d1baf685ea27 + - 3f0b7838-1987-449f-92f8-3bdab6296f6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -350,4 +350,4 @@ interactions: status: code: 200 message: OK -version: 1 +version: 1 \ No newline at end of file From f912fdcb42b0b0dcd3595b5af21ffa0c56bae238 Mon Sep 17 00:00:00 2001 From: Alon Yeshurun Date: Sun, 19 Apr 2026 11:17:33 +0000 Subject: [PATCH 11/11] change --- .changes/unreleased/new-items-20260331-075150.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changes/unreleased/new-items-20260331-075150.yaml b/.changes/unreleased/new-items-20260331-075150.yaml index 9480ef863..9c8513788 100644 --- a/.changes/unreleased/new-items-20260331-075150.yaml +++ b/.changes/unreleased/new-items-20260331-075150.yaml @@ -1,5 +1,5 @@ kind: new-items -body: Add export, import and cp commands support for DigitalTwinBuilder item type +body: Add export and import commands support for DigitalTwinBuilder item type time: 2026-03-31T07:51:50.000000000Z custom: Author: ayeshurun